@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

:root {
    /* Core Color Palette - Soft Warm Cream, Light Taupe, Deep Rose & Dark Charcoal */
    --bg-cream: #FAF7F2;
    --bg-taupe: #EAE0D8;
    --bg-rose: #E0C8C8;
    
    --bg-fixed-gradient: linear-gradient(135deg, #FAF7F2 0%, #EAE0D8 45%, #E0C8C8 100%);

    /* Typography Colors */
    --text-primary: #2B2426;     /* High contrast minimalist dark charcoal */
    --text-secondary: #5C4F54;   /* Muted deep taupe/brown */
    --text-muted: #8C7B81;       /* Subtle muted tone */

    /* Accent & Brand Colors */
    --primary: #A35C50;          /* Warm terracotta deep rose */
    --primary-hover: #8C4B40;
    --primary-gradient: linear-gradient(135deg, #B87365 0%, #8C4B40 100%);
    --accent: #C48B7F;
    --accent-glow: rgba(224, 200, 200, 0.4);

    /* Glassmorphism Tokens */
    --glass-bg: rgba(255, 255, 255, 0.35);
    --glass-bg-hover: rgba(255, 255, 255, 0.55);
    --glass-border: rgba(255, 255, 255, 0.6);
    --glass-border-hover: rgba(255, 255, 255, 0.95);
    --glass-blur: blur(16px);
    --glass-radius: 24px;
    --glass-shadow: 0 12px 32px rgba(184, 162, 158, 0.3);
    --glass-shadow-hover: 0 20px 45px rgba(184, 162, 158, 0.45);

    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

/* Base Styles & Resets */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background: var(--bg-fixed-gradient);
    background-attachment: fixed;
    color: var(--text-primary);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    line-height: 1.6;
    background: var(--bg-fixed-gradient);
    background-attachment: fixed;
}

body.no-scroll {
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.25;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

/* Ambient Glow Orbs in Background */
.ambient-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: -1;
}

.orb-top-right {
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(224, 200, 200, 0.6) 0%, rgba(250, 247, 242, 0) 70%);
}

.orb-bottom-left {
    bottom: -150px;
    left: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(234, 224, 216, 0.7) 0%, rgba(250, 247, 242, 0) 70%);
}

.orb-center {
    top: 40%;
    left: 30%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, rgba(224, 200, 200, 0) 70%);
}

/* Header Navigation Layout */
.app-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(250, 247, 242, 0.65);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
}

.header-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 1.1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    display: flex;
    align-items: center;
}

.logo .dot {
    color: var(--primary);
}

.main-nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 0.25rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--text-primary);
}

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

.nav-link.active {
    color: var(--primary);
    font-weight: 600;
}

/* Button System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 40px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    outline: none;
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
}

.btn-primary {
    background: var(--primary-gradient);
    color: #FFFFFF;
    box-shadow: 0 6px 18px rgba(163, 92, 80, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(163, 92, 80, 0.45);
    color: #FFFFFF;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.4);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.7);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

/* Mobile Toggle */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-nav-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-smooth);
}

/* Main Content Area */
.page-content {
    flex: 1;
    margin-top: 5rem;
}

/* Footer Section */
.app-footer {
    background: rgba(250, 247, 242, 0.5);
    backdrop-filter: var(--glass-blur);
    border-top: 1px solid var(--glass-border);
    padding: 4.5rem 2rem 2rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 3.5rem;
    border-bottom: 1px solid var(--glass-border);
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    max-width: 340px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(4px);
}

.footer-contact a {
    color: var(--primary);
    font-weight: 600;
    word-break: break-all;
}

.footer-contact a:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

