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

html {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        sans-serif;
    background: #ffffff;
    min-height: 100%;
    color: #1a365d;
    line-height: 1.6;
    padding-top: 86px;
    display: flex;
    flex-direction: column;
}

/* Navigation */
.navbar {
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 30px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

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

.logo-img {
    max-height: 50px;
    width: auto;
}

/* Hero Section */
.hero {
    flex: 1;
    background: linear-gradient(135deg, #2b6cb0 0%, #1a4d7d 100%);
    color: white;
    padding: 40px 30px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    width: fit-content;
}

.hero-headline {
    font-size: 44px;
    font-weight: bold;
    margin: 0;
    line-height: 1.2;
}

.hero-subheadline {
    font-size: 20px;
    margin: 0;
    line-height: 1.5;
    opacity: 0.95;
}

.hero-guide-image {
    margin-top: 30px;
    width: 100%;
    max-width: 280px;
}

.hero-right {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* Form Styles */
.form-container {
    width: 100%;
}

.form-header {
    text-align: center;
    margin-bottom: 25px;
}

.form-header h2 {
    font-size: 24px;
    margin: 0 0 8px 0;
    color: #1a365d;
}

.form-header p {
    font-size: 13px;
    color: #718096;
    margin: 0;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 0;
}

.form-row .form-group {
    margin-bottom: 15px;
}

.form-row-three {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 10px;
    margin-bottom: 0;
}

.form-row-three .form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 4px;
}

input,
select {
    width: 100%;
    padding: 12px 14px;
    font-size: 16px;
    border: 2px solid #cbd5e0;
    border-radius: 6px;
    transition: all 0.3s;
    font-family: inherit;
    background: white;
    color: #2d3748;
}

input::placeholder,
select::placeholder {
    color: #a0aec0;
}

input:focus,
select:focus {
    outline: none;
    border-color: #2b6cb0;
    box-shadow: 0 0 0 3px rgba(43, 108, 176, 0.1);
}

.privacy-box {
    background: #f8f9fa;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    padding: 10px;
    margin: 18px 0 12px 0;
}

.disclaimer-text {
    margin-top: 12px;
}

.disclaimer-text p {
    font-size: 11px;
    color: #718096;
    margin: 0;
    line-height: 1.5;
    text-align: center;
}

.lock-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 1px;
}

.privacy-text {
    font-size: 12px;
    color: #4a5568;
    margin: 0;
    line-height: 1.5;
}

.submit-btn {
    width: 100%;
    padding: 13px;
    font-size: 15px;
    font-weight: bold;
    color: white;
    background: linear-gradient(135deg, #c53030 0%, #9b2c2c 100%);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
    box-shadow: 0 4px 12px rgba(197, 48, 48, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(197, 48, 48, 0.4);
}

.submit-btn:disabled {
    background: #cbd5e0;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.success-msg {
    color: #38a169;
    font-weight: 600;
    text-align: center;
    margin-bottom: 10px;
    font-size: 14px;
}

.error-msg {
    color: #c53030;
    font-weight: 600;
    text-align: left;
    margin-bottom: 10px;
    font-size: 14px;
}

/* Footer */
.footer {
    background: #1a365d;
    color: white;
    text-align: center;
}

.footer-disclaimer {
    padding: 20px 30px;
    background: #f8f9fa;
}

.footer-disclaimer p {
    font-size: 10px;
    color: #718096;
    max-width: 1200px;
    margin: 0 auto;
    line-height: 1.6;
}

.footer-red {
    background: #c53030;
    height: 8px;
}

.footer-contact {
    padding: 20px 30px;
    font-size: 14px;
}

.footer-contact p {
    margin: 0;
    opacity: 0.9;
}

/* Success */
.success-section {
    text-align: center;
}

.success-title,
.stop-title {
    color: #2b6cb0;
    font-size: 32px;
    padding: 12px 10%;
    line-height: 1.4;
}

.stop-title {
    padding: 12px 14%;
}

.success-body {
    color: #718096;
    padding: 6% 10%;
}

.stop-body {
    color: #718096;
    padding: 6% 25%;
}

.download-btn {
    width: 60%;
    padding: 16px 13px;
    font-size: 15px;
    font-weight: bold;
    color: white;
    background: linear-gradient(135deg, #c53030 0%, #9b2c2c 100%);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
    box-shadow: 0 4px 12px rgba(197, 48, 48, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-decoration: none;
}

.stop-section {
    text-align: center;
}

.text-center {
    text-align: center;
}

/* Responsive */
@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-right {
        padding: 30px;
    }

    .hero-guide-image {
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    .nav-container {
        padding: 12px 20px;
    }

    .logo-img {
        max-height: 40px;
    }

    .hero {
        padding: 30px 20px;
    }

    .hero-headline {
        font-size: 28px;
    }

    .hero-subheadline {
        font-size: 16px;
    }

    .hero-right {
        padding: 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-row-three {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .stop-title {
        padding: 12px 6%;
    }

    .stop-body {
        padding: 6% 14%;
    }

    .download-btn {
        font-size: 13px;
        width: 85%;
    }
}
