/* Reset and base styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f9f9f9;
        }
        
        a {
            text-decoration: none;
            color: #001461;
            transition: color 0.3s;
        }
        
        a:hover {
            color: #0370cb;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header styles */
        header {
            background-color: #001461;
            color: white;
            padding: 10px 0;
        }
        
        .top-bar {
            background-color: #355685;
            padding: 8px 0;
            text-align: center;
            font-size: 14px;
        }
        
        .main-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo img {
            max-width: 200px;
            height: auto;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 25px;
        }
        
        nav ul li a {
            color: white;
            font-weight: 500;
            text-transform: uppercase;
            font-size: 14px;
            padding: 10px 0;
        }
        
        nav ul li a:hover, 
        nav ul li a.active {
            color: #fff;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }
        
        /* Content styles */
        .content-section {
            padding: 60px 0;
            background-color: white;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .section-title h2 {
            font-size: 32px;
            margin-bottom: 15px;
            color: #001461;
        }
        
        .section-title .highlight {
            color: #098ce9;
        }
        
        .section-title .line {
            display: block;
            width: 60px;
            height: 3px;
            background-color: #098ce9;
            margin: 0 auto;
        }
        
        .content-text {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .content-text p {
            margin-bottom: 20px;
        }
        
        .content-text h3 {
            margin: 30px 0 15px;
            color: #001461;
        }
        
        .content-text ol {
            margin-left: 20px;
            margin-bottom: 20px;
        }
        
        .content-text li {
            margin-bottom: 10px;
        }
        
        /* Footer styles */
        footer {
            background-color: #f1f2f8;
            padding: 50px 0 20px;
        }
        
        .footer-top {
            border-bottom: 1px solid #e2e0db;
            padding-bottom: 50px;
            margin-bottom: 30px;
        }
        
        .footer-top h3 {
            margin-bottom: 20px;
            color: #001461;
        }
        
        .newsletter-form {
            display: flex;
            max-width: 500px;
            margin: 0 auto;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 12px 15px;
            border: 1px solid #e2e0db;
            border-radius: 8px 0 0 8px;
        }
        
        .newsletter-form button {
            background-color: #001461;
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .newsletter-form button:hover {
            background-color: #0370cb;
        }
        
        .footer-columns {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 30px;
        }
        
        .footer-column {
            flex: 1;
            min-width: 250px;
            margin-bottom: 30px;
            padding: 0 15px;
        }
        
        .footer-column h5 {
            margin-bottom: 20px;
            color: #001461;
        }
        
        .contact-info {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
        }
        
        .contact-icon {
            width: 40px;
            height: 40px;
            background-color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        .contact-details p:first-child {
            font-weight: 400;
            color: #333;
        }
        
        .contact-details p:last-child {
            font-weight: 600;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .social-icons {
            display: flex;
            gap: 10px;
        }
        
        .social-icon {
            width: 37px;
            height: 37px;
            background-color: #f1f2f8;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.3s;
        }
        
        .social-icon:hover {
            background-color: #001461;
        }
        
        .social-icon:hover i {
            color: white;
        }
        
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 30px;
            border-top: 1px solid #e2e0db;
            flex-wrap: wrap;
        }
        
        .footer-logo img {
            max-width: 150px;
        }
        
        .footer-links-horizontal {
            display: flex;
            list-style: none;
        }
        
        .footer-links-horizontal li {
            margin-left: 20px;
        }
        
        .copyright {
            color: #666;
        }
        
        /* Responsive styles */
        @media (max-width: 992px) {
            nav ul {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .footer-columns {
                flex-direction: column;
            }
            
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            
            .footer-links-horizontal {
                margin: 15px 0;
                justify-content: center;
            }
        }
        
        @media (max-width: 768px) {
            .newsletter-form {
                flex-direction: column;
            }
            
            .newsletter-form input {
                border-radius: 8px;
                margin-bottom: 10px;
            }
            
            .newsletter-form button {
                border-radius: 8px;
                padding: 12px;
            }
            
            .footer-links-horizontal {
                flex-direction: column;
            }
            
            .footer-links-horizontal li {
                margin: 5px 0;
            }
        }