body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4; /* Light background */
    color: #333;
}


.page-header {
    text-align: center;
    padding: 30px 20px 10px;
    background-color: #f9f9f9;
}

.page-header h1 {
    font-size: 36px;
    margin-bottom: 5px;
    color: #333;
}

.page-header p {
    font-size: 14px;
    color: #777;
}

.map-section-container {
    width: 100%;
    margin: 0 auto;
    height: 350px; 
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3));
}

.map-section-container iframe {
    width: 100%;
    height: 100%;
}

.form-container-wrapper {
    background-color: #fff;
    padding: 40px 15px; 
}

.form-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); 
    border-radius: 8px;
    overflow: hidden;
    flex-direction: row; 
}

.go-local {
    flex: 1;
    background-color:#190231; 
    color: #fff;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 300px; 
}

.go-local h2 {
    font-size: 28px;
    border-bottom: 2px solid #ff440a ;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.go-local p {
    font-size: 14px;
    line-height: 1.6;
    margin: 10px 0;
}

.go-local strong {
    color: #ff440a ;
}

.go-local a {
    color: #fff;
    text-decoration: underline;
}

.phone {
    font-size: 20px;
    font-weight: 700;
    margin-top: 30px;
    display: flex;
    align-items: center;
    color: #ff440a ;
}

.phone-icon {
    margin-right: 10px;
    font-size: 24px;
}

.get-in-touch {
    flex: 2;
    padding: 40px;
    background-color: #fff;
}

.get-in-touch h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #333;
}

.form-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.get-in-touch input,
.get-in-touch select,
.get-in-touch textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    box-sizing: border-box; 
    -webkit-appearance: none; 
    -moz-appearance: none;
    appearance: none;
}
.get-in-touch input::placeholder,
.get-in-touch textarea::placeholder {
    color: #333; 
}

.get-in-touch input:focus,
.get-in-touch select:focus,
.get-in-touch textarea:focus {
    border-color: #008080;
    outline: none;
}

.get-in-touch textarea {
    height: 100px;
    resize: vertical;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .form-container {
        flex-direction: column;
        box-shadow: none; 
    }

    .go-local {
        width: 100%;
        border-radius: 8px 8px 0 0; /* Rounded top corners only */
        padding: 30px 20px; /* Reduce vertical padding */
        min-width: initial;
    }
    
    .go-local h2 {
        font-size: 24px;
    }

    .get-in-touch {
        width: 100%;
        padding: 30px 20px; 
        border-radius: 0 0 8px 8px;
        border: 1px solid #ddd;
        border-top: none;
    .get-in-touch h2 {
        font-size: 24px;
    }

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

    .map-section-container {
        height: 250px; 
    }
}
}