.site-body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    background-color: #fdfdfd;
    color: #333;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.site-body * {
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.disclosure-banner {
    background-color: #f1f5f9;
    color: #64748b;
    font-size: 12px;
    text-align: center;
    padding: 10px 15px;
    border-bottom: 1px solid #e2e8f0;
}

.disclosure-text {
    margin: 0;
    padding: 0;
}

.header-container {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand-logo {
    font-size: 26px;
    font-weight: 800;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #4a4a4a;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 16px;
}

.nav-link:hover {
    color: #0284c7;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #333;
}

.hero-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

.hero-image-wrapper {
    flex: 1;
}

.hero-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    display: block;
}

.main-title {
    font-size: 46px;
    font-weight: 800;
    color: #111827;
    margin: 0 0 20px 0;
    line-height: 1.15;
}

.sub-title {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 15px 0;
}

.paragraph-text {
    font-size: 18px;
    line-height: 1.7;
    color: #4b5563;
    margin: 0 0 25px 0;
}

.price-display {
    font-size: 32px;
    font-weight: 800;
    color: #059669;
    margin: 0 0 25px 0;
    display: inline-block;
}

.cta-button {
    display: inline-block;
    background-color: #0284c7;
    color: #ffffff;
    padding: 16px 36px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #0369a1;
    transform: translateY(-2px);
}

.content-section {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #111827;
    margin: 40px 0 25px 0;
}

.section-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: #374151;
    margin: 30px 0 15px 0;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.feature-item {
    margin-bottom: 15px;
    font-size: 17px;
    color: #4b5563;
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    color: #059669;
    font-weight: bold;
    font-size: 20px;
}

.content-image {
    width: 100%;
    border-radius: 12px;
    margin: 30px 0;
    display: block;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border-radius: 8px;
    overflow: hidden;
}

.table-header-row {
    background-color: #f8fafc;
}

.table-header {
    padding: 16px;
    text-align: left;
    font-weight: 600;
    color: #1e293b;
    border-bottom: 2px solid #e2e8f0;
}

.table-row {
    border-bottom: 1px solid #e2e8f0;
}

.table-cell {
    padding: 16px;
    color: #4b5563;
    font-size: 16px;
}

.highlight-box {
    background-color: #f0f9ff;
    border-left: 4px solid #0284c7;
    padding: 20px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
}

.footer-section {
    background-color: #1e293b;
    color: #f8fafc;
    padding: 60px 20px 30px;
    margin-top: 80px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-brand {
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 20px 0;
    display: block;
    color: #fff;
}

.footer-text {
    font-size: 15px;
    color: #94a3b8;
    line-height: 1.7;
    margin: 0;
}

.footer-heading {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 20px 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-link-item {
    margin-bottom: 12px;
}

.footer-link {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 50px;
    border-top: 1px solid #334155;
    font-size: 14px;
    color: #64748b;
}

.footer-bottom-text {
    margin: 0;
}

/* Legal Pages Styling */
.legal-container {
    max-width: 800px;
    margin: 60px auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    width: 90%;
}

.address-block {
    font-style: normal;
    margin: 20px 0;
    color: #4b5563;
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        margin: 40px auto;
        gap: 30px;
    }
    .main-title {
        font-size: 36px;
    }
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        padding: 20px;
        box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
        border-top: 1px solid #eee;
    }
    .nav-menu.active {
        display: flex;
    }
    .menu-toggle {
        display: block;
    }
    .footer-container {
        flex-direction: column;
    }
    .legal-container {
        padding: 20px;
        margin: 30px auto;
        width: 95%;
    }
    .section-subtitle {
        font-size: 20px;
        hyphens: auto;
    }
    .main-title {
        font-size: 32px;
    }
}
