
/* Reset and base styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Urbanist', 'Montserrat', sans-serif;
            line-height: 1.6;
            color: #000;
            background-color: #fff;
        }
        
        .container {
            max-width: 1290px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header styles */
        header {
            background-color: #000;
            padding: 15px 0;
            border-bottom: 1px solid #e2e0db;
        }
		.header-top {
            background-color: var(--secondary-color);
            color: var(--white);
            padding: 10px 0;
            font-size: 14px;
            text-align: center;
        }
        
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo img {
            max-width: 243px;
            height: auto;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav li {
            margin-left: 30px;
        }
        
        nav a {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            text-transform: uppercase;
            font-size: 14px;
            transition: color 0.3s;
        }
        
        nav a:hover, nav a.active {
            color: #098ce9;
        }
        
        /* Hero section */
        .hero {
            text-align: center;
            padding: 60px 0;
            background-color: #f1f2f8;
        }
        
        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            color: #001461;
        }
        
        .hero p {
            font-size: 18px;
            color: #666;
            max-width: 800px;
            margin: 0 auto;
        }
        
        /* Contact section */
        .contact-section {
            padding: 80px 0;
        }
        
        .contact-container {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
        }
        
        .contact-info {
            flex: 1;
            min-width: 300px;
        }
        
        .contact-info h2 {
            font-size: 36px;
            margin-bottom: 20px;
            color: #001461;
        }
        
        .contact-info p {
            margin-bottom: 40px;
            color: #666;
        }
        
        .contact-method {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
        }
        
        .contact-icon {
            width: 40px;
            height: 40px;
            background-color: #f1f2f8;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        .contact-details h3 {
            font-size: 16px;
            font-weight: 400;
            margin-bottom: 5px;
        }
        
        .contact-details p {
            font-weight: 600;
            color: #098ce9;
            margin: 0;
        }
        
        /* Contact form */
        .contact-form-container {
            flex: 1;
            min-width: 300px;
            background-color: #f1f2f8;
            padding: 30px;
            border-radius: 8px;
        }
        
        .contact-form-container h3 {
            font-size: 22px;
            margin-bottom: 20px;
            color: #001461;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: none;
            border-radius: 8px;
            font-family: inherit;
            font-size: 16px;
        }
        
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        
        .submit-btn {
            background-color: #098ce9;
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 8px;
            font-family: inherit;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
            display: block;
            margin-left: 0;
            margin-right: auto;
        }
        
        .submit-btn:hover {
            background-color: #0370cb;
        }
        
        /* Map section */
        .map-section {
            padding: 0 0 80px;
        }
        
        .map-container {
            border-radius: 8px;
            overflow: hidden;
            height: 450px;
        }
        
        .map-container iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }
        
        /* Footer */
        footer {
            background-color: #f1f2f8;
            padding: 50px 0 30px;
        }
        
        .footer-top {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 50px;
            padding-bottom: 50px;
            border-bottom: 1px solid #e2e0db;
        }
        
        .footer-column {
            flex: 1;
            min-width: 250px;
            margin-bottom: 30px;
        }
        
        .footer-column h4 {
            font-size: 20px;
            margin-bottom: 20px;
            color: #001461;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #666;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: #098ce9;
        }
        
        .social-links {
            display: flex;
            gap: 10px;
        }
        
        .social-link {
            width: 37px;
            height: 37px;
            background-color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #001461;
            text-decoration: none;
            transition: background-color 0.3s, color 0.3s;
        }
        
        .social-link:hover {
            background-color: #098ce9;
            color: white;
        }
        
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            padding-top: 30px;
        }
        
        .footer-logo img {
            max-width: 150px;
            height: auto;
        }
        
        .footer-links-horizontal {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        
        .footer-links-horizontal li {
            margin-right: 20px;
        }
        
        .footer-links-horizontal a {
            color: #666;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links-horizontal a:hover {
            color: #098ce9;
        }
        
        .copyright {
            color: #666;
        }
        
        /* Responsive styles */
        @media (max-width: 1024px) {
            .hero h1 {
                font-size: 36px;
            }
        }
        
        @media (max-width: 768px) {
            .header-inner {
                flex-direction: column;
                text-align: center;
            }
            
            .logo {
                margin-bottom: 15px;
            }
            
            nav ul {
                flex-direction: column;
            }
            
            nav li {
                margin: 10px 0;
            }
            
            .hero {
                padding: 40px 0;
            }
            
            .hero h1 {
                font-size: 32px;
            }
            
            .contact-section {
                padding: 50px 0;
            }
            
            .footer-top {
                flex-direction: column;
            }
            
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            
            .footer-links-horizontal {
                justify-content: center;
                margin: 15px 0;
            }
        }
        
        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            
            .hero h1 {
                font-size: 28px;
            }
            
            .contact-form-container {
                padding: 20px;
            }
        }