.footer-bottom {
    max-width: 1240px;
    margin: 0 auto;
    padding-top: 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ==========================================================================
   BENTO GRID SYSTEM & GLASSMORPHISM CONTAINER STYLES
   ========================================================================== */

.bento-wrapper {
    padding: 3rem 1.5rem 5rem;
    max-width: 1280px;
    margin: 0 auto;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
    align-items: stretch;
}

/* Generic Frosted Glass Bento Card */
.bento-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--glass-radius);
    box-shadow: var(--glass-shadow);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    
    /* Continuous floating Antigravity animation */
    animation: floating 6s ease-in-out infinite;
}

/* Antigravity Keyframe Animation */
@keyframes floating {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Staggered Animation Delays for organic weightless movement */
.float-delay-1 { animation-delay: 0s; }
.float-delay-2 { animation-delay: 1.2s; }
.float-delay-3 { animation-delay: 2.4s; }
.float-delay-4 { animation-delay: 0.6s; }
.float-delay-5 { animation-delay: 1.8s; }
.float-delay-6 { animation-delay: 3.0s; }
.float-delay-7 { animation-delay: 0.9s; }
.float-delay-8 { animation-delay: 2.1s; }

/* Interactive Hover State: Lifts closer and expands shadow spread */
.bento-card:hover {
    animation-play-state: paused;
    transform: translateY(-12px) scale(1.015);
    box-shadow: var(--glass-shadow-hover);
    border-color: var(--glass-border-hover);
    background: var(--glass-bg-hover);
}

/* Bento Header / Section Cards (Static Span 12) */
.bento-header-card {
    grid-column: span 12;
    text-align: center;
    padding: 3.5rem 1.5rem 1rem;
}

.bento-header-card h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, var(--text-primary) 30%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bento-header-card p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* 1. Hero Bento Card */
.bento-hero {
    grid-column: span 12;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3.5rem;
    align-items: center;
    padding: 4rem 3.5rem;
}

.bento-badge {
    display: inline-block;
    padding: 0.4rem 1.1rem;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
}

.hero-bento-title {
    font-size: 3.75rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
}

.hero-bento-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2.25rem;
    max-width: 520px;
    line-height: 1.7;
}

.hero-bento-actions {
    display: flex;
    gap: 1.25rem;
}

.hero-bento-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-frame {
    position: relative;
    width: 100%;
    max-width: 420px;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 24px rgba(184, 162, 158, 0.25);
}

.hero-bento-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.96) contrast(1.02);
    transition: var(--transition-smooth);
}

.hero-image-frame:hover .hero-bento-img {
    transform: scale(1.04);
}

.glass-tag {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 10px 25px rgba(184, 162, 158, 0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.glass-tag h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.15rem;
}

.glass-tag p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* 2, 3, 4. Product Bento Cards */
.bento-product {
    grid-column: span 4;
    display: flex;
    flex-direction: column;
}

.product-image-container {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-bottom: 1px solid var(--glass-border);
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.bento-product:hover .product-img {
    transform: scale(1.06);
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid var(--primary);
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
}

.product-info {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-title {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.product-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex: 1;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--glass-border);
    padding-top: 1.25rem;
}

.product-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

/* 5, 6. Service Bento Cards (Influencer & Consultant) */
.bento-service {
    grid-column: span 6;
    padding: 3.5rem 3rem;
    display: flex;
    flex-direction: column;
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: rgba(163, 92, 80, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 1.75rem;
}

.service-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-desc {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-bullets {
    list-style: none;
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.service-bullets li {
    position: relative;
    padding-left: 1.75rem;
    color: var(--text-secondary);
    font-size: 0.98rem;
    font-weight: 500;
}

.service-bullets li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 0.9rem;
}

.service-cta {
    margin-top: auto;
    align-self: flex-start;
}

/* 7, 8. Social Media Bento Cards */
.bento-social {
    grid-column: span 6;
    padding: 2.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    width: 100%;
}

.social-card-title svg {
    color: var(--primary);
}

.bento-social blockquote {
    margin: 0 auto !important;
}

/* ==========================================================================
   SUBPAGES: CONTACT & PRIVACY PAGE STYLES
   ========================================================================== */

.contact-section {
    padding: 6rem 1.5rem 8rem;
    position: relative;
}

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

.contact-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    padding: 4.5rem 3.5rem;
    box-shadow: var(--glass-shadow);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3.5rem;
    align-items: center;
}

.contact-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 24px rgba(184, 162, 158, 0.25);
}

.contact-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.contact-image-wrapper:hover .contact-hero-img {
    transform: scale(1.03);
}

.contact-title {
    font-size: 3.25rem;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
}

.contact-subtitle {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.contact-email-box {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid var(--glass-border);
    padding: 1.1rem 2.25rem;
    border-radius: 50px;
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-primary);
    transition: var(--transition-smooth);
    margin-bottom: 2.5rem;
}

.contact-email-box:hover {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.85);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(163, 92, 80, 0.2);
}

.contact-email-box svg {
    color: var(--primary);
}

.contact-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid var(--glass-border);
    padding-top: 1.5rem;
}

