/* Policy and Contact Page Styles */

.policy-container,
.contact-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.contact-container {
    max-width: 800px;
}

.policy-container h1,
.contact-container h1 {
    color: #2c3e50;
    border-bottom: 3px solid #3498db;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.policy-container h2,
.contact-container h2 {
    color: #34495e;
    margin-top: 35px;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.contact-container h2 {
    margin-top: 30px;
    font-size: 1.4rem;
}

.policy-container h3 {
    color: #555;
    margin-top: 25px;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.policy-container p,
.policy-container ul,
.contact-container p {
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
}

.policy-container ul {
    padding-left: 25px;
}

.policy-container li {
    margin-bottom: 8px;
}

.policy-container a,
.contact-container a {
    color: #3498db;
    text-decoration: none;
}

.policy-container a:hover,
.contact-container a:hover {
    text-decoration: underline;
}

.back-link {
    display: inline-block;
    margin-bottom: 20px;
    padding: 10px 20px;
    background: #3498db;
    color: white !important;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.back-link:hover {
    background: #2980b9;
    text-decoration: none;
    color: white !important;
}

.last-updated {
    text-align: right;
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-top: 30px;
}

/* Contact Page Specific Styles */

.contact-info {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
    border-left: 4px solid #3498db;
}

.contact-info strong {
    color: #2c3e50;
    font-size: 1.1rem;
}

.contact-info a {
    color: #3498db;
    text-decoration: none;
    font-size: 1.1rem;
    word-break: break-all;
}

.notice-box {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.notice-box h3 {
    color: #856404;
    margin-top: 0;
    margin-bottom: 10px;
}

.notice-box ul {
    margin: 10px 0;
    padding-left: 25px;
    color: #856404;
}

.notice-box li {
    margin-bottom: 8px;
}

.support-topics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.topic-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s;
}

.topic-card:hover {
    border-color: #3498db;
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.2);
}

.topic-card h3 {
    color: #3498db;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.topic-card ul {
    padding-left: 20px;
    margin: 0;
    color: #555;
}

.topic-card li {
    margin-bottom: 5px;
    font-size: 0.95rem;
}

/* FAQ Styles */

details {
    margin-bottom: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

details summary {
    cursor: pointer;
    font-weight: bold;
    color: #2c3e50;
}

details p {
    margin-top: 10px;
    padding-left: 10px;
}

details a {
    color: #3498db;
}
