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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #ffffff;
}

/* Header Styles */
.header {
    background-color: #f8f9fa;
    padding: 30px 20px;
    border-bottom: 1px solid #e9ecef;
}

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

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

.logo-image {
    height: 55px;
    width: auto;
    object-fit: contain;
}

/* Hero Section */
.hero {
    width: 100%;
    height: 75vh;
    overflow: hidden;
    background-color: #f0f0f0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Content Section */
.content-section {
    background-color: #0052a3;
    padding: 60px 20px;
    color: #ffffff;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.main-text {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.5px;
    font-weight: 400;
    color: #d0d0d0;
}

.content-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-title {
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 2px;
    color: #ffffff;
    margin: 0;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 20px;
    border-radius: 4px;
    text-decoration: none;
}

.email-icon {
    font-size: 20px;
    color: #ffffff;
}

.contact-info a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #b0b0b0;
}

/* Footer */
.footer {
    background-color: #002147;
    color: #a0a0a0;
    text-align: center;
    padding: 30px 20px;
    font-size: 12px;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-image {
        height: 60px;
    }

    .hero {
        height: 300px;
    }

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

    .main-text {
        font-size: 14px;
        line-height: 1.7;
    }

    .contact-title {
        font-size: 36px;
    }

    .content-section {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 50px;
    }

    .hero {
        height: 200px;
    }

    .content-section {
        padding: 30px 15px;
    }

    .content-wrapper {
        gap: 25px;
    }

    .main-text {
        font-size: 12px;
        line-height: 1.6;
    }

    .contact-title {
        font-size: 28px;
    }

    .contact-info {
        padding: 15px;
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-info a {
        font-size: 12px;
    }
}
