/* RESET (important) */
body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f4f6f9;
}

/* MAIN CONTAINER */
.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    padding: 50px 80px;
    flex-wrap: wrap;
}

/* LEFT SECTION */
.contact-left {
    flex: 1;
    min-width: 400px;
}

    .contact-left h2 {
        font-size: 40px;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .contact-left p {
        font-size: 20px;
        color: #555;
        margin-bottom: 30px;
        line-height: 1.6;
    }

/* GRID FIX */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 60px;
}

.contact-box h4 {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 5px;
}
.h3{
    color:white;
}
.contact-box p {
    font-size: 18px;
    color: #333;
}

/* RIGHT SIDE */
.contact-right {
    flex: 1;
    min-width: 320px;
    display: flex;
    justify-content: center;
}

/* RED CARD (FIXED SHAPE + POSITION) */
.red-card {
    width: 100%;
    max-width: 350px;
    height: 280px;
    background: #c4000f;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 20px;
    font-size: 25px;
    font-weight: bold;
    /* angled corner */
    clip-path: polygon(0 0, 85% 0, 100% 20%, 100% 100%, 0 100%);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .contact-container {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .red-card {
        margin-top: 20px;
        height: 220px;
    }
}
