* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu,
        Cantarell, "Helvetica Neue", sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* Navbar Styles */
.navbar {
    background-color: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 3rem;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: #ffffff;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #e94b7b 0%, #ff6b9d 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-icon svg {
    width: 24px;
    height: 24px;
    fill: #1a1a1a;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Navigation Links */
.nav-center {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-center li {
    position: relative;
}

.nav-center a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-center a:hover {
    color: #ffffff;
}

.nav-center a.active {
    color: #e94b7b;
}

.dropdown-arrow {
    font-size: 0.7rem;
    margin-left: 0.2rem;
}

/* Action Buttons */
.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn {
    padding: 0.75rem 1.8rem;
    border-radius: 10px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-login {
    background-color: transparent;
    color: #ffffff;
}

.btn-login:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.btn-signup {
    background: linear-gradient(135deg, #e94b7b 0%, #ff6b9d 100%);
    color: #ffffff;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(233, 75, 123, 0.3);
}

.btn-signup:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 75, 123, 0.5);
}

/* Mobile Menu (hidden by default) */
.mobile-menu {
    display: none;
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 1.5rem;
}

/* When menu is open */
.mobile-menu.open {
    display: block;
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.mobile-nav-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    padding: 0.6rem 0.2rem;
    display: block;
}

.mobile-nav-links a:hover {
    color: #ffffff;
}

.mobile-nav-links a.active {
    color: #e94b7b;
}

.mobile-actions {
    display: flex;
}
.mobile-actions .btn {
    width: 100%;
    text-align: center;
}

/* Only show mobile menu toggle on mobile */
@media (max-width: 768px) {
    .mobile-menu {
        display: none; /* still hidden until .open */
    }
}



/* Hero Section */
.hero {
    padding-top: 170px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: radial-gradient(
        ellipse at center,
        rgba(233, 75, 123, 0.05) 0%,
        transparent 70%
    );
}

/* Background Decorations */
.bg-decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
    filter: blur(80px);
}

.decoration-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #e94b7b 0%, #ff6b9d 100%);
    top: 10%;
    left: 5%;
}

.decoration-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #ff6b9d 0%, #e94b7b 100%);
    bottom: 20%;
    right: 10%;
}

/* Announcement Badge */
.announcement {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(233, 75, 123, 0.3);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.announcement-icon {
    font-size: 1.2rem;
}

.announcement-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: #e94b7b;
}

/* Hero Content */
.hero-content {
    max-width: 900px;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #e94b7b 0%, #ff6b9d 100%);
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(233, 75, 123, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(233, 75, 123, 0.5);
}

/* Hero Image */
.hero-image {
    margin-top: 4rem;
    max-width: 900px;
    width: 100%;
    position: relative;
}

.dashboard-mockup {
    width: 100%;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 26, 0.9) 0%,
        rgba(40, 40, 40, 0.9) 100%
    );
    border: 1px solid rgba(233, 75, 123, 0.3);
    border-radius: 20px;
    padding: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.dashboard-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.dashboard-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ff5f56;
}

.dashboard-dot:nth-child(2) {
    background: #ffbd2e;
}

.dashboard-dot:nth-child(3) {
    background: #27c93f;
}

.dashboard-content {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 2rem;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1.2rem;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Why Daily Answer Section */
.why-section {
    padding: 6rem 0;
    background-color: #f5f5f5;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(233, 75, 123, 0.15);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e94b7b;
    margin-bottom: 1rem;
}

.feature-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* What's Inside Section */
.whats-inside-section {
    padding: 6rem 0;
    background-color: #ffffff;
}

.inside-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    justify-items: center;
}

.inside-column {
    display: flex;

    flex-direction: column;
    gap: 2rem;
}

.inside-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: #333;
}

.check-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* Start Journey Section */
.start-journey-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.start-journey-section::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(233, 75, 123, 0.1) 0%,
        transparent 70%
    );
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.start-journey-section .container {
    position: relative;
    z-index: 1;
}

.journey-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.journey-description {
    font-size: 1.2rem;
    color: #b0b0b0;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.subscribe-button {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    background: linear-gradient(135deg, #e94b7b 0%, #ff6b9d 100%);
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(233, 75, 123, 0.4);
    position: relative;
    overflow: hidden;
}

.subscribe-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.5s ease;
}

.subscribe-button:hover::before {
    left: 100%;
}

.subscribe-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(233, 75, 123, 0.6);
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(233, 75, 123, 0.2);
}

.footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer-links {
    display: flex;
    gap: 3rem;
    margin-bottom: 1rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #e94b7b, #ff6b9d);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #e94b7b;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-copyright {
    color: #666;
    font-size: 0.9rem;
    text-align: center;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(233, 75, 123, 0.3),
        transparent
    );
    margin: 1rem 0;
}



