/* ===== POLICY PAGES STYLES ===== */
.policy-page {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #63F8F0 0%, #FF6B6B 100%);
    min-height: 100vh;
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.policy-content {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 60px 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.policy-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 3px solid;
    border-image: linear-gradient(90deg, #A3FF12, #63F8F0) 1;
}

.policy-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1C1C3C;
    margin-bottom: 15px;
    font-family: 'Roboto Slab', serif;
}

.policy-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 10px;
}

.policy-updated {
    font-size: 1rem;
    color: #999;
    font-style: italic;
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1C1C3C;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #A3FF12;
    font-family: 'Roboto Slab', serif;
}

.policy-section h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1C1C3C;
    margin-bottom: 15px;
    margin-top: 25px;
}

.policy-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1C1C3C;
    margin-bottom: 10px;
    margin-top: 20px;
}

.policy-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
    text-align: justify;
}

.policy-section ul,
.policy-section ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.policy-section li {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 8px;
}

.policy-section ul li {
    position: relative;
    list-style: none;
    padding-left: 20px;
}

.policy-section ul li::before {
    content: '•';
    color: #A3FF12;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: 0;
}

.policy-section ol li {
    list-style: decimal;
    color: #555;
}

.policy-section strong {
    font-weight: 600;
    color: #1C1C3C;
}

.policy-section em {
    font-style: italic;
    color: #777;
}

.policy-highlight {
    background: linear-gradient(135deg, rgba(163, 255, 18, 0.1) 0%, rgba(99, 248, 240, 0.1) 100%);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #A3FF12;
    margin: 20px 0;
}

.policy-highlight p {
    margin-bottom: 10px;
    color: #1C1C3C;
}

.policy-highlight p:last-child {
    margin-bottom: 0;
}

.policy-warning {
    background: linear-gradient(135deg, rgba(255, 163, 195, 0.1) 0%, rgba(255, 107, 107, 0.1) 100%);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #FF6B6B;
    margin: 20px 0;
}

.policy-warning p {
    margin-bottom: 10px;
    color: #1C1C3C;
}

.policy-warning p:last-child {
    margin-bottom: 0;
}

.policy-info {
    background: linear-gradient(135deg, rgba(99, 248, 240, 0.1) 0%, rgba(255, 163, 195, 0.1) 100%);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #63F8F0;
    margin: 20px 0;
}

.policy-info p {
    margin-bottom: 10px;
    color: #1C1C3C;
}

.policy-info p:last-child {
    margin-bottom: 0;
}

.policy-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: #FFFFFF;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.policy-table th,
.policy-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #E0E0E0;
}

.policy-table th {
    background: linear-gradient(135deg, #A3FF12 0%, #63F8F0 100%);
    color: #1C1C3C;
    font-weight: 600;
}

.policy-table tr:hover {
    background: rgba(163, 255, 18, 0.05);
}

.policy-contact {
    background: linear-gradient(135deg, #63F8F0 0%, #FF6B6B 100%);
    padding: 40px;
    border-radius: 15px;
    margin: 40px 0;
    color: #FFFFFF;
    text-align: center;
}

.policy-contact h3 {
    color: #FFFFFF;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.policy-contact p {
    color: #FFFFFF;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.policy-contact a {
    color: #A3FF12;
    text-decoration: none;
    font-weight: 600;
}

.policy-contact a:hover {
    text-decoration: underline;
}

.policy-back-link {
    display: inline-block;
    margin-bottom: 30px;
    padding: 12px 25px;
    background: linear-gradient(135deg, #A3FF12 0%, #63F8F0 100%);
    color: #1C1C3C;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(163, 255, 18, 0.3);
}

.policy-back-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(163, 255, 18, 0.4);
}

.policy-back-link::before {
    content: '← ';
    margin-right: 5px;
}

.policy-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #E0E0E0;
    text-align: center;
}

.policy-footer p {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.policy-footer .company-info {
    color: #1C1C3C;
    font-weight: 600;
    margin-bottom: 5px;
}

.policy-navigation {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.policy-nav-link {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.8);
    color: #1C1C3C;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.policy-nav-link:hover {
    background: linear-gradient(135deg, #A3FF12 0%, #63F8F0 100%);
    color: #1C1C3C;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(163, 255, 18, 0.3);
}

.policy-nav-link.active {
    background: linear-gradient(135deg, #FFA3C3 0%, #FF6B6B 100%);
    color: #FFFFFF;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .policy-page {
        padding: 100px 0 60px;
    }
    
    .policy-container {
        padding: 0 15px;
    }
    
    .policy-content {
        padding: 40px 30px;
        border-radius: 15px;
    }
    
    .policy-title {
        font-size: 2rem;
    }
    
    .policy-subtitle {
        font-size: 1.1rem;
    }
    
    .policy-section h2 {
        font-size: 1.5rem;
    }
    
    .policy-section h3 {
        font-size: 1.3rem;
    }
    
    .policy-section h4 {
        font-size: 1.1rem;
    }
    
    .policy-contact {
        padding: 30px 20px;
    }
    
    .policy-navigation {
        flex-direction: column;
        align-items: center;
    }
    
    .policy-nav-link {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .policy-table {
        font-size: 0.9rem;
    }
    
    .policy-table th,
    .policy-table td {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .policy-content {
        padding: 30px 20px;
    }
    
    .policy-title {
        font-size: 1.8rem;
    }
    
    .policy-section h2 {
        font-size: 1.4rem;
    }
    
    .policy-section h3 {
        font-size: 1.2rem;
    }
    
    .policy-section p,
    .policy-section li {
        font-size: 0.95rem;
    }
    
    .policy-contact {
        padding: 25px 15px;
    }
    
    .policy-contact h3 {
        font-size: 1.3rem;
    }
    
    .policy-contact p {
        font-size: 1rem;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.policy-content {
    animation: fadeInUp 0.6s ease-out;
}

.policy-section {
    animation: fadeInUp 0.8s ease-out;
}

.policy-section:nth-child(even) {
    animation-delay: 0.1s;
}

.policy-section:nth-child(odd) {
    animation-delay: 0.2s;
}

/* ===== PRINT STYLES ===== */
@media print {
    .policy-page {
        background: white;
        padding: 20px 0;
    }
    
    .policy-content {
        background: white;
        box-shadow: none;
        border: 1px solid #ccc;
    }
    
    .policy-back-link,
    .policy-navigation {
        display: none;
    }
    
    .policy-contact {
        background: #f5f5f5;
        color: #333;
    }
    
    .policy-contact h3,
    .policy-contact p {
        color: #333;
    }
    
    .policy-highlight,
    .policy-warning,
    .policy-info {
        border: 1px solid #ccc;
        background: #f9f9f9;
    }
} 