/* Base styles */
:root {
    --blue-900: #1e3a8a;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-300: #d1d5db;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --green-600: #059669;
    --green-700: #047857;
    --green-500: #10b981;
    --blue-100: #dbeafe;
    --blue-600: #2563eb;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--gray-50);
    color: var(--gray-800);
    line-height: 1.5;
}

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

/* Header styles */
header {
    background-color: var(--blue-900);
    color: white;
    padding: 4rem 0;
    margin-bottom: 3rem;
}

.logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.logo {
    color: var(--blue-100);
}

.hero-text {
    font-size: 1.25rem;
    text-align: center;
    max-width: 64rem;
    margin: 0 auto;
    color: var(--blue-100);
    padding: 0 1rem;
}

/* Main content styles */
.section-title {
    font-size: 1.875rem;
    font-weight: bold;
    text-align: center;
    color: var(--gray-800);
    margin-bottom: 2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.benefit-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.benefit-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.icon {
    color: var(--blue-600);
}

.benefit-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

/* Features section */
.features-section {
    background-color: var(--gray-100);
    padding: 2rem;
    border-radius: 0.75rem;
    margin-bottom: 4rem;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: start;
    gap: 0.75rem;
}

.check-icon {
    color: var(--green-500);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

/* CTA section */
.cta-section {
    text-align: center;
    margin-bottom: 4rem;
}

.cta-text {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    background-color: var(--green-600);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s;
}

.cta-button:hover {
    background-color: var(--green-700);
}

/* Footer */
.footer {
    background-color: var(--gray-900);
    color: var(--gray-300);
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.building-icon {
    color: var(--gray-300);
}

.footer-subtitle {
    text-align: center;
    font-size: 0.875rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-text {
        font-size: 1.125rem;
        white-space: normal;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.5rem;
    }
}