/* Breadcrumb Hero Section */
    .breadcrumb-hero {
        background: linear-gradient(135deg, #1a1a1a 0%, #1a1a1a 100%);
        padding: 8rem 0 4rem;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .breadcrumb-hero::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(233, 75, 123, 0.08) 0%, transparent 70%);
        border-radius: 50%;
    }

    .breadcrumb-hero::after {
        content: '';
        position: absolute;
        bottom: -30%;
        left: -10%;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(233, 75, 123, 0.06) 0%, transparent 70%);
        border-radius: 50%;
    }

    .breadcrumb-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
        position: relative;
        z-index: 1;
    }

    .breadcrumb-title {
        font-size: 3.5rem;
        font-weight: 800;
        color: #d1d1d1;
        margin-bottom: 1.5rem;
        letter-spacing: -1px;
    }

    /* Breadcrumb Navigation */
    .breadcrumb {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        list-style: none;
        padding: 0;
        margin: 0;
        font-size: 1rem;
    }

    .breadcrumb-item {
        display: flex;
        align-items: center;
        color: #d1d1d1;
    }

    .breadcrumb-item a {
        color: #d1d1d1;
        text-decoration: none;
        transition: color 0.3s ease;
        font-weight: 500;
    }

    .breadcrumb-item a:hover {
        color: #E94B7B;
    }

    .breadcrumb-item.active {
        color: #d1d1d1;
        font-weight: 600;
    }

    .breadcrumb-item + .breadcrumb-item::before {
        content: '›';
        color: #999;
        margin-right: 0.5rem;
        font-size: 1.2rem;
        font-weight: 300;
    }

.about-content{
    padding: 4rem 2rem;
    max-width: 900px;
    margin: 0 auto;
    color: #d1d1d1;
    line-height: 1.8;
    font-size: 1.1rem;
}
    
.about-section {
    margin: 2rem auto;
    /* padding: 2rem; */
    color: #fff;
    border-radius: 10px;
    max-width: 800px;
    text-align: center;
}

.about-section h1 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #e94b7b;
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #d1d1d1;
}

.about-intro {
    margin: 2rem auto;
    padding: 2rem;
    background-color: #23242a;
    color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 800px;
    text-align: center;
}

.about-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #d1d1d1;
    margin-bottom: 1rem;
}


/* Responsive Design */
@media (max-width: 1024px) {
    .navbar-container {
        padding: 1rem 2rem;
    }

    .nav-center {
        gap: 2rem;
    }

    .hero h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .navbar-container {
        padding: 1rem 1.5rem;
    }

    .logo-text {
        display: none;
    }

    .decoration-1,
    .decoration-2 {
        width: 100%;
    }

    .decoration-1 {
        left: 0;
    }
    
    .decoration-2 {
        right: 0;
    }

    .nav-center,
    .nav-actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero {
        padding-top: 100px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .dashboard-mockup {
        padding: 0.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .inside-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .journey-title {
        font-size: 1.5rem;
    }

    .journey-description {
        font-size: 1rem;
    }

    .footer .container {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        /* flex-direction: column; */
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .logo-text {
        font-size: 1.1rem;
    }
}

.support-form {
        max-width: 600px;
        margin: 2rem auto;
        padding: 2rem;
        background-color: #23242a;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        color: #fff;
    }

    .support-form .form-group {
        margin-bottom: 1.5rem;
    }

    .support-form label {
        display: block;
        font-size: 1rem;
        font-weight: bold;
        margin-bottom: 0.5rem;
        color: #e94b7b;
    }

    .support-form .form-control {
        width: 100%;
        padding: 0.75rem;
        border: 1px solid #444;
        border-radius: 5px;
        background-color: #1a1a1a;
        color: #fff;
        font-size: 1rem;
    }

    .support-form .form-control:focus {
        outline: none;
        border-color: #e94b7b;
        box-shadow: 0 0 5px rgba(233, 75, 123, 0.5);
    }

    .support-form button {
        background: linear-gradient(135deg, #e94b7b 0%, #ff6b9d 100%);
        color: #fff;
        font-size: 1rem;
        font-weight: bold;
        padding: 0.75rem 1.5rem;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .support-form button:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(233, 75, 123, 0.5);
    }



/* Hide checkbox */
#mobile-menu-toggle {
  display: none;
}

/* Hamburger Icon */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 26px;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}


/* Menu Content */
.mobile-menu ul {
  list-style: none;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}


.mobile-btn {
  margin: 0 1.5rem 1.5rem;
  width: calc(100% - 3rem);
  text-align: center;
}

/* Toggle Menu Open */
#mobile-menu-toggle:checked ~ .mobile-menu {
  max-height: 500px;
}

/* Animate Hamburger → X */
#mobile-menu-toggle:checked + .mobile-menu-toggle span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

#mobile-menu-toggle:checked + .mobile-menu-toggle span:nth-child(2) {
  opacity: 0;
}