.meta-item h5 {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    margin-bottom: 0.35rem;
}

.meta-item p {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* Privacy Page */
.privacy-section {
    padding: 6rem 1.5rem 8rem;
}

.privacy-container {
    max-width: 860px;
    margin: 0 auto;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    padding: 4rem 3.5rem;
    box-shadow: var(--glass-shadow);
}

.privacy-header {
    margin-bottom: 3rem;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 1.75rem;
}

.privacy-header h1 {
    font-size: 3.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.privacy-header .last-updated {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.privacy-content h2 {
    font-size: 1.6rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.privacy-content p {
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.privacy-content ul, 
.privacy-content ol {
    margin-bottom: 1.75rem;
    padding-left: 1.5rem;
    color: var(--text-secondary);
}

.privacy-content li {
    margin-bottom: 0.65rem;
    line-height: 1.7;
}

.privacy-content strong {
    color: var(--text-primary);
}

/* Utility Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Media Queries */
@media (max-width: 1100px) {
    .bento-hero {
        grid-template-columns: 1fr;
        padding: 3rem 2.5rem;
        text-align: center;
    }
    .hero-bento-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-bento-actions {
        justify-content: center;
    }
    .hero-image-frame {
        margin: 0 auto;
    }
    .bento-product {
        grid-column: span 6;
    }
    .bento-service {
        grid-column: span 12;
    }
    .bento-social {
        grid-column: span 12;
    }
}

@media (max-width: 900px) {
    .header-container {
        padding: 1rem 1.5rem;
    }
    .mobile-nav-toggle {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 5rem;
        right: -100%;
        width: 100%;
        height: calc(100vh - 5rem);
        background: rgba(250, 247, 242, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 2.5rem;
        transition: var(--transition-smooth);
        border-top: 1px solid var(--glass-border);
        z-index: 999;
    }
    .main-nav.active {
        right: 0;
    }
    .mobile-nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .mobile-nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    .mobile-nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    .header-actions {
        display: none;
    }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .contact-card {
        padding: 3.5rem 2rem;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    .contact-image-wrapper {
        max-width: 320px;
        margin: 0 auto;
    }
    .contact-email-box {
        font-size: 1.3rem;
        padding: 1rem 1.75rem;
    }
    .contact-meta {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .bento-hero,
    .bento-product,
    .bento-service,
    .bento-social,
    .bento-header-card {
        grid-column: span 1;
    }
    .hero-bento-title {
        font-size: 2.75rem;
    }
    .bento-service {
        padding: 2.5rem 1.75rem;
    }
}

@media (max-width: 480px) {
    .hero-bento-title {
        font-size: 2.25rem;
    }
    .hero-bento-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .glass-tag {
        display: none;
    }
    .contact-title {
        font-size: 2.25rem;
    }
    .privacy-container {
        padding: 2.5rem 1.5rem;
    }
    .privacy-header h1 {
        font-size: 2.5rem;
    }
}
