 :root {
            --bg: #1a1b1f;
            --highlight: #c56125;
            --text: #fff;
            --muted: #b5b5b5;
            --card: #24262b;
        }

        * {
            box-sizing: border-box;
        }

        body {
            margin: 0;
            font-family: "Lato", serif;
            font-weight: 300;
            background-color: var(--bg);
            color: var(--text);
            line-height: 1.6;
            
        }

        a {
            color: var(--highlight);
            text-decoration: none;
        }

        .container {
            width: 90%;
            max-width: 1000px;
            margin: auto;
        }

        /* HEADER */
        header {
            padding: 24px 0;
            /*border-bottom: 1px solid #2e3137;*/
        }

        header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        header img {
            height: 87px;
        }

        nav a {
            margin-left: 24px;
            font-weight: 200;
            color: var(--text);
        }

        nav a:hover {
            color: var(--highlight);
        }

        /* HERO */
        .hero {
            padding: 100px 0 80px;
            text-align: center;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            font-weight: 200;
        }

        .hero p {
            font-size: 1.25rem;
            color: var(--muted);
            max-width: 750px;
            margin: 0 auto 40px;
        }

        .btn-primary {
            background-color: var(--highlight);
            color: #fff;
            padding: 14px 34px;
            border-radius: 6px;
            font-weight: 700;
            display: inline-block;
        }

        .btn-primary:hover {
            opacity: 0.9;
        }

        /* SECTIONS */
        section {
            padding: 80px 0;
            background: #18191c;
            border: 10px solid #1e1f23;
            margin: 2em;

        }

        section h2 {
            text-align: center;
            font-size: 2.2rem;
            margin-bottom: 50px;
            font-weight: 200;
        }

        /* ABOUT */
        .about {
            max-width: 900px;
            margin: auto;
            text-align: center;
            color: var(--muted);
            font-size: 1.1rem;
        }

        /* SERVICES */
        .services {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 30px;
        }

        .card {
            background-color: var(--card);
            padding: 30px;
            border-radius: 10px;
            border: 1px solid #2f3238;
            text-align: center;
        }

        .card h3 {
            color: var(--highlight);
            margin-bottom: 15px;
        }

        .card p {
            color: var(--muted);
        }

        /* CONTACT */
        .contact {
            text-align: center;
            color: var(--muted);
        }

        .contact p {
            font-size: 1.1rem;
        }

        /* FOOTER */
        footer {
            padding: 30px 0;
            /* border-top: 1px solid #2e3137; */
            text-align: center;
            font-size: 0.9rem;
            color: var(--muted);
        }