* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#vanta-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: black;
    padding-top: 60px;
    overflow-x: hidden;
}

.navbar {
    position: fixed;              
    top: 0;                      
    left: 0;
    width: 100%;                 
    z-index: 10;                 
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: black;
    padding: 0 20px;
    height: 60px;
    box-shadow: 0 2px 5px rgba(56, 55, 55, 0.2);
}

.logo-button {
    display: inline-block;
    color: white;
    font-size: 40px;
    font-family: Arial, sans-serif;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: 0;
}

.logo-button:hover {
    color: #29fa1e;
}

.defaultNav {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.defaultNav li {
    margin-left: 20px;
}

.defaultNav li a {
    color: white;
    text-decoration: none;
    font-size: 25px;
    transition: color 0.3s ease;
}

.defaultNav li a:hover, .defaultNav li a.active-page {
    color: #29fa1e;
}

.defaultNav li a.active-page {
    text-decoration: underline;
    text-underline-offset: 10px;
    color: #29fa1e;
}

.content {
    max-width: 900px;
    margin: 150px auto;
    text-align: center;
    padding: 20px;
}

.contact-text {
    font-size: 22px;
    color: white;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 22px;
    font-weight: bold;
    color: #29fa1e;
    border: 2px solid #29fa1e;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background-color: #29fa1e;
    color: black;
}

@media (max-width: 900px) {
    .navbar {
        height: 54px;
        padding: 0 14px;
    }
    body {
        padding-top: 54px;
    }
    .logo-button {
        font-size: 28px;
    }
    .defaultNav {
        flex-wrap: wrap;
        gap: 10px 14px;
    }
    .defaultNav li {
        margin-left: 0;
    }
    .defaultNav li a {
        font-size: 18px;
    }
    .content {
        max-width: 720px;
        margin: 120px auto 60px;
        padding: 16px;
        text-align: left;
        min-height: calc(100vh - 54px);
    }
    .contact-text {
        font-size: 18px;
        line-height: 1.7;
    }
    .contact-btn {
        display: block;
        width: 100%;
        max-width: 420px;
        margin: 0 auto;
        padding: 12px 20px;
        font-size: 18px;
        border-radius: 10px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo-button {
        font-size: 22px;
    }
    .defaultNav li a {
        font-size: 16px;
    }
    .content {
        margin: 80px auto 40px;
    }
    .contact-text {
        font-size: 16px;
    }
    .contact-btn {
        font-size: 16px;
        padding: 12px 18px;
    }
}
