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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background: #f8f9fa;
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1e3a5f;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-consent.hidden {
    display: none;
}

.cookie-consent p {
    margin: 0;
    font-size: 0.95rem;
}

.cookie-consent a {
    color: #7ed957;
    text-decoration: underline;
}

.cookie-consent button {
    background: #7ed957;
    color: #1e3a5f;
    border: none;
    padding: 10px 24px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
}

.cookie-consent button:hover {
    background: #6bc847;
}

.site-header {
    background: white;
    border-bottom: 1px solid #e0e6ed;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e3a5f;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #1e3a5f;
}

.hero {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a8f 100%);
    color: white;
    padding: 100px 30px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: #7ed957;
    color: #1e3a5f;
    padding: 15px 35px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(126, 217, 87, 0.3);
}

.btn-secondary {
    color: white;
    text-decoration: underline;
    font-size: 1.05rem;
}

.btn-secondary:hover {
    opacity: 0.8;
}

.main-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 30px;
}

section {
    margin-bottom: 80px;
}

h2 {
    font-size: 2.2rem;
    color: #1e3a5f;
    margin-bottom: 30px;
}

h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.support-list {
    list-style: none;
    padding: 0;
}

.support-list li {
    background: white;
    padding: 20px;
    margin-bottom: 15px;
    border-left: 4px solid #7ed957;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.support-list strong {
    color: #1e3a5f;
}

.structure-block {
    background: white;
    padding: 30px;
    margin-bottom: 25px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.structure-block h3 {
    color: #1e3a5f;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border-top: 4px solid #7ed957;
}

.feature-card h3 {
    color: #1e3a5f;
}

.faq-item {
    background: white;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.faq-item h3 {
    color: #1e3a5f;
    margin-bottom: 12px;
}

.faq-item p {
    margin-bottom: 0;
}

.contact-form {
    background: white;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.contact-form h2 {
    margin-bottom: 20px;
}

.contact-form > p {
    margin-bottom: 35px;
    color: #555;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.required {
    color: #e74c3c;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e6ed;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #1e3a5f;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-group a {
    color: #1e3a5f;
}

.contact-form button[type="submit"] {
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
}

.site-footer {
    background: #1e3a5f;
    color: white;
    padding: 50px 30px 30px;
}

.footer-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #7ed957;
}

.disclaimer {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.thank-you-page,
.policy-page {
    max-width: 800px;
    margin: 60px auto;
    padding: 50px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.thank-you-page h1,
.policy-page h1 {
    color: #1e3a5f;
    margin-bottom: 30px;
}

.thank-you-page a,
.policy-page a {
    color: #1e3a5f;
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
}
