* {
    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.6;
    color: #1a1d21;
    background: #e8e6e3;
}

/* Header */
.header {
    background: #081933;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.logo-image {
    height: 200px;
    width: auto;
}

/* Container */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* Sections */
.section {
    background: white;
    border-radius: 16px;
    padding: 50px 45px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(8, 25, 51, 0.08);
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #081933;
}

.section-subtitle {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #6b1215;
}

.section-content {
    font-size: 17px;
    color: #1a1d21;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Problem/Solution Section */
.hero-section {
    background: linear-gradient(135deg, #081933 0%, #1a1d21 100%);
    color: #e8e6e3;
}

.hero-section .section-title {
    color: #e8e6e3;
}

.hero-section .section-subtitle {
    color: #ff4040;
}

.hero-section .section-content {
    color: #e8e6e3;
}

/* Value Props */
.value-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    margin-top: 30px;
}

.value-card {
    background: #e8e6e3;
    padding: 30px;
    border-radius: 12px;
    border-left: 5px solid #ff4040;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #081933;
    font-weight: 700;
}

.value-card ul {
    list-style: none;
    padding-left: 0;
}

.value-card li {
    padding: 10px 0;
    font-size: 16px;
    color: #1a1d21;
    display: flex;
    align-items: flex-start;
}

.value-card li:before {
    content: "→";
    color: #ff4040;
    font-weight: bold;
    margin-right: 12px;
    font-size: 18px;
}

/* Survey Links */
.survey-section {
    background: #6b1215;
    color: #e8e6e3;
}

.survey-section .section-title {
    color: #e8e6e3;
    text-align: center;
}

.survey-section .section-content {
    color: #e8e6e3;
    text-align: center;
    margin-bottom: 30px;
}

.survey-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 30px;
}

.survey-link {
    background: rgba(232, 230, 227, 0.1);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid rgba(255, 64, 64, 0.3);
    transition: all 0.3s ease;
}

.survey-link:hover {
    background: rgba(232, 230, 227, 0.15);
    border-color: #ff4040;
    transform: translateY(-5px);
}

.survey-link h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #ff4040;
}

.survey-link p {
    font-size: 15px;
    color: #e8e6e3;
    margin-bottom: 20px;
}

.survey-btn {
    display: inline-block;
    background: #ff4040;
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.survey-btn:hover {
    background: #e83636;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 64, 64, 0.3);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #ff4040 0%, #6b1215 100%);
    color: white;
    text-align: center;
}

.cta-section .section-title {
    color: white;
    font-size: 36px;
}

.cta-section .section-content {
    color: white;
    font-size: 18px;
    margin-bottom: 30px;
}

.form-container {
    max-width: 500px;
    margin: 30px auto 0;
    text-align: left;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: white;
    font-size: 15px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    font-size: 15px;
    background: rgba(255,255,255,0.95);
    color: #1a1d21;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: white;
    background: white;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: white;
    color: #6b1215;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #e8e6e3;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.success-message {
    background: #081933;
    color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin-top: 20px;
    font-weight: 600;
}

.hidden {
    display: none;
}

/* Footer */
.footer {
    text-align: center;
    padding: 40px 20px;
    color: #1a1d21;
}

.footer p {
    margin: 8px 0;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .logo-image {
        height: 35px;
    }

    .logo h1 {
        font-size: 32px;
    }

    .section {
        padding: 35px 25px;
    }

    .section-title {
        font-size: 26px;
    }

    .value-grid,
    .survey-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .container {
        padding: 40px 15px;
    }
}