/* css/style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.highlight {
    color: #6a11cb;
}

/* Header & Navigation */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: #6a11cb;
    line-height: 1;
}

.logo-tagline {
    font-size: 0.8rem;
    color: #777;
    margin-top: 5px;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-item {
    position: relative;
    margin-left: 30px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 10px 0;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

.nav-link:hover {
    color: #6a11cb;
}

.nav-link i {
    margin-left: 5px;
    font-size: 0.8rem;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    list-style: none;
    z-index: 100;
}

.dropdown-menu li {
    border-bottom: 1px solid #f1f1f1;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s;
}

.dropdown-menu a:hover {
    background-color: #f9f9f9;
    color: #6a11cb;
    padding-left: 25px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease;
    background-color: #333;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    min-height: 80vh;
    padding: 60px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.hero-content {
    flex: 1;
    padding-right: 50px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(to right, #6a11cb 0%, #2575fc 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(106, 17, 203, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #6a11cb;
    border: 2px solid #6a11cb;
}

.btn-secondary:hover {
    background-color: #6a11cb;
    color: white;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.image-placeholder i {
    color: white;
    font-size: 5rem;
    position: absolute;
    animation: float 6s ease-in-out infinite;
}

.image-placeholder i:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.image-placeholder i:nth-child(2) {
    top: 20%;
    right: 20%;
    animation-delay: 1.5s;
}

.image-placeholder i:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 3s;
}

.image-placeholder i:nth-child(4) {
    bottom: 20%;
    right: 20%;
    animation-delay: 4.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Services Preview */
.services-preview {
    padding: 80px 0;
    background-color: #fff;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: #666;
    max-width: 700px;
    margin: 0 auto 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(to right, #6a11cb 0%, #2575fc 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 1.8rem;
    color: white;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
}

.service-link {
    color: #6a11cb;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.service-link i {
    margin-left: 5px;
    transition: transform 0.3s;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* About Preview */
.about-preview {
    padding: 80px 0;
    background-color: #f5f7fa;
}

.about-preview .container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-content {
    flex: 1;
}

.about-content p {
    margin-bottom: 20px;
    color: #666;
}

.about-stats {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.stat {
    text-align: center;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.stat h3 {
    font-size: 2.5rem;
    color: #6a11cb;
    margin-bottom: 10px;
}

.stat p {
    color: #666;
    font-weight: 500;
}

/* Footer */
.footer {
    background-color: #222;
    color: #ccc;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3, .footer-col h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-col h3 {
    color: #6a11cb;
}

.footer-col p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #6a11cb;
}

.contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-info i {
    margin-right: 10px;
    color: #6a11cb;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #333;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: #6a11cb;
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
}




















/* Additional CSS for services.html and other pages */
.page-hero {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.page-hero .highlight {
    color: #ffd700;
}

.services-details {
    padding: 80px 0;
    background-color: #fff;
}

.service-detail {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
}

.service-detail:nth-child(even) {
    flex-direction: row-reverse;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #333;
}

.service-detail-content h3 {
    font-size: 1.4rem;
    margin: 25px 0 15px;
    color: #6a11cb;
}

.service-detail-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 30px;
}

.service-detail-content ul li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: #555;
}

.service-detail-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #6a11cb;
    font-weight: bold;
}

.service-detail-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.service-image {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-image i {
    font-size: 8rem;
    color: white;
}

.cta {
    padding: 80px 0;
    background-color: #f5f7fa;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.cta p {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 30px;
}

@media (max-width: 992px) {
    .service-detail,
    .service-detail:nth-child(even) {
        flex-direction: column;
    }
    
    .service-image {
        width: 300px;
        height: 300px;
        margin-top: 30px;
    }
    
    .service-image i {
        font-size: 6rem;
    }
}

@media (max-width: 576px) {
    .page-title {
        font-size: 2.2rem;
    }
    
    .service-detail-content h2 {
        font-size: 1.8rem;
    }
    
    .service-image {
        width: 250px;
        height: 250px;
    }
    
    .service-image i {
        font-size: 5rem;
    }
}




















/* Additional styles for all pages */

/* About Page Styles */
.about-story .container {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 80px 0;
}

.story-content {
    flex: 1;
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.story-content p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.8;
}

.story-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.story-img {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #2575fc 0%, #6a11cb 100%);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.story-img i {
    font-size: 8rem;
    color: white;
}

.mission-vision {
    background-color: #f5f7fa;
    padding: 80px 0;
}

.mission-vision .container {
    display: flex;
    gap: 60px;
    text-align: center;
}

.mission, .vision {
    flex: 1;
    padding: 40px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.mission-icon, .vision-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(to right, #6a11cb 0%, #2575fc 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.mission-icon i, .vision-icon i {
    font-size: 2rem;
    color: white;
}

.mission h3, .vision h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.mission p, .vision p {
    color: #666;
    line-height: 1.7;
}

.our-values {
    padding: 80px 0;
    background-color: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(to right, #6a11cb 0%, #2575fc 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 1.8rem;
    color: white;
}

.value-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

.our-team {
    padding: 80px 0;
    background-color: #f5f7fa;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-member {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.member-photo {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.member-photo i {
    font-size: 3rem;
    color: white;
}

.team-member h3 {
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.member-role {
    color: #6a11cb;
    font-weight: 500;
    margin-bottom: 15px;
}

.member-bio {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

.about-stats-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
}

.about-stats-section .container {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    color: white;
    margin-bottom: 10px;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Gallery Page Styles */
.gallery-filter {
    padding: 40px 0;
    background-color: #f5f7fa;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.filter-btn {
    padding: 10px 25px;
    background: white;
    border: 2px solid #ddd;
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn.active, .filter-btn:hover {
    background: linear-gradient(to right, #6a11cb 0%, #2575fc 100%);
    color: white;
    border-color: #6a11cb;
}

.gallery-grid {
    padding: 80px 0;
    background-color: white;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: translateY(-10px);
}

.gallery-image {
    height: 200px;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-image i {
    font-size: 4rem;
    color: white;
}

.gallery-info {
    padding: 20px;
    background-color: #f9f9f9;
}

.gallery-info h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.gallery-info p {
    color: #666;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.gallery-category {
    display: inline-block;
    padding: 5px 15px;
    background: #e6e6ff;
    color: #6a11cb;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.testimonials {
    padding: 80px 0;
    background-color: #f5f7fa;
}

.testimonial-slider {
    max-width: 800px;
    margin: 50px auto 0;
    position: relative;
}

.testimonial {
    display: none;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial.active {
    display: block;
}

.testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.client-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.client-info p {
    color: #777;
    font-size: 0.9rem;
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.testimonial-prev, .testimonial-next {
    background: #6a11cb;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.testimonial-prev:hover, .testimonial-next:hover {
    background: #2575fc;
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
    background-color: white;
}

.contact-wrapper {
    display: flex;
    gap: 60px;
}

.contact-form-container, .contact-info-container {
    flex: 1;
}

.contact-form-container h2, .contact-info-container h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.contact-form-container p, .contact-info-container p {
    color: #666;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border 0.3s;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: #6a11cb;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}

.submit-btn i {
    margin-right: 10px;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

.contact-info-details {
    margin-bottom: 40px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(to right, #6a11cb 0%, #2575fc 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 1.2rem;
}

.contact-text h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.contact-text p {
    color: #666;
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.contact-hours, .response-time {
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
}

.social-contact {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
}

.social-contact h3 {
    margin-bottom: 20px;
}

.social-contact .social-links {
    display: flex;
    gap: 15px;
}

.faq-section {
    padding: 80px 0;
    background-color: #f5f7fa;
}

.faq-container {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 500;
}

.faq-question i {
    color: #6a11cb;
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
}

.faq-item.active .faq-answer {
    padding: 0 30px 20px;
    max-height: 300px;
}

.faq-answer p {
    color: #666;
    line-height: 1.7;
}

.map-section {
    padding: 80px 0;
    background-color: white;
}

.map-container {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.map-placeholder {
    flex: 2;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    border-radius: 10px;
    padding: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.map-placeholder i {
    font-size: 5rem;
    margin-bottom: 20px;
}

.map-placeholder h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.map-placeholder p {
    margin-bottom: 10px;
    opacity: 0.9;
}

.map-placeholder p:last-child {
    margin-top: 20px;
    font-style: italic;
}

.map-placeholder p:last-child i {
    font-size: 0.9rem;
    margin-left: 5px;
}

.map-info {
    flex: 1;
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
}

.map-info h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.map-info ul {
    list-style: none;
}

.map-info ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.map-info ul li i {
    color: #6a11cb;
    margin-right: 10px;
    margin-top: 3px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta-buttons .btn i {
    margin-right: 10px;
}

/* Responsive styles for all pages */
@media (max-width: 992px) {
    .about-story .container,
    .mission-vision .container,
    .contact-wrapper {
        flex-direction: column;
    }
    
    .story-img {
        width: 300px;
        height: 300px;
    }
    
    .story-img i {
        font-size: 6rem;
    }
    
    .map-container {
        flex-direction: column;
    }
    
    .map-placeholder {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .filter-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 200px;
    }
    
    .testimonial-nav {
        position: static;
        transform: none;
        margin-top: 30px;
        justify-content: center;
        gap: 20px;
    }
    
    .about-stats-section .container {
        flex-direction: column;
        gap: 40px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .story-img {
        width: 250px;
        height: 250px;
    }
    
    .story-img i {
        font-size: 5rem;
    }
    
    .mission, .vision {
        padding: 30px 20px;
    }
    
    .grid {
        grid-template-columns: 1fr;
    }
    
    .faq-question {
        padding: 15px 20px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer, .faq-item.active .faq-answer {
        padding: 0 20px 15px;
    }
}