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

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    background-color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    display: flex;
    min-height: 100vh;
    flex-wrap: wrap;
}

/* Left Content Side */
.content-side {
    flex: 1;
    min-width: 50%;
    padding: 60px 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo {
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -1px;
    color: #1a2a6c;
    margin-bottom: 20px;
    width:50%;
}

.logo span {
    font-weight: 300;
    color: #f39c12;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    display: block;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #000;
}

.tagline {
    color: #cd2016;
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.description {
    font-size: 1.1rem;
    color: #666;
    max-width: 500px;
    margin-bottom: 40px;
}

/* Contact Grid */
.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
    border-top: 1px solid #eee;
    padding-top: 40px;
}

.contact-item small {
    display: block;
    text-transform: uppercase;
    color: #999;
    font-weight: 700;
    font-size: 0.7rem;
    margin-bottom: 5px;
}

.contact-item p {
    font-weight: 600;
    font-size: 1rem;
}

.direction-link {
    color: #cd2016;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: 0.3s;
}

.direction-link:hover {
    color: #1a2a6c;
    text-decoration: underline;
}

/* Right Image Side */
.image-side {
    flex: 1;
    min-width: 50%;
    position: relative;
    background-color: #1a2a6c;
}

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

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(26, 42, 108, 0.4), rgba(243, 156, 18, 0.2));
}

footer {
    margin-top: auto;
    font-size: 0.8rem;
    color: #aaa;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .image-side {
        display: none; /* Hide image on smaller tablets for focus */
    }
    .content-side {
        min-width: 100%;
        padding: 40px 5%;
    }
    .hero-text h1 {
        font-size: 2.5rem;
    }
    .contact-info {
        grid-template-columns: 1fr;
    }
}