/* Global */
body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: #ffffff;
    color: #222;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

/* Header with full-width logo background */
header {
    height: 220px; /* Adjust this to make the logo bigger or smaller */
    background: url("assets/logo.png") center/contain no-repeat;
    background-color: #ffffff;
    border-bottom: 1px solid #eee;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 20px 40px;
}

/* Navigation on top of logo */
.header-nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    background: #ffffffcc;
    padding: 8px 14px;
    border-radius: 8px;
    backdrop-filter: blur(6px);
    transition: 0.2s ease;
}

.header-nav a:hover {
    background: #e6e6e6cc;
}

.header-nav .button {
    background: #007aff;
    color: white;
}

.header-nav .button.active {
    background: #005fcc;
}

/* Hero */
.hero {
    text-align: center;
    padding: 120px 20px;
}

.hero.small {
    padding: 80px 20px;
}

.hero.enhanced {
    padding: 140px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%);
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto 30px auto;
}

.button.large {
    padding: 14px 28px;
    font-size: 1.1rem;
    border-radius: 10px;
}

.button.primary {
    background: #007aff;
    transition: background 0.2s ease;
}

.button.primary:hover {
    background: #005fcc;
}

/* Features */
.features {
    display: flex;
    justify-content: space-between;
    margin: 60px auto;
    gap: 20px;
}

.feature {
    flex: 1;
    background: #f9f9f9;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

/* Support Form */
.form-section {
    padding: 40px 0;
}

.form-wrapper {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 12px;
}

/* Footer */
.footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #eee;
    color: #888;
    font-size: 0.9rem;
}
