:root {
    --color-sand: #e8dcc4;
    --color-sand-light: #f5f0e6;
    --color-ocean: #0a5e6e;
    --color-ocean-deep: #063d47;
    --color-ocean-light: #1a8fa3;
    --color-coral: #d4735e;
    --color-coral-dark: #b85a47;
    --color-palm: #2d5a3d;
    --color-palm-light: #4a7c5c;
    --color-sunset: #f4a259;
    --color-text: #2c3e50;
    --color-text-light: #5a6c7d;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Outfit', -apple-system, sans-serif;
    --shadow-soft: 0 4px 20px rgba(10, 94, 110, 0.1);
    --shadow-medium: 0 8px 40px rgba(10, 94, 110, 0.15);
    --shadow-strong: 0 12px 60px rgba(10, 94, 110, 0.2);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-text);
    background: linear-gradient(135deg, var(--color-sand-light) 0%, var(--color-sand) 50%, #ddd5c3 100%);
    min-height: 100vh;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    transition: var(--transition);
}

.header-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 61, 71, 0.95) 0%, rgba(6, 61, 71, 0.8) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    transition: var(--transition);
}

.site-header.scrolled .header-bg {
    opacity: 1;
}

.header-content {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: #fff;
}

.logo-icon {
    width: 48px;
    height: 48px;
    color: var(--color-sunset);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo-text span {
    display: block;
    font-size: 0.9rem;
    font-weight: 400;
    font-style: italic;
    opacity: 0.9;
    margin-top: -4px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.main-nav a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-sunset);
    transition: var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
    color: #fff;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.burger-menu span {
    display: block;
    width: 28px;
    height: 2px;
    background: #fff;
    transition: var(--transition);
    transform-origin: center;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: linear-gradient(180deg, var(--color-ocean-deep) 0%, var(--color-ocean) 100%);
    z-index: 999;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-content {
    padding: 100px 2rem 2rem;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.mobile-nav ul {
    list-style: none;
}

.mobile-nav li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav a {
    display: block;
    padding: 1.25rem 0;
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    transition: var(--transition);
}

.mobile-nav a:hover {
    color: var(--color-sunset);
    padding-left: 1rem;
}

.mobile-nav-footer {
    margin-top: auto;
    padding-top: 2rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

main {
    padding-top: 80px;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-ocean-deep) 0%, var(--color-ocean) 30%, var(--color-ocean-light) 100%);
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.12)"/><circle cx="90" cy="90" r="0.5" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 200px 200px;
    animation: floatBg 30s linear infinite;
}

@keyframes floatBg {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-200px, -200px); }
}

.hero-image {
    position: absolute;
    inset: 0;
    opacity: 0.3;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 61, 71, 0.4) 0%, rgba(6, 61, 71, 0.7) 100%);
}

.hero-content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    color: #fff;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--color-sunset);
    border-radius: 50%;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    max-width: 800px;
}

.hero h1 span {
    display: block;
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 400;
    font-size: 0.6em;
    color: var(--color-sunset);
    margin-top: 0.25rem;
}

.hero-description {
    font-size: 1.2rem;
    max-width: 600px;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--color-sunset);
    color: #fff;
}

.btn-primary:hover {
    background: #e5a85f;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(244, 162, 89, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.section {
    padding: 6rem 2rem;
}

.section-alt {
    background: linear-gradient(180deg, rgba(10, 94, 110, 0.03) 0%, rgba(10, 94, 110, 0.08) 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-ocean);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-ocean-deep);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-light);
}

.beach-grid {
    display: grid;
    gap: 2rem;
}

.beach-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.beach-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-5px);
}

.beach-card:nth-child(even) {
    direction: rtl;
}

.beach-card:nth-child(even) > * {
    direction: ltr;
}

.beach-card-image {
    position: relative;
    min-height: 400px;
    overflow: hidden;
}

.beach-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.beach-card:hover .beach-card-image img {
    transform: scale(1.05);
}

.beach-card-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: var(--color-sunset);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.beach-card-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.beach-card h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--color-ocean-deep);
    margin-bottom: 0.5rem;
}

.beach-card-location {
    color: var(--color-ocean);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.beach-card p {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.beach-card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.feature-tag {
    background: var(--color-sand-light);
    color: var(--color-ocean);
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
}

.beach-card .btn {
    align-self: flex-start;
}

.intro-section {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--color-ocean-deep);
    margin-bottom: 1.5rem;
}

.intro-content p {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.intro-content p:first-of-type::first-letter {
    font-family: var(--font-display);
    font-size: 3.5rem;
    float: left;
    line-height: 1;
    margin-right: 0.5rem;
    color: var(--color-ocean);
}

.intro-image {
    position: relative;
}

.intro-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
}

.intro-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--color-ocean-light);
    border-radius: 20px;
    z-index: -1;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.tip-card {
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.tip-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--color-ocean) 0%, var(--color-ocean-light) 100%);
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.tip-icon {
    width: 50px;
    height: 50px;
    background: var(--color-sand-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--color-ocean);
}

