* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
section {
    scroll-margin-top: 95px;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #24332f;
    background-color: #f5f7f6;
}
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;

    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 22px 10%;

    background-color: rgba(231, 239, 236, 0.96);
    backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.logo {
    color: #24332f;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
}

.nav-links a {
    color: #24332f;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
}

.nav-links a:hover {
    color: #4f8174;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 130px 10% 60px;
    background-color: #e7efec;
}

.hero-content {
    max-width: 700px;
}

.hero-label {
    margin: 0 0 20px 0;
    color: #4f8174;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 3px;
}

.hero h1 {
    margin: 0;
    color: #24332f;
    font-size: 72px;
    line-height: 1.05;
}

.hero-text {
    max-width: 560px;
    margin: 30px 0;
    font-size: 22px;
    line-height: 1.6;
}

.hero-button {
    display: inline-block;
    padding: 16px 28px;
    color: #ffffff;
    background-color: #4f8174;
    text-decoration: none;
    font-size: 17px;
    font-weight: bold;
    border-radius: 6px;
	
}.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 500px;
    max-width: 100%;
    aspect-ratio: 4 / 5;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #d2e1dc;
    color: #4f8174;
    font-size: 20px;
    font-weight: bold;
    border-radius: 24px;
}
.hero-photo {
    width: 500px;
    max-width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 24px;
}
.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 9px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    margin: 5px 0;
    background-color: #24332f;
    border-radius: 3px;
}
.about {
    padding: 90px 10%;
    background-color: #ffffff;
}

.about-content {
	max-width: 760px;
	margin: 0 auto;
	text-align: center;
}

.section-label {
	margin: 0 0 18px;
	color: #4f8174;
	font-size: 14px;
	font-weight: bold;
	letter-spacing: 3px;
}

.about h2 {
	margin: 0 0 30px;
	color: #24332f;
	font-size: 44px;
	line-height: 1.15;
}

.about p {
	margin: 0 auto 18px;
	max-width: 760px;
	font-size: 19px;
	line-height: 1.7;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.team-card {
    padding: 28px;
    text-align: left;
    background-color: #f5f7f6;
    border-radius: 20px;
}

.team-initials {
    width: 96px;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;

    color: #ffffff;
    background-color: #4f8174;

    font-size: 30px;
    font-weight: bold;
    letter-spacing: 2px;

    border-radius: 50%;
}

.team-card h3 {
    margin: 0 0 8px;
    color: #24332f;
    font-size: 26px;
}

.team-role {
    margin: 0 0 18px;
    color: #4f8174;
    font-weight: bold;
}

.team-card p {
    margin: 0;
    font-size: 17px;
    line-height: 1.6;
}
.services {
    padding: 110px 10%;
    background-color: #f5f7f6;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 60px;
    text-align: center;
}

.section-heading h2 {
    margin: 0 0 22px;
    color: #24332f;
    font-size: 44px;
    line-height: 1.15;
}

.section-heading > p:last-child {
    margin: 0;
    font-size: 19px;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    padding: 34px;
    background-color: #ffffff;
    border-radius: 20px;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(36, 51, 47, 0.10);
}

.service-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
    color: #ffffff;
    background-color: #4f8174;
    font-size: 15px;
    font-weight: bold;
    border-radius: 50%;
}

.service-card h3 {
    margin: 0 0 16px;
    color: #24332f;
    font-size: 23px;
    line-height: 1.25;
}

.service-card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
}
.why-us {
    padding: 110px 10%;
    background-color: #ffffff;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-card {
    padding: 34px;
    background-color: #eef4f2;
    border-radius: 20px;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(36, 51, 47, 0.10);
}

.why-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #ffffff;
    background-color: #4f8174;
    font-size: 24px;
    font-weight: bold;
    border-radius: 50%;
}

.why-icon-text {
    font-size: 15px;
    letter-spacing: 0.5px;
}

.why-card h3 {
    margin: 0 0 15px;
    color: #24332f;
    font-size: 22px;
    line-height: 1.25;
}

.why-card p {
    margin: 0;
    color: #24332f;
    font-size: 16px;
    line-height: 1.7;
}

.why-quote {
    max-width: 850px;
    margin: 65px auto 0;
    padding: 30px 40px;
    color: #24332f;
    background-color: #e7efec;
    border-left: 5px solid #4f8174;
    border-radius: 12px;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.5;
    text-align: center;
}

.region {
    padding: 110px 10%;
    background-color: #e7efec;
}

