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

body {
  font-family: 'Source Sans 3', sans-serif;
  color: #111;
  line-height: 1.6;
  background: #fff;
  font-size: 1rem;
}

h1, h2{
  font-family: "League Spartan", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 2.5rem;
  line-height: 125%;
}

h2 {
    font-size: 2.5rem;
}

p {
    padding: 0 0 0.5rem 0;
}
p:last-child {
    padding: 0;
}


.container {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

/* Header */
.header {
  background: #0a1e3f;
  padding: 0 0;
  text-align: center;
}
.logo {
  width: 100px;

}

/* Hero */
.hero {
  color: #fff;
  text-align: center;
  padding: 0;
  background: #DD8204;
  background: radial-gradient(circle, rgba(221, 130, 4, 1) 0%, rgba(226, 139, 20, 1) 100%);
}
.hero h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.hero p {
  max-width: 600px;
  margin: 0 auto;
}

/* Sections */
.section {
  padding:  0;
}
.section:nth-of-type(odd) {
  background-color: #F4F4F4;
}

/* What we do */
.what-we-do {
  background: #fff;
  color: #111;
}
.what-we-do h2 {
  text-align: left;
  font-family: 'League Spartan', sans-serif;
  margin-bottom: 1rem;
}
.how-we-work {
    background: #F4F4F4;
}
/* Container for the entire service section */
.services {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Each service item */
.service {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Icon styles */
.service .icon {
  width: 48px;
  height: auto;
  flex-shrink: 0;
}

/* Text content */
.service h3 {
  font-family: 'League Spartan', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.service p {
  margin: 0;
}

/* Wrap heading + paragraph */
.service-text {
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .hero {
      padding: 2rem 0;
  }
  .services {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service {
    width: calc(50% - 1rem);
  }
}
/* Responsive: Stack vertically on narrow screens */
/* 
@media (max-width: 600px) {
  .service {
    flex-direction: column;
    align-items: flex-start;
  }

  .service .icon {
    margin-bottom: 0.5rem;
  }
}
*/


/*
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.service .icon {
  height: 48px;
  margin-bottom: 1rem;
}
.service h3 {
  font-family: 'League Spartan', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
} */

.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

input,
textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font: inherit;
}

button {
  background-color: #f29c2b;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font: inherit;
}

button:hover {
  background-color: #d5851f;
}


/* Footer */
.footer {
  text-align: center;
  background: #0a1e3f;
  color: #fff;
  padding: 1rem;
}
