/* ===== Layout ===== */
.site-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden; /* Prevent horizontal scroll on mobile */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

.site-content {
    flex: 1;
    padding-top: 0;
}

@media (max-width: 640px) {
    .site-content {
        padding-top: 70px; /* Account for fixed header */
    }
}

/* ===== Sections ===== */
.section {
    padding: var(--spacing-3xl) 0;
    position: relative;
}

@media (max-width: 640px) {
    .section {
        padding: var(--spacing-xl) 0;
    }

    .section:first-of-type {
        padding-top: var(--spacing-lg);
    }
}

.section:nth-child(even) {
    background-color: var(--bg-lighter);
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
    position: relative;
    display: inline-block;
    width: 100%;
    padding-bottom: var(--spacing-md);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.section-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* ===== Two Column Layout ===== */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.two-column-reverse {
    direction: rtl;
}

.two-column-reverse > * {
    direction: ltr;
}

.two-column img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

.two-column ul.content-list li {
    padding: var(--spacing-md) 0;
    padding-left: var(--spacing-xl);
}

/* Content list with checkmarks - apply to content lists explicitly */
.content-list {
    list-style: none;
    padding-left: 0;
}

.content-list li {
    padding: var(--spacing-sm) 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.7;
}

.content-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    top: var(--spacing-sm);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.125rem;
    width: 1.5rem;
    text-align: left;
    line-height: 1.7;
}

/* Problem/Warning list style - for negative items */
.problem-list {
    list-style: none;
    padding-left: 0;
}

.problem-list li {
    padding: var(--spacing-sm) 0;
    padding-left: 2.25rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.7;
}

.problem-list li::before {
    content: '\2717';
    position: absolute;
    left: 0;
    top: var(--spacing-sm);
    color: #dc3545;
    font-weight: 700;
    font-size: 1.375rem;
    width: 1.75rem;
    text-align: left;
    line-height: 1.7;
    font-family: Arial, sans-serif;
}

.two-column .problem-list li::before {
    top: var(--spacing-md);
}

/* Pricing section wrapper - centers title and list together */
.pricing-section {
    text-align: center;
    margin: var(--spacing-xl) 0;
}

.pricing-section h3 {
    margin-bottom: var(--spacing-lg);
}

.pricing-section .pricing-list {
    display: inline-block;
    text-align: left;
    width: 100%;
    max-width: 600px;
}

.pricing-list li {
    clear: both;
    overflow: hidden;
}

.pricing-list li strong {
    display: inline-block;
}

.pricing-list li span {
    float: right;
}

ol {
    padding-left: var(--spacing-xl);
}

ol li {
    margin-bottom: var(--spacing-sm);
    color: var(--text-light);
    line-height: 1.7;
}