.region-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.region-text h2 {
    margin: 0 0 24px;
    color: #24332f;
    font-size: 44px;
    line-height: 1.15;
}

.region-text > p:last-child {
    margin: 0;
    font-size: 19px;
    line-height: 1.7;
}

.region-visual {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.region-map img {
    display: block;
    width: 100%;
    border-radius: 18px;
	max-height: 620px;
    box-shadow: 0 10px 30px rgba(36, 51, 47, 0.10);
}
.region-note {
    margin: 0;
    color: #60716c;
    font-size: 14px;
    line-height: 1.6;
}
.region-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.region-list span {
    padding: 18px 20px;
    background-color: #ffffff;
    border-radius: 12px;
    font-size: 17px;
    font-weight: bold;
}
.contact {
    padding: 110px 10%;
    background-color: #24332f;
    color: #ffffff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.contact .section-label {
    color: #9fc5b9;
}

.contact-text h2 {
    margin: 0 0 24px;
    color: #ffffff;
    font-size: 44px;
    line-height: 1.15;
}

.contact-text > p:last-child {
    margin: 0;
    max-width: 540px;
    font-size: 19px;
    line-height: 1.7;
}

.contact-actions {
    display: grid;
    gap: 18px;
}

.contact-card {
    display: block;
    padding: 24px;
    color: #24332f;
    background-color: #ffffff;
    text-decoration: none;
    border-radius: 16px;
    transition:
        transform 0.25s ease,
        background-color 0.25s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    background-color: #e7efec;
}

.contact-label {
    display: block;
    margin-bottom: 8px;
    color: #4f8174;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-card strong {
    font-size: 22px;
    overflow-wrap: anywhere;
}
.footer {
    padding: 60px 10% 28px;
    color: #dbe7e3;
    background-color: #18231f;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand {
    max-width: 440px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 18px;
    color: #ffffff;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
}

.footer-brand p,
.footer-contact p {
    margin: 0 0 18px;
    font-size: 16px;
    line-height: 1.7;
}

.footer-contact a {
    color: #ffffff;
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
}
.privacy-page {
    background-color: #f5f7f6;
}

.privacy-main {
    padding: 150px 10% 90px;
}

.privacy-content {
    max-width: 850px;
    margin: 0 auto;
    padding: 60px;
    background-color: #ffffff;
    border-radius: 20px;
}

.privacy-content h1 {
    margin: 0 0 12px;
    color: #24332f;
    font-size: 52px;
    line-height: 1.1;
}

.privacy-updated {
    margin: 0 0 50px;
    color: #60716c;
    font-size: 15px;
}

.privacy-content h2 {
    margin: 42px 0 14px;
    color: #24332f;
    font-size: 27px;
}

.privacy-content p,
.privacy-content li {
    font-size: 17px;
    line-height: 1.75;
}

.privacy-content ul {
    padding-left: 24px;
}

.privacy-content a {
    color: #4f8174;
}

.privacy-back {
    display: inline-block;
    margin-top: 35px;
    padding: 15px 24px;
    color: #ffffff !important;
    background-color: #4f8174;
    text-decoration: none;
    font-weight: bold;
    border-radius: 7px;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.footer-privacy {
    color: #ffffff;
    font-size: 14px;
    text-decoration: none;
}

.footer-privacy:hover {
    text-decoration: underline;
}
.contact-form-wrapper {
    max-width: 1200px;
    margin: 80px auto 0;
    padding: 50px;
    color: #24332f;
    background-color: #ffffff;
    border-radius: 22px;
}

.form-heading {
    max-width: 720px;
    margin-bottom: 40px;
}

.form-heading h3 {
    margin: 0 0 18px;
    font-size: 34px;
    line-height: 1.2;
}

.form-heading > p {
    font-size: 17px;
    line-height: 1.7;
}

.form-warning {
    padding: 16px 18px;
    background-color: #eef4f2;
    border-left: 4px solid #4f8174;
    border-radius: 6px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.form-field-full {
    grid-column: 1 / -1;
}

.form-field label {
    font-size: 15px;
    font-weight: bold;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 15px 16px;
    color: #24332f;
    background-color: #f5f7f6;
    border: 1px solid #cad7d3;
    border-radius: 8px;
    font: inherit;
}

.form-field textarea {
    resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: 3px solid rgba(79, 129, 116, 0.20);
    border-color: #4f8174;
}

.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 26px 0;
}

.form-consent input {
    width: 18px;
    height: 18px;
    margin-top: 3px;
}

.form-consent label {
    font-size: 15px;
    line-height: 1.6;
}

.form-consent a {
    color: #4f8174;
}

.form-submit {
    padding: 16px 28px;
    color: #ffffff;
    background-color: #4f8174;
    border: 0;
    border-radius: 7px;
    font-size: 17px;
    font-weight: bold;
    cursor: pointer;
}

.form-submit:hover {
    background-color: #3f6d61;
}
.thank-you-page {
    min-height: 100vh;
    background-color: #e7efec;
}

.thank-you-main {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 10% 70px;
}

.thank-you-card {
    max-width: 720px;
    padding: 60px;
    text-align: center;
    background-color: #ffffff;
    border-radius: 22px;
    box-shadow: 0 16px 45px rgba(36, 51, 47, 0.10);
}

.thank-you-icon {
    width: 76px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    color: #ffffff;
    background-color: #4f8174;
    font-size: 38px;
    font-weight: bold;
    border-radius: 50%;
}

.thank-you-card h1 {
    margin: 0 0 24px;
    color: #24332f;
    font-size: 48px;
    line-height: 1.15;
}

.thank-you-card > p {
    font-size: 19px;
    line-height: 1.7;
}

.thank-you-note {
    margin-top: 26px;
    padding: 22px;
    background-color: #f5f7f6;
    border-radius: 10px;
}

.thank-you-note p {
    margin: 0 0 12px;
    font-size: 17px;
    line-height: 1.6;
}

.thank-you-phone {
    display: inline-block;
    color: #4f8174;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
}

.thank-you-phone:hover {
    text-decoration: underline;
}

.thank-you-note a {
    color: #4f8174;
    font-weight: bold;
}
.form-error {
    margin: 0 0 28px;
    padding: 16px 18px;

    color: #7a2525;
    background-color: #fff1f1;

    border: 1px solid #e5b8b8;
    border-left: 5px solid #b84646;
    border-radius: 8px;

    font-size: 16px;
    font-weight: bold;
    line-height: 1.6;
}
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 900px) {

    .navbar {
		padding: 20px 8%;
	}

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 8px);
        left: 8%;
        right: 8%;
        z-index: 20;

        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;

        padding: 12px;
        background-color: #ffffff;
        border-radius: 12px;
        box-shadow: 0 12px 35px rgba(36, 51, 47, 0.15);
    }

    .nav-links a {
        padding: 14px 16px;
        border-radius: 8px;
    }

    .nav-links a:hover {
        background-color: #e7efec;
    }

    .navbar.menu-open .nav-links {
        display: flex;
    }

    .hero {
		flex-direction: column;
		min-height: auto;
		gap: 50px;
		padding: 120px 8% 70px;
	}

    .hero-content {
        width: 100%;
        max-width: 600px;
    }

    .hero h1 {
        font-size: 56px;
    }

    .hero-text {
        font-size: 20px;
    }

    .hero-image {
        width: 100%;
    }

    .hero-photo {
        width: 100%;
        max-width: 600px;
        aspect-ratio: 4 / 3;
    }

	.hero-image {
        width: 100%;
    }

    .hero-photo {
        width: 100%;
        max-width: 600px;
        aspect-ratio: 4 / 3;
    }
	.menu-toggle {
    display: block;
	}
	
	.about {
    padding: 110px 10%;
    background-color: #ffffff;
	}

	.about-content {
		max-width: 850px;
		margin: 0 auto;
		text-align: center;
	}

	.section-label {
		margin: 0 0 18px;
		color: #4f8174;
		font-size: 14px;
		font-weight: bold;
		letter-spacing: 3px;
	}

	.about h2 {
		margin: 0 0 30px;
		color: #24332f;
		font-size: 48px;
		line-height: 1.15;
	}

	.about p {
		margin: 0 auto 18px;
		max-width: 760px;
		font-size: 19px;
		line-height: 1.7;
	}
	.team-grid {
		grid-template-columns: 100%;
		max-width: 600px;
		margin: 50px auto 0;
	}
	.services {
		padding: 80px 8%;
	}

	.section-heading h2 {
		font-size: 40px;
	}

	.services-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.why-us {
		padding: 80px 8%;
	}

	.why-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.why-quote {
		margin-top: 50px;
		font-size: 22px;
	}

	.region {
		padding: 80px 8%;
	}

	.region-content {
		grid-template-columns: 100%;
		gap: 45px;
		max-width: 700px;
	}

	.region-text h2 {
		font-size: 40px;
	}

	.region-map img {
 	   display: block;
	    width: 100%;
	    border-radius: 18px;
		max-width: 700px;
	    box-shadow: 0 10px 30px rgba(36, 51, 47, 0.10);
	}

	.contact {
		padding: 80px 8%;
	}

	.contact-content {
		grid-template-columns: 100%;
		gap: 45px;
		max-width: 700px;
	}

	.contact-text h2 {
		font-size: 40px;
	}
	.footer {
		padding: 50px 8% 26px;
	}

	.footer-content {
		grid-template-columns: 100%;
		gap: 30px;
		max-width: 700px;
	}

	.footer-bottom {
		max-width: 700px;
	}
	.privacy-main {
		padding: 120px 8% 70px;
	}

	.privacy-content {
		padding: 45px;
	}

	.privacy-content h1 {
		font-size: 44px;
	}
	.contact-form-wrapper {
		margin-top: 60px;
		padding: 40px;
	}

	.form-grid {
		grid-template-columns: 100%;
	}

	.form-field-full {
		grid-column: auto;
	}
}
@media (max-width: 520px) {

	.hero {
		padding: 110px 24px 35px;
		gap: 40px;
	}

    .hero-label {
        font-size: 13px;
        letter-spacing: 2px;
    }

    .hero h1 {
        font-size: 44px;
    }

    .hero-text {
        font-size: 18px;
        line-height: 1.5;
    }

    .hero-button {
        width: 100%;
        text-align: center;
    }

    .hero-photo {
        aspect-ratio: 1 / 1;
    }
	
	.about {
        padding: 65px 24px;
    }

    .about h2 {
        font-size: 34px;
    }

    .about p {
        font-size: 17px;
    }
	.services {
		padding: 65px 24px;
	}

	.section-heading {
		margin-bottom: 40px;
	}

	.section-heading h2 {
		font-size: 34px;
	}

	.section-heading > p:last-child {
		font-size: 17px;
	}

	.services-grid {
		grid-template-columns: 100%;
	}

	.service-card {
		padding: 28px;
	}
	.why-us {
		padding: 65px 24px;
	}

	.why-grid {
		grid-template-columns: 100%;
	}

	.why-card {
		padding: 28px;
	}

	.why-quote {
		margin-top: 40px;
		padding: 24px 22px;
		font-size: 20px;
		text-align: left;
	}

	.region {
		padding: 65px 24px;
	}

	.region-text h2 {
		font-size: 34px;
	}

	.region-text > p:last-child {
		font-size: 17px;
	}

	.region-list {
		grid-template-columns: 100%;
	}

	.region-list span {
		padding: 16px 18px;
	}

	.region-map img {
 	   display: block;
	    width: 100%;
	    border-radius: 18px;
		max-width: 400px;
	    box-shadow: 0 10px 30px rgba(36, 51, 47, 0.10);
	}

	.contact {
		padding: 65px 24px;
	}

	.contact-text h2 {
		font-size: 34px;
	}

	.contact-text > p:last-child {
		font-size: 17px;
	}

	.contact-card {
		padding: 20px;
	}

	.contact-card strong {
		font-size: 18px;
	}
	.footer {
		padding: 45px 24px 24px;
	}

	.footer-brand p,
	.footer-contact p {
		font-size: 15px;
	}	
	.privacy-main {
		padding: 105px 20px 50px;
	}

	.privacy-content {
		padding: 30px 24px;
		border-radius: 14px;
	}

	.privacy-content h1 {
		font-size: 36px;
	}

	.privacy-content h2 {
		font-size: 23px;
	}

	.privacy-content p,
	.privacy-content li {
		font-size: 16px;
	}
	.footer-bottom {
		flex-direction: column;
	}
	.contact-form-wrapper {
		margin-top: 45px;
		padding: 28px 22px;
		border-radius: 16px;
	}

	.form-heading h3 {
		font-size: 28px;
	}

	.form-submit {
		width: 100%;
	}
	.thank-you-main {
		padding: 110px 20px 45px;
	}

	.thank-you-card {
		padding: 40px 24px;
	}

	.thank-you-card h1 {
		font-size: 36px;
	}

	.thank-you-card > p {
		font-size: 17px;
	}
}

.field-error {
    margin: 4px 0 0;
    padding: 10px 12px;
    color: #7a2525;
    background-color: #fff1f1;
    border-left: 4px solid #b84646;
    border-radius: 6px;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.5;
}

.form-field input[aria-invalid="true"] {
    border-color: #b84646;
    outline: 3px solid rgba(184, 70, 70, 0.15);
}
