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

        body {
            font-family: 'Arial', sans-serif;
            color: #333;
            line-height: 1.6;
        }

        /* Header */
        header {
            background: #fff;
            color: #1e3a5f;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 3px solid #1e3a5f;
        }

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

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo img {
        }

        .logo-circle {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #1e3a5f 0%, #6b7280 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 24px;
            border: 3px solid #6b7280;
            color: white;
        }

        .logo-text h1 {
            font-size: 1.8rem;
            font-weight: 900;
            letter-spacing: 1px;
            color: #1e3a5f;
        }

        .logo-text p {
            font-size: 0.9rem;
            font-style: italic;
            color: #6b7280;
        }

        nav a {
            color: #1e3a5f;
            text-decoration: none;
            margin-left: 30px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
            border-bottom: 2px solid transparent;
        }

        nav a:hover {
            border-bottom: 2px solid #1e3a5f;
            transform: translateY(-2px);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(30, 58, 95, 0.85), rgba(30, 58, 95, 0.85)), url('img/hero.jpeg');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 20px;
            text-align: center;
        }

        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .hero h2 {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: white;
        }

        .hero p {
            font-size: 1.5rem;
            margin-bottom: 30px;
            color: white;
        }

        .cta-button {
            display: inline-block;
            background: white;
            color: #1e3a5f;
            padding: 15px 40px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.2rem;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: 2px solid white;
        }

        .cta-button:hover {
            background: transparent;
            color: white;
            border: 2px solid white;
            transform: translateY(-3px);
        }

        /* Sections */
        section {
            padding: 80px 20px;
            scroll-margin-top: 100px;
        }

        .section-light {
            background: #f8f9fa;
        }

        .section-dark {
            background: white;
        }

        .section-accent {
            background: #1e3a5f;
            color: white;
        }

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

        h2 {
            font-size: 2.5rem;
            color: #1e3a5f;
            margin-bottom: 40px;
            text-align: center;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .section-accent h2 {
            color: white;
        }

        /* About Section */
        .about-content {
            max-width: 100%;
        }

        .about-grid {
            display: flex;
            flex-direction: column;
            gap: 40px;
            margin-bottom: 50px;
        }

        .about-column {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 30px;
            align-items: start;
        }

        .about-column.reverse {
            grid-template-columns: 1fr 2fr;
        }

        .about-text h3 {
            color: #1e3a5f;
            font-size: 2rem;
            margin-bottom: 20px;
            font-weight: bold;
        }

        .about-text p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 20px;
            color: #333;
        }

        .about-image {
            height: 250px;
            /* border: 3px solid #1e3a5f; */
            overflow: hidden;
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .values-intro {
            text-align: center;
            font-size: 1.15rem;
            margin-bottom: 40px;
            color: #333;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 50px;
            margin-top: 40px;
        }

        .value-item {
            text-align: center;
            padding: 0;
            border: none;
            background: transparent;
        }

        .value-icon {
            font-size: 4rem;
            margin-bottom: 20px;
            color: #1e3a5f;
        }

        .value-item h4 {
            font-size: 1.6rem;
            margin-bottom: 15px;
            color: #1e3a5f;
            font-weight: bold;
            text-transform: uppercase;
        }

        .value-item p {
            color: #555;
            font-size: 1.1rem;
        }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 0;
            margin-top: 40px;
            /* border: 3px solid #1e3a5f; */
        }

        .service-category {
            background: white;
            padding: 40px 30px;
            border-right: 15px solid #f8f9fa;
            /* border-bottom: 3px solid #1e3a5f;  */
        }

        .service-category:last-child {
            border-right: none;
        }

        .service-category h3 {
            color: #1e3a5f;
            font-size: 1.6rem;
            margin-bottom: 20px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .service-category p {
            margin-bottom: 15px;
            font-size: 1rem;
            line-height: 1.6;
        }

        .service-list {
            font-size: 0.95rem;
            line-height: 1.8;
            color: #555;
        }

        /* Image Placeholders */
        .image-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 0;
            margin-top: 40px;
            /* border: 3px solid #1e3a5f; */
        }

        .image-placeholder {
            height: 300px;
            border-right: 15px solid #f8f9fa;
            overflow: hidden;
        }

        .image-placeholder:last-child {
            border-right: none;
        }

        .image-placeholder img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Important Notice */
        .notice-box {
            background: #1e3a5f;
            color: white;
            padding: 30px;
            margin-top: 40px;
            /* border: 3px solid #6b7280; */
        }

        .notice-box h3 {
            color: white;
            margin-bottom: 15px;
            font-size: 1.5rem;
        }

        .notice-box p {
            line-height: 1.8;
            font-size: 1.1rem;
        }

        /* Contact Section */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-top: 40px;
        }

        .contact-info {
            background: white;
            padding: 40px;
        }

        .contact-info h3 {
            color: #1e3a5f;
            font-size: 1.8rem;
            margin-bottom: 25px;
            font-weight: bold;
        }

        .contact-item {
            margin-bottom: 20px;
            padding: 15px;
            background: #f8f9fa;
            border-left: 4px solid #1e3a5f;
        }

        .contact-item strong {
            color: #1e3a5f;
            display: block;
            margin-bottom: 5px;
            font-size: 1.1rem;
        }

        .map-container {
            overflow: hidden;
            height: 490px;
            /* border: 3px solid #1e3a5f; */
            margin-top:40px;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }

        /* Footer */
        footer {
            background: #1e3a5f;
            color: white;
            text-align: center;
            padding: 30px 20px;
        }

        footer p {
            font-size: 1rem;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                gap: 15px;
            }

            nav {
                display: flex;
                gap: 15px;
            }

            nav a {
                margin-left: 0;
                font-size: 1rem;
            }

            .hero h2 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1.2rem;
            }

            h2 {
                font-size: 2rem;
            }

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

            .service-category {
                border-right: none;
            }

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

            .logo-text h1 {
                font-size: 1.4rem;
            }

            .logo-text p {
                font-size: 0.8rem;
            }

            .logo-circle {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }

            .image-placeholder {
                border-right: none;
                border-bottom: 3px solid #1e3a5f;
            }

            .image-placeholder:last-child {
                border-bottom: none;
            }

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

            .about-column {
                grid-template-columns: 1fr;
            }

            .about-image {
                height: 200px;
            }

            .values-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }