/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
}

.highlight {
    background: linear-gradient(135deg, #10b981, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.logo-img {
    width: 32px;
    height: 32px;
    border-radius: 6px;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1;
    vertical-align: middle;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #6b7280;
    font-weight: 500;
    transition: color 0.2s ease;
    position: relative;
}

.nav-link:hover {
    color: #10b981;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #10b981;
    transition: width 0.2s ease;
}

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

.cta-button {
    background: linear-gradient(135deg, #10b981, #34d399);
    color: white !important;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
}

.cta-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.cta-button::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #1f2937;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(52, 211, 153, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #111827;
}

.hero-description {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
}

.btn {
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, #10b981, #34d399);
    color: white;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.btn-secondary {
    background: white;
    color: #6b7280;
    border: 2px solid #e5e7eb;
}

.btn-secondary:hover {
    border-color: #10b981;
    color: #10b981;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #10b981;
    border: 2px solid #10b981;
}

.btn-outline:hover {
    background: #10b981;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.25);
}

.btn-contact {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    color: #374151;
    border: 2px solid #d1d5db;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.btn-contact:hover {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border-color: #10b981;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.btn-contact .btn-text {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.btn-contact svg {
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.btn-contact:hover svg {
    transform: scale(1.1) rotate(5deg);
}

.btn-shine {
    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;
    z-index: 1;
}

.btn-contact:hover .btn-shine {
    left: 100%;
}

.btn-contact:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.4);
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #10b981;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.container-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
}

.container-item {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    min-width: 280px;
    transition: all 0.3s ease;
    position: relative;
}

.container-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
}

.container-item.active {
    border-color: #10b981;
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.2);
}

