body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f9f9f9;
}

/* Section container */
.contact-section {
    padding: 50px 20px;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.1);
    padding: 30px;
    align-items: center;
}

/* Left side form */
.contact-form {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.section-title span {
    display: inline-block;
    padding: 8px 20px;
    background: #fff;
    border-radius: 25px;
    border: 2px solid #007bff;
    color: #007bff;
    font-weight: bold;
    margin-bottom: 20px;
}

.contact-form h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #001f3f;
}

.contact-form h2 .highlight {
    color: #007bff;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

input, textarea {
    flex: 1;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 14px;
}

textarea {
    resize: none;
    min-height: 100px;
}

.send-btn {
    background: linear-gradient(to right, #007bff, #6d2020);
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
    align-self: flex-start;
}

.send-btn:hover {
    opacity: 0.8;
}

/* Right side image */
.contact-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    padding: 20px;
}

.contact-image img {
    max-width: 100%;
    height: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }
    .form-row {
        flex-direction: column;
    }
    .send-btn {
        align-self: stretch;
        text-align: center;
    }
}
    body {
        font-family: Arial, sans-serif;
        margin: 0;
        padding: 0;
        background: #f8f9fa;
    }

    .container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        padding: 30px;
        max-width: 1200px;
        margin: auto;
    }

    .card {
        background: white;
        border-radius: 10px;
        padding: 20px;
        text-align: center;
        box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0px 8px 20px rgba(0,0,0,0.15);
    }

    .card h2 {
        font-size: 1.4rem;
        color: #002147;
        margin-bottom: 15px;
    }

    .card img {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .card p {
        font-size: 1rem;
        color: #555;
        margin: 5px 0;
    }

    a {
        color: inherit;
        text-decoration: none;
    }
