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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

main {
    padding: 40px 0;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.tagline {
    font-size: 1.2rem;
    color: #6c757d;
    font-weight: 300;
    margin-bottom: 40px;
}

.content {
    max-width: 600px;
}

p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
}

header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 20px;
}

.logo-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    height: 50px;
    width: auto;
}

nav a {
    color: #c4967f;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    padding: 8px 16px;
    border: 2px solid #c4967f;
    border-radius: 5px;
    transition: all 0.3s ease;
}

nav a:hover {
    background-color: #c4967f;
    color: white;
    text-decoration: none;
}

.pilot-program-cta {
    margin: 40px 0;
    text-align: left;
}

.pilot-program-cta a {
    color: #c4967f;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    padding: 8px 16px;
    border: 2px solid #c4967f;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.pilot-program-cta a:hover {
    background-color: #c4967f;
    color: white;
    text-decoration: none;
}

.contact {
    font-size: 1.3rem;
    font-weight: 600;
    color: #c4967f;
    margin-top: 40px;
}


@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    p {
        font-size: 1rem;
    }
    
    
    main {
        padding: 20px 0;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
}