.container-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.container-status {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.container-title {
    font-weight: 600;
    color: #374151;
    font-size: 0.875rem;
}

.container-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.api-line {
    height: 4px;
    background: linear-gradient(90deg, #e5e7eb, #10b981, #e5e7eb);
    border-radius: 2px;
    animation: flow 3s infinite ease-in-out;
}

.api-line.short {
    width: 70%;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes flow {
    0% { background-position: -200px 0; }
    100% { background-position: 200px 0; }
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: #111827;
}

.section-description {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    padding: 40px;
    background: #f9fafb;
    border-radius: 16px;
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #34d399);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 64px rgba(0, 0, 0, 0.1);
    background: white;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #10b981, #34d399);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: white;
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: #111827;
}

.feature-description {
    color: #6b7280;
    line-height: 1.7;
}

/* Architecture Section */
.architecture {
    padding: 100px 0;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

.architecture-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.architecture-diagram {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.layer {
    background: white;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.layer h4 {
    font-size: 1.125rem;
    margin-bottom: 20px;
    color: #374151;
    text-align: center;
}

.components {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.component {
    background: #f3f4f6;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #6b7280;
    border: 1px solid #e5e7eb;
    transition: all 0.2s ease;
}

.component:hover {
    background: #10b981;
    color: white;
    transform: translateY(-2px);
}

.component.container {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    color: #065f46;
    border-color: #10b981;
}

.management-layer {
    border-top: 4px solid #3b82f6;
}

.container-layer {
    border-top: 4px solid #10b981;
}

.infrastructure-layer {
    border-top: 4px solid #8b5cf6;
}

.architecture-features {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.arch-feature h4 {
    font-size: 1.125rem;
    margin-bottom: 12px;
    color: #111827;
}

.arch-feature p {
    color: #6b7280;
    line-height: 1.7;
}

/* Getting Started Section */
.getting-started {
    padding: 100px 0;
    background: white;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 80px;
}

.step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #10b981, #34d399);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: #111827;
}

.code-block {
    background: #1f2937;
    color: #10b981;
    padding: 16px 20px;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
    display: block;
    margin: 16px 0;
    overflow-x: auto;
    white-space: nowrap;
    border: 1px solid #374151;
}

.step-content p {
    color: #6b7280;
    line-height: 1.7;
}

.cta-section {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #f9fafb, #ffffff);
    border-radius: 20px;
    border: 1px solid #e5e7eb;
}

.cta-section h3 {
    font-size: 1.5rem;
    margin-bottom: 32px;
    color: #111827;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.pricing-card.popular {
    border-color: #10b981;
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #10b981, #34d399);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
}

.plan-price {
    margin: 20px 0;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: #1f2937;
    line-height: 1;
}

.price-period {
    font-size: 1.125rem;
    color: #6b7280;
    font-weight: 500;
}

.plan-description {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.5;
}

.pricing-features {
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.95rem;
    color: #374151;
    line-height: 1.5;
}

.pricing-features .feature-icon {
    color: #10b981;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    margin-top: 2px;
}

.pricing-cta {
    margin-top: 40px;
}

.pricing-cta .btn {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
    font-size: 1rem;
    font-weight: 600;
}

.pricing-footer {
    margin-top: 80px;
    text-align: center;
}

.pricing-note {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.pricing-note h4 {
    font-size: 1.375rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

.pricing-note p {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.pricing-contact-link {
    color: #10b981;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.2s ease;
}

.pricing-contact-link:hover {
    color: #059669;
}

/* Pricing Card Specific Styles */
.pricing-card.community {
    border-color: #e5e7eb;
}

.pricing-card.community .plan-name {
    color: #6b7280;
}

.pricing-card.professional .plan-name {
    color: #10b981;
}

.pricing-card.enterprise .plan-name {
    color: #7c3aed;
}

.pricing-card.enterprise .price-amount {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Mobile Responsiveness for Pricing */
@media (max-width: 768px) {
    .pricing {
        padding: 60px 0;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-8px);
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .pricing-footer {
        margin-top: 60px;
    }
    
    .pricing-note {
        padding: 30px 20px;
    }
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-brand .logo-text {
    color: white;
}

.footer-description {
    color: #9ca3af;
    margin-top: 16px;
    line-height: 1.7;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1rem;
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-column ul li a:hover {
    color: #10b981;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 32px;
    text-align: center;
    color: #9ca3af;
}

.privacy-notice {
    margin-top: 12px;
    font-size: 0.875rem;
    color: #6b7280;
}

.privacy-link {
    color: #10b981;
    text-decoration: none;
    transition: color 0.2s ease;
}

.privacy-link:hover {
    color: #34d399;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .architecture-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .container-stack {
        transform: none;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .feature-card {
        padding: 32px 24px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .code-block {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.875rem;
    }
    
    .container-item {
        min-width: 240px;
        padding: 16px;
    }
}

/* Animations */
@media (prefers-reduced-motion: no-preference) {
    .hero-content > * {
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 0.8s ease forwards;
    }
    
    .hero-title { animation-delay: 0.1s; }
    .hero-description { animation-delay: 0.2s; }
    .hero-buttons { animation-delay: 0.3s; }
    .hero-stats { animation-delay: 0.4s; }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection styling */
::selection {
    background: rgba(16, 185, 129, 0.2);
    color: #065f46;
}

/* Privacy Policy Page Styles */
.privacy-page {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    min-height: 100vh;
    position: relative;
}

.privacy-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(16, 185, 129, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(52, 211, 153, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.privacy-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.privacy-header h1 {
    font-size: 3.5rem;
    color: #111827;
    margin-bottom: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #10b981, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.last-updated {
    font-size: 1.125rem;
    color: #6b7280;
    background: white;
    padding: 12px 24px;
    border-radius: 25px;
    display: inline-block;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.privacy-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.privacy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.privacy-section {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.privacy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #34d399);
}

.privacy-section:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.privacy-section h2 {
    font-size: 1.75rem;
    color: #111827;
    margin-bottom: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 16px;
}

.privacy-section h2::before {
    content: '';
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #10b981, #34d399);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
    font-weight: 600;
    flex-shrink: 0;
}

.privacy-section:nth-child(1) h2::before { content: "ℹ️"; }
.privacy-section:nth-child(2) h2::before { content: "📊"; }
.privacy-section:nth-child(3) h2::before { content: "🎯"; }
.privacy-section:nth-child(4) h2::before { content: "🍪"; }
.privacy-section:nth-child(5) h2::before { content: "🤝"; }
.privacy-section:nth-child(6) h2::before { content: "🔒"; }
.privacy-section:nth-child(7) h2::before { content: "⏱️"; }
.privacy-section:nth-child(8) h2::before { content: "👤"; }
.privacy-section:nth-child(9) h2::before { content: "🌍"; }
.privacy-section:nth-child(10) h2::before { content: "👶"; }
.privacy-section:nth-child(11) h2::before { content: "🔗"; }
.privacy-section:nth-child(12) h2::before { content: "📝"; }
.privacy-section:nth-child(13) h2::before { content: "📞"; }
.privacy-section:nth-child(14) h2::before { content: "📅"; }

.privacy-section h3 {
    font-size: 1.25rem;
    color: #374151;
    margin: 28px 0 16px 0;
    font-weight: 600;
    position: relative;
    padding-left: 20px;
}

.privacy-section h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
}

.privacy-section p {
    color: #4b5563;
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.7;
}

.privacy-section ul {
    margin: 20px 0;
    padding: 0;
    list-style: none;
}

.privacy-section li {
    color: #4b5563;
    margin-bottom: 12px;
    font-size: 1rem;
    position: relative;
    padding-left: 28px;
    line-height: 1.6;
}

.privacy-section li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #10b981;
    font-weight: 600;
    font-size: 1.1rem;
}

.privacy-section li strong {
    color: #111827;
    font-weight: 600;
}

.privacy-section a {
    color: #10b981;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
}

.privacy-section a:hover {
    color: #059669;
    transform: translateY(-1px);
}

.privacy-section a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #10b981;
    transition: width 0.2s ease;
}

.privacy-section a:hover::after {
    width: 100%;
}

.contact-info {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #10b981;
    margin-top: 24px;
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.contact-info p {
    margin-bottom: 16px;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

.privacy-footer {
    text-align: center;
    margin-top: 80px;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid #f3f4f6;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Special styling for important sections */
.privacy-section.highlight {
    background: linear-gradient(135deg, #f0fdf4, #ffffff);
    border-color: #10b981;
}

/* Table of contents style navigation */
.privacy-nav {
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    border: 1px solid #f3f4f6;
}

.privacy-nav h3 {
    margin-bottom: 16px;
    color: #111827;
    font-size: 1.125rem;
    font-weight: 600;
}

.privacy-nav ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.privacy-nav li {
    margin: 0;
    padding: 0;
}

.privacy-nav a {
    display: block;
    padding: 8px 12px;
    color: #6b7280;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-size: 0.875rem;
}

.privacy-nav a:hover {
    background: #f3f4f6;
    color: #10b981;
    transform: translateX(4px);
}

/* Responsive adjustments for privacy page */
@media (max-width: 1024px) {
    .privacy-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .privacy-content {
        max-width: 900px;
    }
}

@media (max-width: 768px) {
    .privacy-page {
        padding: 100px 0 60px;
    }
    
    .privacy-header h1 {
        font-size: 2.5rem;
    }
    
    .privacy-content {
        padding: 0 20px;
    }
    
    .privacy-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .privacy-section {
        padding: 32px 24px;
    }
    
    .privacy-section h2 {
        font-size: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .privacy-section h2::before {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    
    .privacy-section h3 {
        font-size: 1.125rem;
    }
    
    .privacy-nav ul {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 6px;
    }
    
    .privacy-nav a {
        padding: 6px 10px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .privacy-header h1 {
        font-size: 2rem;
    }
    
    .privacy-section {
        padding: 24px 20px;
    }
    
    .privacy-section h2 {
        font-size: 1.375rem;
    }
    
    .privacy-section h2::before {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }
    
    .contact-info {
        padding: 24px 20px;
    }
    
    .privacy-nav {
        padding: 20px;
    }
    
    .privacy-nav ul {
        grid-template-columns: 1fr;
    }
    
    .last-updated {
        font-size: 1rem;
        padding: 10px 20px;
    }
}