* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    background-color: #f3f2ef !important;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f3f2ef;
}

.logo {
    display: flex;
    align-items: center;
    min-width: 180px;
}

.logo img {
    max-height: 70px;
    width: auto;
    transform: scale(2.0);
    transform-origin: left center;
}





.top-header {
    height: 80px;
    background: linear-gradient(90deg, #0b2a4a, #143d66);
    display: flex;
    align-items: center;
}


.header-container {
    width: 100%;
    padding: 0 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}





.header-text {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-family: "Rajdhani", Arial, sans-serif;
    color: #cfd8e3;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.5px;
    white-space: nowrap;
}




.header-nav {
    display: flex;
    align-items: center;
    gap: 22px;
}



.header-nav a {
    font-family: "Rajdhani", Arial, sans-serif;
    color: #cfd8e3;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.contact-intro {
    background: #f3f2ef;
    padding: 90px 40px 70px;
}

.contact-intro-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.contact-intro h1 {
    font-family: "Rajdhani", Arial, sans-serif;
    font-size: 38px;
    font-weight: 600;
    color: #0b2a4a;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.contact-intro p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    max-width: 720px;
    margin: 0 auto;
}

.contact-row {
    max-width: 1100px;
    margin: 60px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.contact-item {
    text-align: center;
    width: 25%;
}

.contact-item h3 {
    font-family: "Rajdhani", Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #0b2a4a;
}

.contact-item p {
    font-size: 14px;
    color: #555;
    margin: 2px 0;
}



@media (max-width: 768px) {

    .contact-container h2 {
        font-size: 28px;
        line-height: 1.3;
    }

    .contact-container p {
        font-size: 15px;
        line-height: 1.6;
        margin-top: 12px;
    }
}

@media (max-width: 768px) {
    .contact-row {
        flex-direction: column;
        gap: 25px;
    }

    .contact-item {
        width: 100%;
    }
}


.contact-item.phone i {
    color: #1e5fa3;
}


.contact-item.email i {
    color: #6b7280;
}


.contact-item.location i {
    color: #d14343;
}


.contact-item.whatsapp i {
    color: #25D366;
}
