/* -----------------------------------------------------
   Laetus Website – Global Styles
   Clean, minimalistic, green–gold theme
----------------------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Mallanna&display=swap');

body {
    font-family: 'Mallanna', sans-serif;
    margin: 0;
    padding: 0;
    background: #ffffff;
    color: #128050;
}

/* -----------------------------------------------------
   Header + Navigation
----------------------------------------------------- */

header {
    background: #ffffff;
    border-bottom: 2px solid #12805020;
    padding: 14px 28px;
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .logo {
    font-size: 26px;
    font-weight: bold;
    color: #128050;
    text-decoration: none;
}

nav a {
    margin-left: 22px;
    text-decoration: none;
    font-size: 18px;
    color: #128050;
    font-weight: 600;
}

nav a:hover {
    color: #b7882f;
}

/* -----------------------------------------------------
   Generic Sections
----------------------------------------------------- */

.section {
    padding: 60px 20px;
    max-width: 900px;
    margin: auto;
}

.section h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #128050;
}

.section h2 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #128050;
}

.section p {
    font-size: 18px;
    color: #444;
    line-height: 1.6;
}

/* Larger paragraph spacing for home page */
.section p.big {
    font-size: 22px;
    line-height: 1.8;
    color: #333;
}

/* -----------------------------------------------------
   Feature boxes and highlights
----------------------------------------------------- */

.feature-list p {
    font-size: 20px;
    margin: 14px 0;
}

.feature-list b {
    color: #128050;
}

.highlight-text {
    font-size: 22px;
    line-height: 1.4;
    color: #128050;
    margin-bottom: 20px;
}

/* -----------------------------------------------------
   Contact page boxes
----------------------------------------------------- */

.contact-box {
    margin-top: 30px;
    padding: 22px;
    border: 2px solid #12805030;
    border-radius: 10px;
}

.contact-item {
    margin-bottom: 20px;
}

.contact-label {
    font-size: 20px;
    font-weight: bold;
    color: #128050;
}

.contact-value {
    font-size: 18px;
    color: #333;
    margin-top: 6px;
}

a.email-link {
    color: #128050;
    font-weight: bold;
    text-decoration: none;
}

a.email-link:hover {
    text-decoration: underline;
}

/* -----------------------------------------------------
   Footer
----------------------------------------------------- */

footer {
    background: #128050;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

footer a {
    color: #ffffff;
    margin: 0 12px;
    text-decoration: none;
    font-weight: 600;
}

footer a:hover {
    color: #b7882f;
}

footer p {
    margin-top: 10px;
    font-size: 14px;
}

/* -----------------------------------------------------
   Responsive design
----------------------------------------------------- */

@media (max-width: 600px) {
    nav a {
        margin-left: 12px;
        font-size: 16px;
    }

    .section h1 {
        font-size: 30px;
    }

    .section h2 {
        font-size: 22px;
    }

    .section p,
    .contact-value,
    .contact-label {
        font-size: 17px;
    }

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