html, body {
    margin: 0;
    padding: 0;
    font-family: serif;
    background-color: #f4f4f4;
}

header {
    height: 120px;
    background-color: #1E3E43;
    width: 100vw;
    display: flex;
    align-items: center;
}

header nav {
    width: 60%;
    margin: 0 auto;
    padding: 1rem;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #AF8C60;
    gap: 1rem;
}

header nav img {
    height: 100px;
}

header nav a {
    color: #AF8C60;
    text-decoration: none;
    font-size: 1.5rem;
    padding: 0.5rem;
    width: 180px;
    height: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 15px;
}

header nav a:hover {
    text-decoration: underline;
}

.header-cta {
    position: absolute;
    right: 0;
    top: 0;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-cta a {
    background-color: #AF8C60;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    padding: 0.5rem;
    margin: 1rem;
    width: 100px;
    height: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 15px;
    font-weight: bold;
}

.felipa-regular {
  font-family: "Felipa", serif;
  font-weight: 800;
  font-style: normal;
}

.hero {
    width: 100vw;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F4F0E9;
}

.hero h1 {
    font-size: 4rem;
    text-align: center;
    color: #1E3E43;
}

.services {
    width: 100vw;
    height: 700px;
    margin: 0 auto;
}

.services h2 {
    text-align: center;
    font-size: 3rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.service-cards {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
    height: 400px;
}

.service-card {
    width: 300px;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.service-separator {
    width: 1px;
    height: 80%;
    background-color: #ccc;
    margin: 2rem 0;
}

.why-choose-us {
    width: 100vw;
    height: 700px;
    margin: 0 auto;
    padding-top: 2rem;
    background-color: #E8E2D6;
}

.why-choose-us h2 {
    text-align: center;
    font-size: 3rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.why-choose-us p {
    text-align: center;
    font-size: 1.5rem;
    margin: 0 auto;
    width: 60%;
}

.why-choose-us span {
    display: block;
    text-align: center;
    font-size: 1.5rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    width:40%;
    margin: 0 auto;
    border-bottom: 1px solid #ccc;
}

.why-choose-us span label {
    font-weight: bold;
    color: #1E3E43;
    text-align: left;
    display: block;
}

.why-choose-us span p {
    text-align: left;
    font-size: 1.2rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    width: 70%;
    margin-left: 30%;
}

.testimonials {
    width: 100vw;
    height: 500px;
    margin: 0 auto;
    padding-top: 2rem;
}

.testimonials h2 {
    text-align: center;
    font-size: 3rem;
    margin-top: 2rem;
}

.testimonial-cards {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 2rem;
}

.testimonial-card {
    width: 300px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #E8E2D6;
    border-radius: 15px;
    padding: 1rem;
}

.testimonial-card p {
    text-align: center;
    font-size: 1.2rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    width: 70%;
}

.testimonial-author {
    font-weight: bold;
    color: #1E3E43;
    text-align: center;
    margin-top: 1rem;
}

.testimonial-date {
    font-size: 0.8rem;
    color: #ccc;
    text-align: center;
    margin-top: 0.5rem;
}

.testimonial-link {
    text-align: center;
    margin-top: 0.5rem;
}

.testimonial-viewall {
    text-align: center;
    margin-top: 1rem;
}

footer {
    width: 100vw;
    background-color: #1E3E43;
    display: grid;
    align-items: center;
    justify-content: center;
    color: #AF8C60;
}

.footer-links {
    display: block;
    width: 100%;
    text-align: left;
}

.footer-links a {
    color: #AF8C60;
    text-decoration: underline;
    padding: 0.5rem;
    display: list-item;
    text-align: left;
    border-radius: 15px;
}

footer p {
    text-align: center;
    font-size: 1rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}