.contact-us * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.contact-us .heading-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    padding: 30px 10px;
}

.contact-us h1 {
    font-size: 3.5rem;
    color: #231f1e;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    font-weight: 700;
    letter-spacing: 1px;
}

.contact-us h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #cc4b24;
    border-radius: 2px;
}

.contact-us .subtitle {
    font-size: 1.4rem;
    color: #231f1e;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-us h1 {
        font-size: 2.8rem;
    }
    .contact-us .subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .contact-us h1 {
        font-size: 2.2rem;
    }
    .contact-us .subtitle {
        font-size: 1.1rem;
    }
    .contact-us .heading-container {
        padding: 40px 20px;
    }
}