@charset "utf-8";
/* CSS Document */

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

body {
    font-family: 'Poppins', sans-serif;
    color: #2f2f2f;
    line-height: 1.7;
    background: #f9f7f4;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.site-header {
    background: white;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.nav-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

nav ul {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

nav a {
    text-decoration: none;
    color: #2f2f2f;
    font-weight: 500;
}

.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background:
        linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
        url('../images/hero.jpg') center/cover;
    color: white;
}

.hero-content {
    max-width: 700px;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    display: inline-block;
    padding: 0.9rem 1.6rem;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
}

.primary-btn {
    background: #d89b3d;
    color: white;
}

.secondary-btn {
    border: 2px solid white;
    color: white;
}

.section {
    padding: 5rem 0;
}

.alt-section {
    background: white;
}

.section h2 {
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
}


.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.bank-box {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    max-width: 500px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}


form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

input,
textarea {
    padding: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
}

textarea {
    min-height: 150px;
}

.site-footer {
    background: #2f2f2f;
    color: white;
    padding: 2rem 0;
    text-align: center;
}


@media (max-width: 768px) {

    .nav-wrap {
        flex-direction: column;
        gap: 1rem;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }
}

