* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: Arial, Helvetica, sans-serif;
            color: #222;
            background: #f8fafc;
            line-height: 1.6;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

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

        /* NAVBAR */

        .navbar {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: white;
            box-shadow: 0 2px 12px rgba(0,0,0,.08);
        }

        .nav-container {
            min-height: 75px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 25px;
            font-weight: 800;
            color: #123b63;
        }

        .logo span {
            color: #e69a23;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 30px;
            list-style: none;
        }

        .nav-menu a {
            font-size: 15px;
            font-weight: 600;
            color: #333;
        }

        .nav-menu a:hover,
        .nav-menu a.active {
            color: #e69a23;
        }

        .dropdown {
            position: relative;
        }

        .dropdown-menu {
            position: absolute;
            top: 30px;
            left: 0;
            min-width: 200px;
            background: white;
            padding: 10px 0;
            border-radius: 8px;
            box-shadow: 0 8px 25px rgba(0,0,0,.12);
            opacity: 0;
            visibility: hidden;
            transition: .3s;
            list-style: none;
        }

        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
        }

        .dropdown-menu a {
            display: block;
            padding: 9px 16px;
        }

        .dropdown-menu a:hover {
            background: #f5f5f5;
        }

        .menu-toggle {
            display: none;
            font-size: 28px;
            cursor: pointer;
        }

        /* HEADER */

        .page-header {
            padding: 80px 0;
            text-align: center;
            color: white;

            background:
                linear-gradient(rgba(9,48,82,.85), rgba(9,48,82,.85)),
                url("https://images.unsplash.com/photo-1551836022-d5d88e9218df?auto=format&fit=crop&w=1600&q=80")
                center/cover;
        }

        .page-header h1 {
            font-size: 43px;
            margin-bottom: 10px;
        }

        .page-header p {
            opacity: .9;
        }

        /* CONSULTATION */

        .consultation {
            padding: 75px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 45px;
        }

        .section-title h2 {
            color: #123b63;
            font-size: 31px;
            margin-bottom: 10px;
        }

        .section-title p {
            color: #777;
        }

        .consultation-grid {
            display: grid;
            grid-template-columns: repeat(3,1fr);
            gap: 25px;
        }

        .consult-card {
            background: white;
            padding: 35px 25px;
            text-align: center;
            border-radius: 12px;
            border: 1px solid #eee;
            box-shadow: 0 8px 25px rgba(0,0,0,.06);
            transition: .3s;
        }

        .consult-card:hover {
            transform: translateY(-7px);
            box-shadow: 0 15px 30px rgba(0,0,0,.1);
        }

        .consult-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 20px;
            border-radius: 50%;
            background: #eef5fb;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
        }

        .consult-card h3 {
            color: #123b63;
            font-size: 22px;
            margin-bottom: 10px;
        }

        .consult-card p {
            color: #777;
            font-size: 14px;
            margin-bottom: 22px;
        }

        .consult-btn {
            display: inline-block;
            padding: 11px 22px;
            background: #123b63;
            color: white;
            border-radius: 6px;
            font-weight: 600;
            transition: .3s;
        }

        .consult-btn:hover {
            background: #e69a23;
        }

        /* INFO */

        .info-box {
            margin-top: 50px;
            background: #123b63;
            color: white;
            border-radius: 12px;
            padding: 40px;
            text-align: center;
        }

        .info-box h3 {
            font-size: 25px;
            margin-bottom: 10px;
        }

        .info-box p {
            opacity: .9;
        }

        /* FOOTER */

        footer {
            background: #092c4c;
            color: white;
            padding: 50px 0 20px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 35px;
        }

        .footer-logo {
            font-size: 25px;
            font-weight: 800;
            margin-bottom: 15px;
        }

        .footer-logo span {
            color: #e69a23;
        }

        footer p {
            color: #c9d4df;
            font-size: 14px;
        }

        footer h4 {
            margin-bottom: 15px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 8px;
            color: #c9d4df;
            font-size: 14px;
        }

        .footer-links li:hover {
            color: #e69a23;
        }

        .copyright {
            border-top: 1px solid rgba(255,255,255,.1);
            padding-top: 20px;
            text-align: center;
            color: #aebdca;
            font-size: 13px;
        }

        @media(max-width: 800px) {

            .menu-toggle {
                display: block;
            }

            .nav-menu {
                display: none;
                position: absolute;
                top: 75px;
                left: 0;
                width: 100%;
                background: white;
                flex-direction: column;
                align-items: flex-start;
                padding: 20px;
            }

            .nav-menu.active {
                display: flex;
            }

            .dropdown-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                box-shadow: none;
                padding-left: 15px;
            }

            .consultation-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .page-header h1 {
                font-size: 32px;
            }

        }
