body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #fff;
}

.container {
    width: 90%;
    margin: 0 auto;
    padding: 0 1rem;
}

header {
    background: #333;
    color: #fff;
    padding: 1rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo img {
    width: 150px;
}

header nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    padding-right: 20px;
}

header nav ul li {
    margin: 0 1rem;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }

    header nav ul {
        flex-direction: column;
        align-items: flex-start;
    }

    header nav ul li {
        margin: 0.5rem 0;
    }
}

/* Hero Section */
#hero.hero-small {
    background: #333;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

/* Services Overview */
.services-list {
    padding: 2rem 10%;
}

.service-item {
    margin-bottom: 2rem;
}

.service-title {
    font-size: 1.75rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.service-description {
    font-size: 1rem;
    color: #666;
}

/* Call to Action Section */
#cta {
    background: #333;
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 2rem;
}

#cta h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

#cta p {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
}

.cta-buttons .btn {
    background: #ffcc00;
    color: #333;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin: 0 0.5rem;
    transition: background-color 0.3s ease;
}

.cta-buttons .btn:hover {
    background-color: #333;
    color: #ffcc00;
}

/* Footer */
footer {
    background: #024731;
    color: #fff;
    padding: 2rem 0;
}

.footer-top {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    margin: 1rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding: 1rem 0;
    border-top: 1px solid #ccc;
}

.footer-links,
.social-media {
    list-style: none;
    padding: 0;
}

.footer-links li,
.social-media li {
    display: inline;
    margin: 0 0.5rem;
}

.footer-links a,
.social-media a {
    color: #fff;
    text-decoration: none;
}

.footer-links a:hover,
.social-media a:hover {
    text-decoration: underline;
}
.contact-cards-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 2rem auto;
  max-width: 900px;
}

.contact-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 1.5rem 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  flex: 1 1 300px;
  max-width: 400px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.contact-card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.contact-card p {
  margin-top: 0;
  margin-bottom: 1.25rem;
  font-size: 1rem;
  color: #333;
}

.contact-card a {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #007acc;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  text-align: center;
}

.contact-card a:hover {
  background-color: #005fa3;
}
.back-home-container {
  text-align: center;
  margin-bottom: 2rem;
}

.cta-button {
  display: inline-block;
  background-color: #007acc;
  color: white;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.2s ease;
}

.cta-button:hover {
  background-color: #005f99;
}