#mobile-menu-toggle:checked + .mobile-menu-toggle span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Responsive Rules */
@media (max-width: 768px) {
  .nav-center,
  .nav-actions {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .support-form{
    max-width: 350px;
  }
}


   /* Terms Content Section */
    .terms-content {
        max-width: 900px;
        margin: 0 auto;
        padding: 5rem 2rem 3rem 2rem;
    }

    .terms-intro {
        background: linear-gradient(135deg, #E94B7B 0%, #FF6B9D 100%);
        padding: 2.5rem;
        border-radius: 20px;
        margin-bottom: 3rem;
        box-shadow: 0 10px 30px rgba(233, 75, 123, 0.2);
    }

    .terms-intro p {
        color: #ffffff;
        font-size: 1.1rem;
        line-height: 1.8;
        margin: 0;
    }

    .terms-section {
        margin-bottom: 3rem;
        padding: 2.5rem;
        background: #ffffff;
        border-radius: 15px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        border-left: 4px solid #E94B7B;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .terms-section:hover {
        transform: translateX(5px);
        box-shadow: 0 8px 30px rgba(233, 75, 123, 0.15);
    }

    .terms-section:last-child {
        margin-bottom: 0;
    }

    .section-title {
        font-size: 1.6rem;
        font-weight: 700;
        color: #E94B7B;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .section-icon {
        width: 32px;
        height: 32px;
        background: linear-gradient(135deg, #E94B7B 0%, #FF6B9D 100%);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        font-weight: 700;
        flex-shrink: 0;
    }

    .section-content {
        font-size: 1.05rem;
        line-height: 1.8;
        color: #555;
    }

    .section-content ul {
        margin-top: 1rem;
        padding-left: 1.5rem;
    }

    .section-content li {
        margin-bottom: 0.5rem;
        color: #666;
    }

    .last-updated {
        text-align: center;
        color: #999;
        font-size: 0.9rem;
        margin-top: 3rem;
        padding-top: 2rem;
        border-top: 1px solid #e5e5e5;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .breadcrumb-hero {
            padding: 5rem 0 2.5rem;
        }

        .breadcrumb-title {
            font-size: 2rem;
        }

        .terms-content {
            padding: 3rem 1.5rem 2rem 1.5rem;
        }

        .terms-section {
            padding: 1.5rem;
        }

        .section-title {
            font-size: 1.3rem;
        }

        .section-content {
            font-size: 1rem;
        }
    }

     /* Privacy Content Section */
    .privacy-content {
        max-width: 900px;
        margin: 0 auto;
        padding: 5rem 2rem 3rem 2rem;
    }

    .privacy-intro {
        background: linear-gradient(135deg, #E94B7B 0%, #FF6B9D 100%);
        padding: 2.5rem;
        border-radius: 20px;
        margin-bottom: 3rem;
        box-shadow: 0 10px 30px rgba(233, 75, 123, 0.2);
    }

    .privacy-intro p {
        color: #ffffff;
        font-size: 1.1rem;
        line-height: 1.8;
        margin: 0;
    }

    .privacy-section {
        margin-bottom: 3rem;
        padding: 2.5rem;
        background: #ffffff;
        border-radius: 15px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        border-left: 4px solid #E94B7B;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .privacy-section:hover {
        transform: translateX(5px);
        box-shadow: 0 8px 30px rgba(233, 75, 123, 0.15);
    }

    .privacy-section:last-child {
        margin-bottom: 0;
    }

    .section-title {
        font-size: 1.6rem;
        font-weight: 700;
        color: #E94B7B;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .section-icon {
        width: 32px;
        height: 32px;
        background: linear-gradient(135deg, #E94B7B 0%, #FF6B9D 100%);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        font-weight: 700;
        flex-shrink: 0;
    }

    .section-content {
        font-size: 1.05rem;
        line-height: 1.8;
        color: #555;
    }

    .section-content p {
        margin-bottom: 1rem;
    }

    .section-content p:last-child {
        margin-bottom: 0;
    }

    .subsection {
        margin-top: 1.5rem;
        padding-left: 1rem;
        border-left: 2px solid #FFB6C1;
    }

    .subsection-title {
        font-weight: 600;
        color: #E94B7B;
        margin-bottom: 0.5rem;
    }

    .last-updated {
        text-align: center;
        color: #999;
        font-size: 0.9rem;
        margin-top: 3rem;
        padding-top: 2rem;
        border-top: 1px solid #e5e5e5;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .breadcrumb-hero {
            padding: 5rem 0 2.5rem;
        }

        .breadcrumb-title {
            font-size: 2rem;
        }

        .privacy-content {
            padding: 3rem 1.5rem 2rem 1.5rem;
        }

        .privacy-section {
            padding: 1.5rem;
        }

        .section-title {
            font-size: 1.3rem;
        }

        .section-content {
            font-size: 1rem;
        }
    }
