.privacy-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.privacy-header {
    background: #437c8a;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    color: white;
}

.privacy-header h1 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
}

.privacy-header .last-updated {
    font-size: 16px;
    opacity: 0.9;
    margin: 0;
}

.privacy-content {
    background: white;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.privacy-section {
    margin-bottom: 45px;
    padding-bottom: 45px;
    border-bottom: 1px solid #e5e7eb;
}

.privacy-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.privacy-section h2 {
    font-size: 28px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 20px 0;
    position: relative;
    padding-bottom: 12px;
}

.privacy-section h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: #201f1f;
    border-radius: 2px;
}

.privacy-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
    margin: 0 0 16px 0;
}

.privacy-section p:last-child {
    margin-bottom: 0;
}

.privacy-section a {
    color: #78b5c7;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.privacy-section a:hover {
    color: #78b5c7;
    text-decoration: underline;
}

.note-box {
    background: #fff7ed;
    border-left: 4px solid #f59e0b;
    padding: 20px 24px;
    margin: 20px 0;
    border-radius: 6px;
}

.note-box p {
    margin: 0;
    color: #78350f;
}

.note-box strong {
    color: #92400e;
    font-weight: 600;
}

.contact-box {
    background: #f3f4f6;
    padding: 30px;
    border-radius: 8px;
    margin-top: 20px;
}

.contact-box p {
    margin: 0 0 12px 0;
    color: #374151;
}

.contact-box p:last-child {
    margin-bottom: 0;
}

.contact-box strong {
    color: #1f2937;
    font-weight: 600;
}

.back-home-wrapper {
    text-align: center;
    margin-top: 40px;
}

.back-home-btn {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    background: #78b5c7;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px #78b5c7;
}

.back-home-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px #78b5c7;
    color: white;
}

.back-home-btn svg {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

@media (max-width: 768px) {
    .privacy-container {
        padding: 30px 15px;
    }

    .privacy-header {
        padding: 35px 25px;
    }

    .privacy-header h1 {
        font-size: 32px;
    }

    .privacy-content {
        padding: 30px 25px;
    }

    .privacy-section h2 {
        font-size: 24px;
    }

    .privacy-section p {
        font-size: 15px;
    }

    .note-box {
        padding: 16px 20px;
    }

    .contact-box {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .privacy-header h1 {
        font-size: 28px;
    }

    .privacy-section h2 {
        font-size: 22px;
    }

    .back-home-btn {
        padding: 12px 24px;
        font-size: 15px;
    }
}