/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Times New Roman", Times, serif;
    background-color: var(--cream);
    color: var(--text-dark);
    line-height: 1.6;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    transition: .3s ease;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    opacity: .9;
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
}

/* Headings */
h1, h2, h3 {
    color: var(--primary);
}

/* Sections */
.section {
    padding: 80px 0;
}

/* Cards */
.card {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 24px;
}

/* ================= ABOVE FOOTER SECTION ================= */
.above_footer {
    background: #364C84; 
    color: #e5e7eb;
    padding: 50px 20px;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

/* LEFT SIDE */
.above_footer_left {
    display: flex;
    justify-content: center;
    flex: 2;
    min-width: 300px;
    align-items: center;
    gap: 30px;
}

.above_footer_left img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(255,255,255,0.05);
}

.above_footer_left p {
    max-width: 420px;
    line-height: 1.8;
    color: #cbd5e1;
    font-size: 15px;
}

/* RIGHT SIDE */
.above_footer_right {
    flex: 1;
    min-width: 280px;
}

.addresses {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    
}


.address {
    display: flex;
    flex-direction: row;
    margin-bottom: -15px;
}

.above_footer_right h2 {
    color: #facc15; 
    margin-bottom: 15px;
    font-size: 24px;
}

.above_footer_right p {
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 25px;
    max-width: 420px;
}

/* SOCIAL ICONS */
.socials ul {
    display: flex;
    gap: 15px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.socials ul li a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid #facc15;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #facc15;
    font-size: 18px;
    transition: all 0.3s ease;
}

.socials ul li a img {
    width: 40px;
    height: 40px;
    color: #facc15;
    border-radius: 50%;
}

.socials ul li a:hover {
    background: #facc15;
    color: #0f172a;
    transform: translateY(-4px);
}

/* ================= BOTTOM FOOTER ================= */
.footer {
    background: #364C84; 
    padding: 18px 10px;
    text-align: center;
}

.footer p {
    margin: 0;
    font-size: 14px;
    letter-spacing: 0.5px;
    color: #e5e7eb;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .above_footer {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .above_footer_left {
        flex-direction: column;
        align-items: center;
    }

    .above_footer_left p,
    .above_footer_right p {
        max-width: 100%;
    }

    .address {
        justify-content: center;
    }


    .socials ul {
        justify-content: center;
    }
}

.divider{
    background-color: #facc15;
    width: 100%;
    height: 3px;
}

@media (max-width: 960px) {
    .above_footer_left {
        flex-direction: column;
        align-items: center;
    }
}

