/* css/index.css */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #0f172a;
    background-color: #f8fafc;
    line-height: 1.6;
}

/* Header */
.main-header {
    background-color: #0f172a;
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: table;
    width: 100%;
}
.logo {
    display: inline-block;
    vertical-align: middle;
}
.logo-icon {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}
.logo-text {
    color: #ffffff;
    font-size: 20px;
    font-weight: 400;
    display: inline-block;
    vertical-align: middle;
}
.logo-text strong {
    color: #0284c7;
}
.main-nav {
    display: inline-block;
    float: right;
    margin-top: 5px;
}
.nav-link {
    color: #94a3b8;
    text-decoration: none;
    margin-right: 20px;
    font-size: 15px;
    transition: color 0.2s;
}
.nav-link:hover, .nav-link.active {
    color: #ffffff;
}
.nav-link-cta {
    background-color: #0284c7;
    color: #ffffff;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    transition: background-color 0.2s;
}
.nav-link-cta:hover {
    background-color: #0369a1;
}

/* Disclaimer Box */
.top-disclaimer-box {
    background-color: #fef3c7;
    border-bottom: 1px solid #fde68a;
    padding: 15px 20px;
}
.disclaimer-content {
    max-width: 1200px;
    margin: 0 auto;
}
.disclaimer-icon {
    display: inline-block;
    vertical-align: top;
    margin-right: 12px;
    margin-top: 2px;
}
.top-disclaimer-box p {
    display: inline-block;
    width: calc(100% - 35px);
    font-size: 12.5px;
    color: #78350f;
    text-align: justify;
}

/* Hero Section */
.hero-section {
    padding: 60px 20px;
    background-color: #ffffff;
}
.hero-container {
    max-width: 1200px;
    margin: 0 auto;
}
.hero-text-block {
    display: inline-block;
    width: 55%;
    vertical-align: middle;
    padding-right: 40px;
}
.hero-image-block {
    display: inline-block;
    width: 45%;
    vertical-align: middle;
}
.hero-text-block h1 {
    font-size: 38px;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 20px;
}
.hero-lead {
    font-size: 18px;
    color: #475569;
    margin-bottom: 25px;
}
.hero-benefits-list {
    margin-bottom: 30px;
}
.benefit-item {
    margin-bottom: 12px;
}
.benefit-item svg {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}
.benefit-item span {
    display: inline-block;
    vertical-align: middle;
    font-size: 15px;
    color: #334155;
}
.btn-primary-hero {
    display: inline-block;
    background-color: #0f172a;
    color: #ffffff;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.2s;
}
.btn-primary-hero:hover {
    background-color: #1e293b;
}
.hero-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services-section {
    padding: 60px 20px;
    background-color: #f8fafc;
}
.section-title-area {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 45px auto;
}
.section-title-area h2 {
    font-size: 28px;
    color: #0f172a;
    margin-bottom: 10px;
}
.section-subtitle {
    font-size: 16px;
    color: #64748b;
}
.services-grid {
    max-width: 1200px;
    margin: 0 auto;
}
.service-card {
    display: inline-block;
    width: 31%;
    margin-right: 3.5%;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    vertical-align: top;
}
.service-card:last-child {
    margin-right: 0;
}
.service-icon-wrapper {
    margin-bottom: 20px;
}
.service-card h3 {
    font-size: 18px;
    color: #0f172a;
    margin-bottom: 12px;
}
.service-card p {
    font-size: 14px;
    color: #475569;
    text-align: justify;
}

/* Process Section */
.process-section {
    padding: 60px 20px;
    background-color: #ffffff;
}
.process-steps-container {
    max-width: 1200px;
    margin: 0 auto;
}
.step-card {
    display: inline-block;
    width: 31%;
    margin-right: 3.5%;
    vertical-align: top;
    position: relative;
}
.step-card:last-child {
    margin-right: 0;
}
.step-number {
    font-size: 48px;
    font-weight: 800;
    color: #e2e8f0;
    line-height: 1;
    margin-bottom: 10px;
}
.step-card h4 {
    font-size: 18px;
    color: #0f172a;
    margin-bottom: 10px;
}
.step-card p {
    font-size: 14px;
    color: #475569;
}

