/* Global Styles */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
    color: #333;
    background-color: #f9f9f9;
}

/* Overlay Header */
.overlay-header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    z-index: 1000;
}

.overlay-header .logo img {
    max-height: 50px;
}
.overlay-header .main-nav {
    padding-right: 20px;
}
.overlay-header .main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.overlay-header .main-nav ul li {
    margin: 0 15px;
}

.overlay-header .main-nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
}

.overlay-header .btn.contact-button {
    background-color: #007BFF;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
}

/* Overlay Footer */
.overlay-footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    text-align: center;
    padding: 10px 20px;
}

.overlay-footer .footer-nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}

/* Main Content */
.main-content {
    height: calc(100% - 100px); /* Adjust for header and footer */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    background: url('../../assets/images/address.jpg') no-repeat center center;
    background-size: cover;
}

/* Hero Section */
.hero-title {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #ddd;
    margin-bottom: 40px;
}

/* Form */
.address-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.address-form .modern-input {
    width: 100%;
    max-width: 400px;
    padding: 10px;
    font-size: 1rem;
    border: 2px solid #007BFF;
    border-radius: 5px;
    margin-bottom: 20px;
}

.address-form .btn.submit-button {
    background-color: #007BFF;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
}

.address-form .btn.submit-button:hover {
    background-color: #0056b3;
}

.google_map {
    width: 100%;
    height: 500px;
}
