:root {
    --primary: #221F1F;
    --accent: #00B5CF;

    --background: #FFFFFF;
    --background-light: #F7F9FA;

    --border: #DDE3E7;

    --text: #221F1F;
    --text-light: #5D666F;

    --radius: 10px;
    --shadow: 0 4px 16px rgba(0,0,0,.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "DM Sans", sans-serif;
}

body {
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

/* Layout */
.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

/* NAV */
.nav {
    border-bottom: 1px solid var(--border);
    background: white;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.logo img {
    height: 60px;
    width: auto;
    display: block;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.links a {
    margin-left: 20px;
    text-decoration: none;
    color: var(--text-light);
    font-size: 14px;
}

.links a:hover {
    color: var(--primary);
}

/* HERO */
.hero {
    padding: 80px 0 80px;
    text-align: center;
}

.hero h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 16px;
    position: relative;
    text-align: center;
}

.hero h1::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: var(--accent);
    margin-top: 16px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
}

.hero p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* SECTION */
.section {
    padding: 30px 0;
}

.section h2 {
    font-size: 26px;
    margin-bottom: 20px;
    position: relative;
    text-align: center;
}

.section h2::before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 3px;
    background: var(--accent);
    margin-right: 10px;
    transform: translateY(-4px);
}
.section h2::after {
    content: "";
    display: inline-block;
    width: 30px;
    height: 3px;
    background: var(--accent);
    margin-left: 10px;
    transform: translateY(-4px);
}

.section-text {
    color: var(--text-light);
    /* max-width: 600px; */
    text-align: center;
}

#contact {
    text-align: center;
}


/* CARDS */
.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    background: white;
    transition: all 0.2s ease;
}

.card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.card h3 {
    margin-bottom: 10px;
    font-size: 16px;
}

/* Buttons */

.button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 16px;
    border-radius: 8px;
    background: var(--accent);
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    font-family: inherit;

    border: none;

}

.button:hover {
    opacity: 0.9;
}

/* CONTACT PAGE */

.contact-container {
    max-width: 750px;
}

.contact-form {
    margin-top: 40px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group label span {
    color: var(--accent);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;

    padding: 14px 16px;

    border: 1px solid var(--border);
    border-radius: 8px;

    font-size: 16px;

    transition: border-color .2s ease;
}

.form-group textarea {
    resize: vertical;
    min-height: 180px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
}

/* .contact-form .button {
    margin-top: 10px;
} */

.addinfo {
    display: none;
}

/* THANKS PAGE */

.thanks.container {
    align-items: center;
    text-align: center;
}

.thanks-redirect {
    margin-top: 20px;
    margin-bottom: 10px;
}

/* FOOTER */
.footer {
    border-top: 1px solid var(--border);
    padding: 30px 0;
    color: var(--text-light);
    font-size: 13px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .cards {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 32px;
    }

    .nav-inner {
        justify-content: center;
    }

    .links {
        display: none;
    }

}