:root {
    --gsmg-green: #61BC74;
    --gsmg-dark: #071522;
    --gsmg-light: #f8f9fa;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    margin: 0;
    color: #222;
    background: #fff;
}

/* HERO */

.hero {
    background-color: #46325f;
    color: white;
    padding: 80px 0;
}

.hero-logo {
    max-width: 275px;
    width: 100%;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 20px;
}

.hero-text {
    font-size: 1.3rem;
    max-width: 700px;
}

@media (max-width: 991px) {

    .hero-logo {
        max-width: 250px;
        margin-bottom: 30px;
    }

    .hero-title {
        font-size: 2.5rem;
    }
}

/* BUTTONS */

.btn-gsmg {
    background: var(--gsmg-green);
    border: none;
    color: white;
    font-weight: 600;
}

.btn-gsmg:hover {
    background: #46325f;
    color: white;
}

/* SERVICES */

.services {
    background: white;
}

.services h2 {
    font-weight: 700;
}

.service-card {
    background: white;
    padding: 30px;
    height: 100%;
    border-radius: 12px;
    border-top: 5px solid var(--gsmg-green);
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
    transition: 0.25s;
}

.service-card:hover {
    transform: translateY(-4px);
}

.service-card h4 {
    color: var(--gsmg-dark);
    margin-bottom: 15px;
}

/* ABOUT */

.about-section {
    background-color: #46325f;
    color: white;
    padding: 80px 0;
}

.about-section h2 {
    margin-bottom: 30px;
    font-weight: 700;
}

/* CONTACT */

.contact-section {
    padding: 80px 0;
}

.contact-phone {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gsmg-green);
}

.form-control {
    padding: 12px;
}

/* FOOTER */

footer {
    background: var(--gsmg-dark);
    color: white;
    padding: 40px 0;
}

footer h5 {
    color: var(--gsmg-green);
}

.copyright {
    opacity: 0.7;
    margin-top: 20px;
}

/* MOBILE */

@media (max-width: 768px) {

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-logo {
        max-width: 220px;
    }

    .hero-text {
        font-size: 1.1rem;
    }
}

.honeypot {
    display: none;
}