/* Policy & Contact Pages - Clean Professional Design */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-yellow: #FFC107;
    --dark-yellow: #FFB300;
    --electric-blue: #00B4D8;
    --vibrant-orange: #FF6B35;
    --text-dark: #2C3E50;
    --text-medium: #5A6C7D;
    --text-light: #7A8C9D;
    --pure-white: #FFFFFF;
    --light-gray: #F8F9FA;
    --border-gray: #E0E0E0;
    --shadow: 0 2px 10px rgba(0,0,0,0.08);
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--pure-white);
    color: var(--text-dark);
    line-height: 1.8;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.simple-nav {
    background: var(--pure-white);
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--primary-yellow);
}

.simple-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 2rem;
}

.logo {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo::before {
    content: '⚡';
    font-size: 2rem;
}

.back-link {
    color: var(--electric-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.5rem 1.25rem;
    border: 2px solid var(--electric-blue);
    border-radius: 8px;
}

.back-link:hover {
    background: var(--electric-blue);
    color: white;
}

/* Policy Pages - Clean Design */

.policy-content,
.contact-content {
    padding: 6rem 0 4rem;
    min-height: calc(100vh - 200px);
}

.policy-content h1,
.contact-content h1 {
    font-size: 3rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-weight: 800;
}

.last-updated {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 3rem;
}

.page-intro {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 3rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

section {
    margin-bottom: 3rem;
}

section h2 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
    font-weight: 700;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-yellow);
}

section h3 {
    font-size: 1.35rem;
    margin: 1.75rem 0 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

section p {
    margin-bottom: 1.25rem;
    color: var(--text-medium);
    font-size: 1.05rem;
    line-height: 1.8;
}

section ul,
section ol {
    margin: 1rem 0 1.5rem 2rem;
    color: var(--text-medium);
}

section li {
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

strong {
    color: var(--text-dark);
    font-weight: 600;
}

.nav-links .active {
    color: var(--primary-yellow);
    font-weight: 700;
}

/* Contact Layout */
.contact-content h1 {
    text-align: center;
    margin-bottom: 1rem;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

/* Contact Form */
.contact-form-section h2,
.contact-info-section h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    font-weight: 700;
}

.contact-form {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.75rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-gray);
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--electric-blue);
    box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 1.25rem;
    background: linear-gradient(135deg, var(--electric-blue), var(--vibrant-orange));
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 4px 15px rgba(0, 180, 216, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 180, 216, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Contact Info Cards */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    display: flex;
    gap: 1.25rem;
    padding: 1.75rem;
    background: var(--light-gray);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.contact-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-yellow), var(--vibrant-orange));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.contact-details h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.contact-details p {
    margin: 0;
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 1rem;
}

.contact-details .secondary {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
    font-style: italic;
}

/* Social Links */
.social-links-contact {
    margin-top: 1rem;
    padding: 1.75rem;
    background: var(--light-gray);
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
}

.social-links-contact h3 {
    font-size: 1.15rem;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
    font-weight: 700;
}

.social-icons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-icons a {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--electric-blue), var(--vibrant-orange));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.25rem;
}

.social-icons a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 180, 216, 0.4);
}

/* FAQ Section */
.faq-section {
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 3px solid var(--primary-yellow);
}

.faq-section h2 {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
    font-weight: 800;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
    border-left: 5px solid var(--electric-blue);
    box-shadow: var(--shadow);
}

.faq-item h3 {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.faq-item p {
    color: var(--text-medium);
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
}

/* Footer */
.simple-footer {
    background: var(--text-dark);
    color: white;
    text-align: center;
    padding: 2.5rem 0;
    margin-top: 5rem;
    border-top: 5px solid var(--primary-yellow);
}

.simple-footer p {
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 968px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .policy-content h1,
    .contact-content h1 {
        font-size: 2.25rem;
    }

    section {
        padding: 1.5rem;
    }

    section h2 {
        font-size: 1.5rem;
    }

    .contact-form {
        padding: 1.75rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .simple-nav .container {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .back-link {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .policy-content,
    .contact-content {
        padding: 2rem 0;
    }

    .policy-content h1,
    .contact-content h1 {
        font-size: 1.75rem;
    }

    section ul,
    section ol {
        margin-left: 1.5rem;
    }

    .contact-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
    }

    .logo {
        font-size: 1.5rem;
    }
}