/* About Page Styles */
:root {
    --primary-color: #2a7ae2;
    --secondary-color: #21c8f6;
    --background-color: #f8f9fb;
    --card-bg: #fff;
    --text-color: #222;
    --secondary-text: #555;
}

body {
    font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
    background: var(--background-color, #f8f9fb);
    color: var(--text-color, #222);
}

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

/* Hero Section */
.about-hero {
    background: linear-gradient(135deg, var(--primary-color, #2a7ae2), var(--secondary-color, #21c8f6));
    color: #fff;
    padding: 4rem 2rem 3rem 2rem;
    text-align: center;
    border-radius: 1rem;
    margin: 2rem 0 3rem 0;
    box-shadow: 0 4px 24px rgba(42, 122, 226, 0.08);
}
.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -1px;
}
.hero-content p {
    font-size: 1.25rem;
    opacity: 0.95;
    font-weight: 400;
}

/* Section Base */
.about-section {
    margin: 3rem 0;
    padding: 2.5rem 2rem;
    background: var(--card-bg, #fff);
    border-radius: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
}
.about-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color, #2a7ae2);
    font-size: 2.2rem;
    font-weight: 600;
}

/* Mission Section */
.mission .section-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.mission .icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--primary-color, #2a7ae2);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem auto;
    font-size: 2.5rem;
    box-shadow: 0 2px 8px rgba(42, 122, 226, 0.12);
}
.mission p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--secondary-text, #555);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 2rem;
}
.feature-card {
    background: var(--background-color, #f8f9fb);
    border-radius: 0.75rem;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(42, 122, 226, 0.07);
    transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 6px 24px rgba(42, 122, 226, 0.13);
}
.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color, #2a7ae2);
    margin-bottom: 1rem;
}
.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color, #2a7ae2);
    font-size: 1.35rem;
    font-weight: 600;
}
.feature-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
    margin: 0 auto;
    max-width: 260px;
}
.feature-card li {
    margin: 0.5rem 0;
    color: var(--secondary-text, #555);
    position: relative;
    padding-left: 1.5rem;
    font-size: 1rem;
}
.feature-card li::before {
    content: "\2713";
    color: var(--primary-color, #2a7ae2);
    position: absolute;
    left: 0;
    font-size: 1.1rem;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}
.benefit-card {
    background: var(--background-color, #f8f9fb);
    border-radius: 0.75rem;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(42, 122, 226, 0.07);
    transition: transform 0.2s, box-shadow 0.2s;
}
.benefit-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 6px 24px rgba(42, 122, 226, 0.13);
}
.benefit-card i {
    font-size: 2rem;
    color: var(--primary-color, #2a7ae2);
    margin-bottom: 1rem;
}
.benefit-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color, #2a7ae2);
    font-size: 1.15rem;
    font-weight: 600;
}
.benefit-card p {
    color: var(--secondary-text, #555);
    font-size: 1rem;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}
.contact-card {
    background: var(--background-color, #f8f9fb);
    border-radius: 0.75rem;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(42, 122, 226, 0.07);
    transition: transform 0.2s, box-shadow 0.2s;
}
.contact-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 6px 24px rgba(42, 122, 226, 0.13);
}
.contact-card i {
    font-size: 2rem;
    color: var(--primary-color, #2a7ae2);
    margin-bottom: 1rem;
}
.contact-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color, #2a7ae2);
    font-size: 1.15rem;
    font-weight: 600;
}
.contact-card p {
    color: var(--secondary-text, #555);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Feedback Section */
.contact-form-section {
    background: var(--card-bg, #fff);
    padding: 3rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
    margin: 4rem auto 2rem auto;
    max-width: 900px;
}
.contact-form-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color, #2a7ae2);
    font-weight: 600;
}
.contact-form-section p {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: var(--secondary-text, #555);
}
.google-form-container {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 0.5rem;
    overflow: hidden;
    background: #f4f7fa;
}
.google-form-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 0.5rem;
}

/* Contact Form Styles */
.contact-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    background: var(--background-color, #f8f9fb);
    padding: 2rem 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(42, 122, 226, 0.07);
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.contact-form label {
    font-weight: 500;
    color: var(--primary-color, #2a7ae2);
    margin-bottom: 0.25rem;
}
.contact-form input,
.contact-form textarea {
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    background: #fff;
    color: var(--text-color, #222);
    transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color, #2a7ae2);
    outline: none;
}
.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}
.btn.btn-primary {
    background: var(--primary-color, #2a7ae2);
    color: #fff;
    border: none;
    border-radius: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    box-shadow: 0 2px 8px rgba(42, 122, 226, 0.07);
}
.btn.btn-primary:hover {
    background: var(--secondary-color, #21c8f6);
}
@media (max-width: 600px) {
    .contact-form {
        padding: 1rem 0.5rem;
    }
}

/* Sitemap List Styles */
.sitemap-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 700px;
    font-size: 1.1rem;
}
.sitemap-list > li {
    margin-bottom: 1.2rem;
}
.sitemap-list a {
    color: var(--primary-color, #2a7ae2);
    text-decoration: none;
    transition: color 0.2s;
}
.sitemap-list a:hover {
    color: var(--secondary-color, #21c8f6);
    text-decoration: underline;
}
.sitemap-list ul {
    margin-top: 0.5rem;
    margin-left: 1.5rem;
    list-style: disc;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-container {
        padding: 0 0.5rem;
    }
    .about-section {
        padding: 2rem 0.5rem;
    }
}
@media (max-width: 768px) {
    .about-hero {
        padding: 2.5rem 0.5rem 2rem 0.5rem;
        margin: 1rem 0 2rem 0;
        border-radius: 0.5rem;
    }
    .hero-content h1 {
        font-size: 2.1rem;
    }
    .about-section {
        padding: 1.5rem 0.5rem;
        margin: 2rem 0;
    }
    .features-grid,
    .benefits-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .feature-card,
    .benefit-card,
    .contact-card {
        padding: 1.25rem 0.75rem;
    }
    .mission .icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    .contact-form-section {
        padding: 1.5rem 0.5rem;
        margin: 2rem auto 1rem auto;
    }
    .google-form-container {
        height: 400px;
    }
}
@media (max-width: 480px) {
    .about-hero {
        padding: 1.2rem 0.2rem 1rem 0.2rem;
        margin: 0.5rem 0 1rem 0;
    }
    .hero-content h1 {
        font-size: 1.3rem;
    }
    .about-section {
        padding: 1rem 0.2rem;
        margin: 1rem 0;
    }
    .mission .icon-wrapper {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .contact-form-section {
        padding: 1rem 0.2rem;
        margin: 1rem auto 0.5rem auto;
    }
    .google-form-container {
        height: 250px;
    }
} 