* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #f7f7f7;
    color: #333;
}

/* HERO */
.contact-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url("images/hero5.jpg") center/cover no-repeat;
    height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content h1 {
    color: #fff;
    font-size: 42px;
    margin-bottom: 10px;
}

.hero-content p {
    color: #ddd;
    font-size: 18px;
}

/* CONTACT SECTION */
.contact-section {
    padding: 60px 8%;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
}

/* INFO */
.contact-info h2 {
    color: #c00000;
    margin-bottom: 15px;
}

.contact-info p {
    margin-bottom: 30px;
    color: #555;
}

.info-box {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.info-box span {
    font-size: 24px;
    margin-right: 15px;
    color: #c00000;
}

.info-box h4 {
    margin-bottom: 5px;
}

/* FORM */
.contact-form h2 {
    margin-bottom: 20px;
    color: #c00000;
}

.form-group {
    margin-bottom: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #c00000;
}

button {
    width: 100%;
    padding: 14px;
    border: none;
    background: #c00000;
    color: #fff;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
}

button:hover {
    background: #a80000;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 32px;
    }
}
