/*  Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins';
}

/* Panner section starts here */
.hero-section {
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

@media (max-width: 768px) {
    .hero-section {
        height: 70vh;
    }
    .hero-image img {
        height: 70vh;
    }
}

/* About us section starts here */
.about-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
    gap: 50px;
    flex-wrap: wrap;
    width: 100%;
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container img {
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.text-container {
    max-width: 600px;
    align-items: flex-start;
}

.heading h2 {
    font-size: 40px;
    color: #000;
    text-align: center;
    margin-top: 20px;
}

h2 span {
    color: #ffcc00;
    font-weight: bold;
}

.highlight {
    color: #ffcc00;
    font-weight: bold;
}

.text-container p {
    font-size: 20px;
    line-height: 1.6;
    color: #333;
}

@media (max-width: 768px) {
    .about-section {
        flex-direction: column;
        text-align: center;
    }
    .image-container img {
        width: 250px;
    }
}