.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-content {
    margin-top: 140px;
    padding: 60px 0;
}

.policy-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.policy-title {
    font-size: 3rem;
    font-weight: 700;
    color: #8B4513;
    margin-bottom: 20px;
}

.policy-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 20px;
}

.last-updated {
    font-size: 1rem;
    color: #888;
    font-style: italic;
}

.policy-content {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #8B4513;
    margin: 40px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
}

.section-title:first-child {
    margin-top: 0;
}

.section-descr {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

.policy-text {
    margin-bottom: 20px;
    text-align: justify;
}

.policy-list {
    margin: 20px 0;
    padding-left: 20px;
}

.policy-list li {
    margin-bottom: 10px;
}

.highlight {
    background: linear-gradient(45deg, #8B4513, #D2691E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cookie-table th,
.cookie-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.cookie-table th {
    background: linear-gradient(45deg, #8B4513, #D2691E);
    color: white;
    font-weight: 600;
}

.cookie-table tr:hover {
    background: #f8f9fa;
}

.cookie-category {
    background: linear-gradient(45deg, rgba(139, 69, 19, 0.1), rgba(210, 105, 30, 0.1));
    padding: 20px;
    border-radius: 15px;
    margin: 20px 0;
    border-left: 5px solid #8B4513;
}

.cookie-category h4 {
    color: #8B4513;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.important-notice {
    background: linear-gradient(45deg, rgba(220, 53, 69, 0.1), rgba(255, 193, 7, 0.1));
    padding: 25px;
    border-radius: 15px;
    margin: 25px 0;
    border-left: 5px solid #dc3545;
}

.warning-notice {
    background: linear-gradient(45deg, rgba(220, 53, 69, 0.1), rgba(255, 193, 7, 0.1));
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    border-left: 5px solid #dc3545;
    border: 2px solid rgba(220, 53, 69, 0.3);
}

.warning-notice h4 {
    color: #dc3545;
    font-size: 1.4rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.warning-notice h4 i {
    margin-right: 10px;
    font-size: 1.6rem;
}

.medical-notice {
    background: linear-gradient(45deg, rgba(40, 167, 69, 0.1), rgba(32, 201, 151, 0.1));
    padding: 25px;
    border-radius: 15px;
    margin: 25px 0;
    border-left: 5px solid #28a745;
}

.refund-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.refund-table th,
.refund-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.refund-table th {
    background: linear-gradient(45deg, #8B4513, #D2691E);
    color: white;
    font-weight: 600;
}

.refund-table tr:hover {
    background: #f8f9fa;
}

.important-notice {
    background: linear-gradient(45deg, rgba(220, 53, 69, 0.1), rgba(255, 193, 7, 0.1));
    padding: 25px;
    border-radius: 15px;
    margin: 25px 0;
    border-left: 5px solid #dc3545;
}

.success-notice {
    background: linear-gradient(45deg, rgba(40, 167, 69, 0.1), rgba(32, 201, 151, 0.1));
    padding: 25px;
    border-radius: 15px;
    margin: 25px 0;
    border-left: 5px solid #28a745;
}

.contact-info {
    background: linear-gradient(45deg, #f8f9fa, #e9ecef);
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    border-left: 5px solid #8B4513;
}

.contact-info a {
    color: #555;
}

.back-link {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(45deg, #8B4513, #D2691E);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 30px;
}

.back-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(139, 69, 19, 0.3);
}

.back-link i {
    margin-right: 8px;
}

@media (max-width: 768px) {
    .policy-title {
        font-size: 2rem;
    }

    .policy-content {
        padding: 30px 20px;
    }

    .container {
        padding: 0 15px;
    }

    .contact-info a {
        font-size: 0.8rem;
    }

    .cookie-table {
        font-size: 0.9rem;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 10px;
    }

    .refund-table {
        font-size: 0.9rem;
    }

    .refund-table th,
    .refund-table td {
        padding: 10px;
    }
}