* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
}


header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(24, 23, 23, 0.7);
}

header nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
}

header nav a {
    margin: 0 20px;
    color: #ece6e6;
    text-decoration: none;
    font-size: 20px;
}

header nav a:hover {
    text-decoration: underline;
}

.logo img {
    height: 50px;
    margin: 0 20px;
}
.main-section {
    text-align: center;
    padding: 120px 20px 70px;
    max-width: 1200px;
    margin: 0 auto;
}

.main-section h1 {
    font-size: 35px;
    font-weight: bolder;
    color: #ffffff;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
   
}

.main-section p {
    font-size: 18px;
    margin-bottom:5px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    
}

.main-section .buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.main-section .buttons a {
    text-decoration: none;
    color: rgb(255, 255, 255);
    padding: 15px 30px 15px 50px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
}

.main-section .buttons a img {
    position: absolute;
    left: 15px;
    top: 50%;
    size: 100%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
}

.main-section .buttons a.waze-button {
    margin-top: 50px;
    background-color: #33ccff;
}

.main-section .buttons a.waze-button:hover {
    background-color: #00aaff;
}

.main-section .buttons a.google-maps-button {
    margin-top: 50px;
    background-color:rgb(200, 193, 193);
    color:#302e2eea;
}

.main-section .buttons a.google-maps-button:hover {
    background-color: rgba(200, 193, 193, 0.674);
}

.map-container {
    margin: 40px 0;
    margin-top: 0rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(255, 110, 102, 0.3);
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 11px;
    background-color: rgba(24, 23, 23, 0.7);
    font-size: 14px;
}