.tip-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-ocean-deep);
    margin-bottom: 0.75rem;
}

.tip-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.article-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.article-hero-bg {
    position: absolute;
    inset: 0;
}

.article-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 61, 71, 0.2) 0%, rgba(6, 61, 71, 0.85) 100%);
}

.article-hero-content {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
    color: #fff;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.article-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.article-hero-description {
    font-size: 1.15rem;
    max-width: 600px;
    opacity: 0.9;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.article-content h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--color-ocean-deep);
    margin: 3rem 0 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--color-sand);
}

.article-content h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-ocean);
    margin: 2rem 0 1rem;
}

.article-content p {
    margin-bottom: 1.5rem;
    color: var(--color-text);
    font-size: 1.05rem;
}

.article-content ul,
.article-content ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.article-content li {
    margin-bottom: 0.75rem;
    color: var(--color-text);
}

.article-content blockquote {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    background: var(--color-sand-light);
    border-left: 4px solid var(--color-ocean);
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: var(--color-ocean-deep);
}

.article-content a {
    color: var(--color-ocean);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: var(--transition);
}

.article-content a:hover {
    color: var(--color-ocean-light);
}

.article-image {
    margin: 2.5rem 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.article-image img {
    width: 100%;
    display: block;
}

.article-image figcaption {
    padding: 1rem;
    background: var(--color-sand-light);
    font-size: 0.9rem;
    color: var(--color-text-light);
    text-align: center;
}

.accommodation-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: var(--shadow-soft);
}

.accommodation-card h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-ocean-deep);
    margin-bottom: 0.5rem;
}

.accommodation-card .price {
    color: var(--color-coral);
    font-weight: 600;
    margin-bottom: 1rem;
}

.accommodation-card p {
    margin-bottom: 0;
}

.related-articles {
    background: var(--color-sand-light);
    padding: 4rem 2rem;
}

.related-articles h2 {
    text-align: center;
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--color-ocean-deep);
    margin-bottom: 2rem;
}

.related-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.related-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    text-decoration: none;
    transition: var(--transition);
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.related-card-image {
    height: 180px;
    overflow: hidden;
}

.related-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.related-card:hover .related-card-image img {
    transform: scale(1.05);
}

.related-card-content {
    padding: 1.5rem;
}

.related-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-ocean-deep);
    margin-bottom: 0.5rem;
}

.related-card p {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.site-footer {
    background: var(--color-ocean-deep);
    color: rgba(255, 255, 255, 0.9);
    position: relative;
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    transform: translateY(-99%);
    color: var(--color-ocean-deep);
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
    color: #fff;
}

.footer-section p {
    font-size: 0.95rem;
    opacity: 0.85;
    line-height: 1.7;
}

.update-date {
    margin-top: 1rem;
    font-size: 0.85rem;
    opacity: 0.7;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--color-sunset);
}

.contact-email {
    display: inline-block;
    margin-top: 0.5rem;
    color: var(--color-sunset) !important;
    font-weight: 500;
}

.footer-legal {
    margin-top: 1.5rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.copyright {
    font-size: 0.85rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.cookie-text h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-ocean-deep);
    margin-bottom: 0.5rem;
}

.cookie-text p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin: 0;
}

.cookie-text a {
    color: var(--color-ocean);
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.cookie-reject {
    background: transparent;
    border: 2px solid var(--color-ocean);
    color: var(--color-ocean);
}

.cookie-reject:hover {
    background: var(--color-ocean);
    color: #fff;
}

.cookie-accept {
    background: var(--color-ocean);
    border: 2px solid var(--color-ocean);
    color: #fff;
}

.cookie-accept:hover {
    background: var(--color-ocean-deep);
    border-color: var(--color-ocean-deep);
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.privacy-content h1 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--color-ocean-deep);
    margin-bottom: 1rem;
}

.privacy-content h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-ocean);
    margin: 2.5rem 0 1rem;
}

.privacy-content p {
    margin-bottom: 1rem;
    color: var(--color-text);
}

.privacy-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.privacy-content li {
    margin-bottom: 0.5rem;
}

@media (max-width: 1024px) {
    .beach-card {
        grid-template-columns: 1fr;
    }
    
    .beach-card:nth-child(even) {
        direction: ltr;
    }
    
    .beach-card-image {
        min-height: 300px;
    }
    
    .intro-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .intro-image {
        order: -1;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .hero-content {
        padding: 3rem 1.5rem;
    }
    
    .section {
        padding: 4rem 1.5rem;
    }
    
    .beach-card-content {
        padding: 2rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .article-content {
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-actions {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
}
