body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: #f8f9fa;
}

/* HEADER STYLING */
/* HEADER */
header {
    background: #6D1B3D;  /* Deep Burgundy */
    color: white;
    padding: 50px 20px;
    text-align: center;
}

/* CTA BUTTON */
.cta-button {
    display: inline-block;
    margin-top: 15px;
    padding: 14px 30px;
    background: linear-gradient(135deg, #FF8800, #FF6600); /* Gradient Orange */
    color: white;
    font-weight: bold;
    font-size: 1.1em;
    text-decoration: none;
    border-radius: 30px; /* Rounded corners */
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Soft shadow */
}

/* HOVER EFFECT */
.cta-button:hover {
    background: linear-gradient(135deg, #FF6600, #CC5500); /* Darker Orange */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* Stronger shadow */
    transform: translateY(-3px); /* Lift effect */
}



h1 {
    margin: 0;
    font-size: 2.5em;
    font-weight: 600;
}

p {
    font-size: 1.2em;
    line-height: 1.6;
}


/* SECTIONS */
.about, .locations, .contact {
    padding: 20px;
    background: white;
    margin: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* LOCATION BOXES */
.location-box {
    background: #ffffff;
    margin: 15px auto;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 600px;
}

/* MAP STYLING */
.map-container {
    margin-top: 10px;
    border-radius: 10px;
    overflow: hidden;
}

/* CONTACT */
.contact a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: bold;
}

/* FOOTER */
footer {
    background-color: #2c3e50;
    color: white;
    padding: 15px;
    font-size: 1em;
    width: 100%;
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 768px) {
    h1 {
        font-size: 2em;
    }

    p {
        font-size: 1em;
    }

    .about, .locations, .contact {
        margin: 10px;
        padding: 15px;
    }

    .location-box {
        width: 95%;
    }

    .cta-button {
        padding: 10px 20px;
    }
}

.logo {
    width: 120px;  /* Adjust size */
    height: auto;
    display: block;
    margin: 0 auto 15px;  /* Center it */
}

