* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    line-height: 1.6;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

/* Header */
.header {
    background: #353535;
    color: #fff;
    padding: 10px 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.header .logo img {
    max-width: 100px;
}

.navbar ul {
    list-style: none;
    float: right;
}

.navbar ul li {
    display: inline-block;
    margin-right: 20px;
}

.navbar ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

.navbar ul li a:hover {
    color: #f4b41a;
}
.contact-section {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-top: 40px;
}

.contact-left,
.contact-right {
    flex: 1;
}

.contact-left h2,
.contact-right h3 {
    margin-bottom: 15px;
    font-size: 1.8em;
    color: #333;
}

.contact-left p,
.contact-info p {
    margin-bottom: 10px;
    color: #666;
}

.contact-left form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.contact-left form input,
.contact-left form textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.submit-button {
    padding: 10px 20px;
    background-color: purple;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact-info {
    padding-top: 10px;
    font-size: 1em;
}

.availability-section {
    text-align: center;
    padding: 20px;
    background-color: #f7f7f7;
}

.availability-section h4 {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #333;
}

.availability-section p {
    font-size: 1.8em;
    font-weight: bold;
    color: #333;
}
.side-menu {
    position: fixed;
    top: 0;
    right: -35%;
    width: 35%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    transition: right 0.3s ease;
    z-index: 1001;
    padding: 20px;
}

.side-menu ul {
    list-style: none;
    padding: 0;
}

.side-menu ul li {
    margin: 15px 0;
}

.side-menu ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
}

.side-menu.active {
    right: 0;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
}

.overlay.active {
    display: block;
}


.hamburger {
display: none; 
text-align: center;
font-size: 24px;
color: #fff;
margin-top: 10px; 
}

@media (max-width: 768px) {
.hamburger {
    display: block; 
}

.logo {
    text-align: center; 
}
}

.footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 0px;
    margin-bottom: 0px;
}