/* About Us Section Styling Starts  */
.about-section {
    padding: 10px 15px;
    font-family: 'Poppins', sans-serif;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-direction: column;
}

.about-content {
    flex: 1 1 45%;
}

/* .about-content p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 20px;
} */

.about-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #333333;
    margin-bottom: 1.5em;
    text-align: justify;
    letter-spacing: 0.5px;
    word-spacing: 2px;
    text-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
}

.about-image {
    flex: 1 1 45%;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 7px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: 0.4s;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: justify;
    }

    .about-content h2 {
        font-size: 2rem;
    }

    .about-content p {
        font-size: 1rem;
    }
}

/* About Content Section */
.about-content {
    margin: 40px auto;
    padding: 20px;
}

.about-content p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #333;
    text-align: justify;
}

.about-content p:first-letter {
    font-size: 2em;
    font-weight: bold;
    color: #d35400;
}

@media (max-width: 768px) {
    .about-content {
        padding: 15px;
    }
    .about-content p {
        font-size: 1em;
    }
}

/* About Us Section Styling Ends */

/* Hero Section */
.hero {
    padding: 80px 0; /* Default padding for larger screens */
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://i.pinimg.com/originals/77/76/cf/7776cf4e23c039b4d79fc3481f97a8d4.jpg');
    background-size: cover;
    text-align: center;
    color: white;
}

.hero h1 {
    /* font-size: 2.8rem;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); */

    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    text-shadow: 2px 2px 5px var(--dark);
    font-family: "Mozilla Headline", sans-serif;
}
/* 
.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: #f8f5f0;
} */

@media (max-width: 768px) {
    .hero {
        padding: 40px 0; /* Reduced padding for smaller screens to control height */
    }

    .hero h1 {
        font-size: 2em; /* Adjust font size for smaller screens */
    }

    .hero p {
        font-size: 1em; /* Adjust font size for smaller screens */
        padding: 0 10px; /* Adjust padding for smaller screens */
    }

    .about-section {
        padding: 0px;
    }
}