/* General Body Styles */
body {
    font-family: 'Roboto', sans-serif; /* UPDATED FONT */
    background-color: #273F4F;
    color: #F6F6F6;
    margin: 0;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

/* Headings and Text */
h1, h2, h3 {
    font-family: 'Poppins', sans-serif; /* UPDATED FONT */
    font-weight: 700;
    color: #CFFFE2;
    text-shadow: none; /* REMOVED SHADOW FOR A CLEANER LOOK */
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
}

/* Hero Banner */
.hero-banner {
    background-color: #A2D5C6;
    color: #273F4F;
    padding: 60px 0;
    text-align: center;
}

.hero-banner .subheading {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

/* Call to Action Button */
.cta-button {
    font-family: 'Poppins', sans-serif; /* UPDATED FONT */
    background-color: #FE7743;
    color: #273F4F;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 1.2rem;
    border: 2px solid #273F4F;
    box-shadow: 4px 4px #273F4F;
    transition: all 0.2s ease;
    font-weight: 700;
}

.cta-button:hover {
    background-color: #FFB4B4;
    box-shadow: none;
    transform: translate(4px, 4px);
}

/* About Section */
.about-section {
    padding: 40px 0;
    text-align: center;
}

/* Services Section */
.services-section {
    background-color: #A2D5C6;
    color: #273F4F;
    padding: 40px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.service-card {
    background-color: #273F4F;
    color: #F6F6F6;
    padding: 20px;
    border: 2px solid #FE7743;
    text-align: center;
}

/* Why Choose Us Section */
.why-choose-us-section {
    padding: 40px 0;
    text-align: center;
}

.why-choose-us-section ul {
    list-style: none;
    padding: 0;
    font-size: 1.2rem;
}

.why-choose-us-section li {
    margin-bottom: 15px;
}

/* Contact Section */
.contact-section {
    background-color: #FFB4B4;
    padding: 40px 0;
}

.contact-section h2 {
    color: #273F4F;
}

form {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: 0 auto;
}

form input, form textarea {
    font-family: 'Roboto', sans-serif; /* UPDATED FONT */
    padding: 15px;
    margin-bottom: 15px;
    border: 2px solid #273F4F;
    background-color: #F6F6F6;
    font-size: 1rem;
}

/* Footer */
.footer {
    background-color: #273F4F;
    color: #A2D5C6;
    text-align: center;
    padding: 20px 0;
}

.footer .social-media a {
    color: #A2D5C6;
    margin: 0 10px;
    text-decoration: none;
    font-size: 1.2rem;
}

.footer .quote {
    font-style: italic;
    margin-top: 15px;
}

/* Reviews Section */
.reviews-section {
  background-color: #273F4F; /* Matches body background */
  padding: 40px 0;
  color: #CFFFE2; /* Matches your headings color */
  text-align: center;
}

.reviews-section h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #CFFFE2;
}

/* Center and constrain Elfsight widget width */
.elfsight-app-c5a7cf53-0caa-4aae-b098-0559079f2f6b {
  max-width: 1000px;
  margin: 0 auto;
}

/******************************************/
/* RESPONSIVE DESIGN              */
/* Styles for screens 768px wide or less  */
/******************************************/
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    h2 {
        font-size: 2rem;
    }
    .hero-banner .subheading {
        font-size: 1.2rem;
    }
    .hero-banner {
        padding: 40px 20px;
    }
    .container {
        width: 85%;
    }
    section {
        padding: 30px 0;
    }
}
