* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Rubik, sans-serif;
    color: #2a3439;
    line-height: 1.6;
}
header {
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
}

nav {
    background: #2a3439;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
nav .logo img {
    width: 180px;
    padding-top: 5px;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}
nav a {
    color: #f5f0e1;
    text-decoration: none;
    font-size: 16px;
}
nav a:hover {
    color: #fca200;
}
nav .cta a {
    background: #fca200;
    color: #2a3439;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 16px;
}
nav .cta a:hover {
    background: #ffd700;
}
nav .hamburger {
    display: none;
    font-size: 24px;
    color: #f5f0e1;
    cursor: pointer;
}
nav .nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
}
section {
    padding: 60px 20px;
    text-align: center;
}
h1, h2, h3 {
    font-weight: 700;
}
h3 {
    margin-bottom: 10px;
}
button, a.button {
    background: #fca200;
    color: #2a3439;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    text-decoration: none;
    cursor: pointer;
}
button:hover, a.button:hover {
    background: #ffd700;
}
input, textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 2px solid #4b5563;
    background: #f5f0e1;
    color: #2a3439;
    font-family: Rubik, sans-serif;
}
textarea {
    min-height: 100px;
}
#hero {
    background: linear-gradient(rgba(6, 50, 75, 0.8), rgba(6, 50, 75, 0.8)), url('hero-image.jpg') center/cover no-repeat;
    color: #f5f0e1;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
ul {
    list-style: none;
    padding: 0;
}
ul li {
    margin: 10px 0;
    font-size: 16px;
}
.withcheck::before {
    content: "✓";
    color: #ffd700;
    margin-right: 10px;
    font-weight: bold;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
@media (max-width: 768px) {
    nav ul {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #2a3439;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
    }
    nav ul.active {
        display: flex;
    }
    nav .hamburger {
        display: block;
    }
    nav .logo img {
        width: 60px;
    }
    nav .nav-right {
        margin-left: auto;
    }
    nav .cta {
        display: block;
    }
    h1 {
        font-size: 32px;
    }
    h2 {
        font-size: 28px;
    }
    #hero {
        height: 80vh;
    }
}