/* Reset & Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* About Section */
.about-section {
    background: linear-gradient(to bottom, #f0f8ff, #ffffff);
    text-align: center;
    padding: 60px 20px;
}
.about-section h1 {
    font-size: 2.5rem;
    font-weight: bold;
}
.about-section .highlight {
    color: #007bff;
}
.about-section p {
    margin-top: 10px;
    color: #555;
    font-size: 1.1rem;
}

    body {
        margin: 0;
        font-family: Arial, sans-serif;
        background: #f9f9f9;
    }

    .story-section {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 30px;
        padding: 40px;
        max-width: 1200px;
        margin: auto;
        flex-wrap: wrap; /* for mobile wrapping */
    }

    .story-text {
        flex: 1 1 400px;
    }

    .story-text h2 {
        font-size: 2rem;
        font-weight: bold;
        margin-bottom: 20px;
    }

    .story-text p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 15px;
        color: #333;
    }

    .story-image {
        flex: 1 1 400px;
    }

    .story-image img {
        width: 100%;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .story-section {
            flex-direction: column;
            text-align: center;
            padding: 20px;
        }

        .story-text h2 {
            font-size: 1.8rem;
        }

        .story-text p {
            font-size: 0.95rem;
        }
    }

    @media (max-width: 480px) {
        .story-text h2 {
            font-size: 1.5rem;
        }

        .story-text p {
            font-size: 0.9rem;
        }
    }

    body {
        font-family: Arial, sans-serif;
        margin: 0;
        background-color: #fafafa;
        color: #333;
    }

    .container {
        max-width: 1200px;
        margin: auto;
        padding: 40px 20px;
    }

    h2 {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 10px;
    }

    p.subtitle {
        text-align: center;
        color: #666;
        font-size: 1.1rem;
        margin-bottom: 40px;
    }

    .values-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }

    .value-card {
        background: white;
        padding: 25px;
        border-radius: 10px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        text-align: left;
        transition: transform 0.2s ease;
    }

    .value-card:hover {
        transform: translateY(-5px);
    }

    .value-icon {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .value-card h3 {
        margin: 0 0 10px;
        font-size: 1.2rem;
    }

    .value-card p {
        margin: 0;
        color: #555;
        font-size: 1rem;
        line-height: 1.5;
    }

    @media (max-width: 480px) {
        h2 {
            font-size: 2rem;
        }
        .value-card {
            padding: 20px;
        }
    }

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

    body {
        font-family: Arial, sans-serif;
        line-height: 1.6;
    }

    /* Top Section */
    .cta-section {
        background: #18232d;
        color: white;
        text-align: center;
        padding: 50px 20px;
    }

    .cta-section h1 {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .cta-section p {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .cta-buttons {
        display: flex;
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
    }

    .cta-buttons a {
        padding: 10px 20px;
        border-radius: 6px;
        text-decoration: none;
        font-weight: bold;
        transition: 0.3s;
    }

    .btn-primary {
        background: white;
        color: #000;
        border: none;
    }

    .btn-outline {
        border: 2px solid white;
        color: white;
        background: transparent;
    }

    .btn-outline:hover {
        background: white;
        color: #000;
    }

    /* Footer */
    footer {
        background: #f8f8f8;
        padding: 40px 20px;
    }

    .footer-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 20px;
        max-width: 1200px;
        margin: auto;
    }

    .footer-logo {
        flex: 1 1 200px;
    }

    .footer-logo img {
        width: 50px;
        height: auto;
        margin-bottom: 10px;
    }

    .footer-section {
        flex: 1 1 150px;
    }

    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .footer-section ul {
        list-style: none;
    }

    .footer-section ul li {
        margin-bottom: 8px;
    }

    .footer-section ul li a {
        text-decoration: none;
        color: #000;
        font-size: 0.95rem;
    }

    .footer-section ul li a:hover {
        text-decoration: underline;
    }

    .social-icons {
        display: flex;
        gap: 10px;
        margin-top: 10px;
    }

    .social-icons a {
        font-size: 1.2rem;
        color: #000;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .cta-section h1 {
            font-size: 1.5rem;
        }

        .cta-section p {
            font-size: 1rem;
        }

        .footer-container {
            flex-direction: column;
            text-align: center;
        }

        .footer-section {
            margin-top: 20px;
        }

        .social-icons {
            justify-content: center;
        }
    }