.find-us-section {
    background-color: #000;
    padding: 100px 0;
    color: #fff;
    font-family: 'Courier Prime', monospace;
}

.find-us-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.find-us-image {
    flex: 1;
    max-width: 500px;
}

.find-us-image img {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid #333; /* Optional subtle border */
}

.find-us-content {
    flex: 1;
    text-align: left;
}

.find-title {
    font-size: 2.5rem;
    font-weight: bold;
    letter-spacing: 4px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.info-block {
    margin-bottom: 25px;
}

.info-block .label {
    display: block;
    color: #EE2E3C; /* Your Brand Red */
    font-weight: bold;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.info-block p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

/* Responsive: Stack on Mobile */
@media (max-width: 992px) {
    .find-us-grid {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .find-us-content {
        text-align: left; /* Keep text left-aligned for readability */
    }

    .find-title {
        font-size: 1.8rem;
        text-align: center;
    }
}