body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
}
.custom-nav-menu .menu-container {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.custom-nav-menu .menu-container li {
    padding: 10px 20px;
}
.custom-nav-menu .menu-container li a {
    text-decoration: none;
    color: black;
    transition: color 0.3s ease, text-decoration-color 0.3s ease;
}
.custom-nav-menu .menu-container li a:hover,
.custom-nav-menu .menu-container li a:focus {
    color: blue;
    text-decoration: underline;
    text-decoration-color: blue;
}
.custom-section {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin: 20px;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background-image: url('../../background.jpg');
    background-size: cover;
    background-position: center;
}
.boxed {
    max-width: 1200px;
    margin: auto;
    width: 100%;
}
.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}
.section {
    padding: 50px;
    margin: 20px 0;
    background-color: #f4f4f9;
    border: 1px solid #ccc;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.elementor-button {
    color: #FFFFFF; 
    background-color: #0071a1; 
    border: none;
    align-items: center;
    text-align: center; 
    text-decoration: none; 
    display: inline-block; 
    font-size: 12px;
    transition: background-color 0.3s; 
    cursor: pointer; 
}

.elementor-button:hover {
    background-color: #005780; 
}
h2 {
    margin: 0;
    padding: 20px;
    color: #fff;
}
h1 {
    text-align: center;
    width: 100%;
    margin-top: 20px;
}
form {
    max-width: 300px;
    margin: 40px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
label, input, button {
    display: block;
    width: 100%;
    margin-bottom: 10px;
}
input, button {
    height: 35px;
}
button {
    background-color: #0056b3;
    color: white;
    border: none;
    cursor: pointer;
}
button:hover {
    opacity: 0.9;
}