/* Privacy Agreement Styles */

.privacy-wrapper {
    background: #f0fff6;
    min-height: 100vh;
    padding: 30px 0;
    font-family: 'Bricolage Grotesque', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.privacy-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin: 0 auto;
}

.logo {
    max-height: 60px;
    width: auto;
    background: transparent;
}

.privacy-title {
    color: #131c2d;
    font-weight: 600;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.privacy-subtitle {
    color: #131c2d;
    opacity: 0.7;
    font-size: 1rem;
    margin-bottom: 0;
}

.agreement-content {
    margin: 30px 0;
    line-height: 1.6;
    color: #131c2d;
}

.agreement-content h3 {
    color: #131c2d;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 25px 0 15px 0;
    border-bottom: 2px solid #f3f4f6;
    padding-bottom: 8px;
}

.agreement-content h4 {
    color: #131c2d;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 20px 0 10px 0;
}

.agreement-content p {
    margin-bottom: 15px;
    text-align: justify;
}

.agreement-content ul {
    margin: 15px 0 20px 20px;
    padding-left: 0;
}

.agreement-content li {
    margin-bottom: 8px;
    list-style-type: disc;
}

.contact-info {
    background: #f9fafb;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #374151;
    margin: 20px 0;
}

.contact-info p {
    margin-bottom: 8px;
}

.important-notice {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 8px;
    padding: 20px;
    margin: 25px 0;
}

.important-notice p {
    margin: 0;
    color: #92400e;
    font-weight: 500;
}

.privacy-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #e5e7eb;
}

.btn {
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    min-width: 140px;
}

.btn-primary {
    background: #2f4059;
    color: white;
}

.btn-primary:hover {
    background: #1f2937;
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(47, 64, 89, 0.3);
}

.btn-secondary {
    background: #f3f4f6;
    color: #131c2d;
    border: 1px solid #d1d5db;
}

.btn-secondary:hover {
    background: #e5e7eb;
    color: #131c2d;
    text-decoration: none;
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-wrapper {
        padding: 20px 10px;
    }
    
    .privacy-card {
        padding: 25px 20px;
        border-radius: 12px;
    }
    
    .privacy-title {
        font-size: 1.5rem;
    }
    
    .privacy-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .agreement-content {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .privacy-card {
        padding: 20px 15px;
    }
    
    .privacy-title {
        font-size: 1.3rem;
    }
    
    .agreement-content h3 {
        font-size: 1.2rem;
    }
    
    .agreement-content h4 {
        font-size: 1rem;
    }
}