@font-face {
    font-family: "Inter";
    src: url("fonts/Inter-VariableFont_opsz,wght.ttf") format("truetype");
    font-weight: 100 900;
    font-style: normal;
}

@font-face {
    font-family: "Inter";
    src: url("fonts/Inter-Italic-VariableFont_opsz,wght.ttf") format("truetype");
    font-weight: 100 900;
    font-style: italic;
}
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    line-height: 1.6;
    color: #173b3f;
    background-color: #f7f4ed;
}
a {
    color: #173b3f;
    text-decoration: none;
}
a:hover {
    color: #0d2124;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.site-header {
    padding: 20px 0;
    background-color: #ffffff;
}

.header-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #173b3f;
    font-weight: bold;
    text-decoration: none;
}

.logo-mark {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    color: #ffffff;
    background-color: #298950;
}
.container {
    padding: 0 6%;
}

.navigation {
    display: flex;
    gap: 30px;
}

.navigation a {
    color: #173b3f;
    text-decoration: none;
}

.navigation a:hover,
.navigation a.active {
    color: #298950;
}
.hero {
    padding: 80px 0;
}

.hero-layout {
    display: flex;
    align-items: center;
    gap: 30px;
}
.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.2;
}
.hero-content {
    flex: 2;
}
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}
.hero-image img {
    max-width: 100%;
    display: block;
}
.hero-actions {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}
.button {
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}
.button:hover {
    transform: translateY(-2px);
    background-color: #3bc673;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.button-primary {
    color: #173b3f;
    background-color: #298950;
}

.button-secondary {
    color: #173b3f;
    background-color: #ffffff;
}
.features {
    padding: 80px 0;
}
.feature-grid{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}
.feature-card {
    color:#ffffff;
    background-color: #298950;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
}
.feature-card a {
    color: #b3ffe1;
}
.feature-card a:hover {
    color: #b3ffe1;
}
.feature-card h3 {
    font-size: 1.4rem;
}
.feature-card p {
    font-size: 1.1rem;
    line-height: 1.6;
}
.cta {
    background-color: #173b3f;
    color:#ffffff;
    padding: 80px 0;
}
.cta-actions {
    margin-top: 40px;
}
.site-footer {
    background-color: #173b3f;
    color: #ffffff;
    padding: 60px 0;
}
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.footer-navigation {
    display: flex;
    justify-content: space-evenly;
    width: 100%;
    gap: 24px;
    
}
.footer-navigation a {
    color: #ffffff;
    text-decoration: none;
}
.footer-navigation a:hover {
    color: #12e1cd;
}
.footer-copyright {
    font-size: 0.9rem;
    opacity: 0.8;
}
.about-story,
.about-vision,
.about-work {
    padding: 80px 0;
    color: #173b3f;
}

.about-story,
.about-work {
    background-color: #f7f4ed;
}

.about-vision {
    background-color: #ffffff;
}

.about-story p,
.about-vision p,
.about-work p {
    font-size: 1.3rem;
    font-weight: 400;
}

.about-vision h2,
.about-work h2 {
    font-size: 2.5rem;
    font-weight: 500;
}

.about-layout {
    display: flex;
    align-items: center;
    gap: 30px;
}

.about-content {
    flex: 3;
}

.about-content h1 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.about-image {
    flex: 2;
    display: flex;
    justify-content: center;
}

.about-image img {
    max-width: 100%;
    display: block;
}

.about-features {
    padding: 80px 0;
}
.about-grid{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}
.about-card {
    display: flex;
    flex-direction: column;
    color:#ffffff;
    background-color: #298950;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
}
.about-card h3 {
    font-size: 1.4rem;
}
.about-card p {
    font-size: 1.1rem;
    line-height: 1.6;
}
.about-card-content {
    flex: 1;
}
.about-card-image {
    flex: 1;
}
.about-card-image img {
    max-width: 100%;
}
.contact p {
    font-size: 1.4rem;
}
.contact a {
    font-size: 1.4rem;
    font-style: italic;
    color: #006671;
}
.contact-layout {
display: flex;
align-items: center;
gap: 60px;
}
.contact-content {
    flex: 1;
}
.container a {
    font-size: 1rem;
}
.container a:hover {
    color: #298950;
}
.contact-form {
    flex: 1;
    margin: 20px 0;
    padding: 32px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.form-group {
    display: flex;
    flex-direction: column;
    margin: 40px;
    gap: 8px;
}
.form-group input,
.form-group textarea {
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    padding: 16px;
    border: 2px solid #298950;
    border-radius: 12px;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border: 2px solid #173b3f;
    box-shadow:  0 0 8px rgba(41, 137, 80, 0.2);
}
.legal-page {
    padding: 80px 0;
}

.legal-page h2 {
    margin-top: 40px;
}

.legal-page p {
    line-height: 0.5;
}
@media (max-width: 768px) {
    .hero-layout {
        flex-direction: column;
    }
    .about-layout {
        flex-direction: column;
    }
    .feature-grid {
        grid-template-columns: 1fr;
    }
    .header-layout {
        flex-direction: column;
        gap: 20px;
    }
    .navigation {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
    .about-image img {
        max-width: 70%;
    }
    .about-grid {
        display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    }
    .contact-layout {
        flex-direction: column;
    }
}