* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, Helvetica, sans-serif;
        }

        body {
            background: #f7f9fc;
            color: #222;
            line-height: 1.6;
        }

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

        /* =========================
           NAVBAR
        ========================= */

        .navbar {
            width: 100%;
            background: #ffffff;
            box-shadow: 0 2px 15px rgba(0,0,0,0.08);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .nav-container {
            max-width: 1200px;
            margin: auto;
            height: 75px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 20px;
        }

        .logo {
            font-size: 25px;
            font-weight: 800;
            color: #0d3b66;
        }

        .logo span {
            color: #f4a261;
        }

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

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

        .nav-menu li a:hover,
        .nav-menu li a.active {
            color: #0d6efd;
        }

        .nav-button {
            background: #0d6efd;
            color: white !important;
            padding: 11px 20px;
            border-radius: 6px;
        }

        .nav-button:hover {
            background: #084298;
        }

        /* =========================
           HERO
        ========================= */

        .page-header {
            background:
                linear-gradient(
                    rgba(13, 59, 102, 0.9),
                    rgba(13, 59, 102, 0.9)
                ),
                url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1600&q=80");

            background-size: cover;
            background-position: center;

            padding: 90px 20px;
            text-align: center;
            color: white;
        }

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

        .page-header p {
            font-size: 18px;
            opacity: 0.9;
        }

        /* =========================
           CONTACT SECTION
        ========================= */

        .contact-section {
            max-width: 1200px;
            margin: 70px auto;
            padding: 0 20px;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 40px;
        }

        /* CONTACT INFO */

        .contact-info {
            background: #0d3b66;
            color: white;
            padding: 40px;
            border-radius: 12px;
        }

        .contact-info h2 {
            font-size: 30px;
            margin-bottom: 15px;
        }

        .contact-info > p {
            margin-bottom: 30px;
            color: #e5e5e5;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 25px;
        }

        .contact-icon {
            width: 45px;
            height: 45px;
            min-width: 45px;
            border-radius: 8px;
            background: #f4a261;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }

        .contact-item h4 {
            font-size: 16px;
            margin-bottom: 3px;
        }

        .contact-item p {
            color: #ddd;
            font-size: 14px;
        }

        /* SOCIAL MEDIA */

        .social-media {
            margin-top: 35px;
        }

        .social-media h4 {
            margin-bottom: 15px;
        }

        .social-links {
            display: flex;
            gap: 10px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: white;
            color: #0d3b66;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: bold;
            transition: 0.3s;
        }

        .social-links a:hover {
            background: #f4a261;
            color: white;
            transform: translateY(-3px);
        }

        /* =========================
           FORM
        ========================= */

        .contact-form {
            background: white;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.07);
        }

        .contact-form h2 {
            font-size: 30px;
            color: #0d3b66;
            margin-bottom: 10px;
        }

        .contact-form > p {
            color: #666;
            margin-bottom: 25px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 7px;
            font-weight: 600;
            color: #333;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 13px 15px;
            border: 1px solid #ddd;
            border-radius: 6px;
            outline: none;
            font-size: 15px;
            transition: 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #0d6efd;
            box-shadow: 0 0 0 3px rgba(13,110,253,0.1);
        }

        .form-group textarea {
            height: 130px;
            resize: vertical;
        }

        .btn-submit {
            width: 100%;
            border: none;
            padding: 14px;
            background: #0d6efd;
            color: white;
            border-radius: 6px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: 0.3s;
        }

        .btn-submit:hover {
            background: #084298;
        }

        /* =========================
           MAP / LOCATION
        ========================= */

        .location-section {
            max-width: 1200px;
            margin: 0 auto 70px;
            padding: 0 20px;
        }

        .location-title {
            text-align: center;
            margin-bottom: 30px;
        }

        .location-title h2 {
            font-size: 32px;
            color: #0d3b66;
        }

        .location-title p {
            color: #666;
        }

        .map-box {
        width: 100%;
        height: 400px;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
        }

        .map-box iframe {
        width: 100%;
        height: 100%;
        border: 0;
        display: block;
        }

        @media (max-width: 768px) {
        .map-box {
        height: 300px;
        }
        }
        .map-content {
            padding: 30px;
        }

        .map-content h3 {
            color: #0d3b66;
            margin-bottom: 10px;
        }

        /* =========================
           FOOTER
        ========================= */

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

        .footer-container {
            max-width: 1200px;
            margin: auto;
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr;
            gap: 40px;
        }

        .footer-column h3 {
            margin-bottom: 18px;
            font-size: 20px;
        }

        .footer-column p {
            color: #ccc;
            font-size: 14px;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 10px;
        }

        .footer-column ul li a {
            color: #ccc;
            font-size: 14px;
            transition: 0.3s;
        }

        .footer-column ul li a:hover {
            color: white;
        }

        .copyright {
            max-width: 1200px;
            margin: 40px auto 0;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            text-align: center;
            color: #aaa;
            font-size: 13px;
        }

        /* =========================
           MOBILE
        ========================= */

        @media (max-width: 768px) {

            .nav-container {
                height: auto;
                padding: 20px;
                flex-direction: column;
                gap: 20px;
            }

            .nav-menu {
                flex-wrap: wrap;
                justify-content: center;
                gap: 15px;
            }

            .page-header {
                padding: 65px 20px;
            }

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

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

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

            .contact-info,
            .contact-form {
                padding: 25px;
            }
        }