/* Form Section */
.form-section {
    padding: 60px 20px;
    background-color: #0f172a;
    color: #ffffff;
}
.form-grid-container {
    max-width: 1200px;
    margin: 0 auto;
}
.form-info-side {
    display: inline-block;
    width: 48%;
    vertical-align: top;
    padding-right: 40px;
}
.form-wrapper {
    display: inline-block;
    width: 52%;
    vertical-align: top;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
}
.form-info-side h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #ffffff;
}
.form-info-side p {
    color: #94a3b8;
    font-size: 15px;
    margin-bottom: 30px;
}
.form-side-img {
    width: 100%;
    height: auto;
    border-radius: 6px;
}
.main-capture-form .form-group {
    margin-bottom: 20px;
}
.main-capture-form label {
    display: block;
    font-size: 14px;
    color: #334155;
    margin-bottom: 6px;
    font-weight: 500;
}
.main-capture-form input[type="text"],
.main-capture-form input[type="email"],
.main-capture-form input[type="tel"],
.main-capture-form select {
    width: 100%;
    padding: 12px;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    font-size: 15px;
    color: #0f172a;
}
.main-capture-form .checkbox-group {
    margin-top: 15px;
}
.main-capture-form .checkbox-group input {
    display: inline-block;
    vertical-align: top;
    margin-top: 4px;
    margin-right: 8px;
}
.main-capture-form .checkbox-group label {
    display: inline-block;
    width: calc(100% - 25px);
    font-size: 12px;
    color: #64748b;
    line-height: 1.4;
}
.main-capture-form .checkbox-group a {
    color: #0284c7;
    text-decoration: none;
}
.btn-submit-form {
    width: 100%;
    background-color: #0284c7;
    color: #ffffff;
    border: none;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.2s;
}
.btn-submit-form:hover {
    background-color: #0369a1;
}
.form-response-hidden {
    display: none;
    margin-top: 15px;
    padding: 12px;
    border-radius: 4px;
    font-size: 14px;
}
.form-response-success {
    display: block;
    background-color: #dcfce7;
    color: #14532d;
    border: 1px solid #bbf7d0;
}
.form-response-error {
    display: block;
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* Footer */
.main-footer {
    background-color: #0b0f19;
    color: #94a3b8;
    padding: 60px 20px 30px 20px;
    font-size: 14px;
    border-top: 1px solid #1e293b;
}
.footer-top-area {
    max-width: 1200px;
    margin: 0 auto 40px auto;
}
.footer-brand {
    display: inline-block;
    width: 40%;
    vertical-align: top;
}
.logo-text-footer {
    color: #ffffff;
    font-size: 22px;
    display: block;
    margin-bottom: 15px;
}
.logo-text-footer strong {
    color: #0284c7;
}
.footer-brand-pitch {
    font-size: 13.5px;
    color: #64748b;
    padding-right: 40px;
}
.footer-links-grid {
    display: inline-block;
    width: 60%;
    vertical-align: top;
    text-align: right;
}
.footer-column {
    display: inline-block;
    width: 45%;
    text-align: left;
    vertical-align: top;
}
.footer-column h5 {
    color: #ffffff;
    font-size: 14px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.footer-column a {
    display: block;
    color: #64748b;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 13.5px;
}
.footer-column a:hover {
    color: #ffffff;
}
.footer-disclaimer-bottom {
    max-width: 1200px;
    margin: 0 auto 30px auto;
    border-top: 1px solid #1e293b;
    padding-top: 30px;
}
.footer-disclaimer-bottom p {
    font-size: 11.5px;
    color: #475569;
    text-align: justify;
    line-height: 1.5;
}
.footer-copyright {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    border-top: 1px solid #1e293b;
    padding-top: 20px;
    font-size: 12px;
    color: #475569;
}

@media (max-width: 768px) {
    .hero-text-block, .hero-image-block, .service-card, .step-card, .form-info-side, .form-wrapper, .footer-brand, .footer-links-grid {
        width: 100% !important;
        display: block !important;
        margin-right: 0 !important;
        padding-right: 0 !important;
        margin-bottom: 30px;
    }
    .main-nav {
        float: none;
        display: block;
        margin-top: 15px;
    }
    .footer-links-grid {
        text-align: left;
    }
}
