/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #f9fafb;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 20px 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.site-header .logo h1 {
    color: #1f2937;
    font-size: 24px;
    font-weight: 600;
}

.site-header .logo a {
    color: #3b82f6;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 5px;
    display: inline-block;
}

.site-header .logo a:hover {
    text-decoration: underline;
}

/* Main Content */
.main-content {
    padding: 40px 0;
    min-height: calc(100vh - 200px);
}

/* Typography */
h1, h2, h3, h4 {
    color: #111827;
    margin-bottom: 16px;
}

h1 {
    font-size: 36px;
    font-weight: 700;
}

h2 {
    font-size: 28px;
    font-weight: 600;
}

h3 {
    font-size: 20px;
    font-weight: 600;
}

h4 {
    font-size: 18px;
    font-weight: 600;
}

.page-title {
    margin-bottom: 30px;
}

p {
    margin-bottom: 16px;
}

.lead {
    font-size: 20px;
    color: #4b5563;
    margin-bottom: 24px;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 40px 0 60px;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #111827;
}

/* Sections */
.info-section,
.content-section,
.cta-section,
.contact-section {
    margin-bottom: 40px;
}

/* Alerts */
.alert {
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 24px;
    border-left: 4px solid;
}

.alert h3 {
    margin-top: 0;
    margin-bottom: 12px;
}

.alert p:last-child {
    margin-bottom: 0;
}

.alert ul {
    margin: 12px 0;
    padding-left: 24px;
}

.alert-warning {
    background-color: #fffbeb;
    border-left-color: #f59e0b;
    color: #92400e;
}

.alert-warning h3 {
    color: #92400e;
}

.alert-info {
    background-color: #eff6ff;
    border-left-color: #3b82f6;
    color: #1e40af;
}

.alert-info h3 {
    color: #1e40af;
}

.alert-success {
    background-color: #f0fdf4;
    border-left-color: #22c55e;
    color: #166534;
}

.alert-success h3 {
    color: #166534;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.benefit-card {
    background: white;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.benefit-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 0;
}

/* Benefit List */
.benefit-list {
    margin: 24px 0;
}

.benefit-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.benefit-item h4 {
    margin-bottom: 8px;
    color: #059669;
}

.benefit-item p {
    margin-bottom: 0;
    color: #4b5563;
}

/* Step Items */
.step-item {
    background: white;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.step-item h3 {
    color: #3b82f6;
    margin-bottom: 12px;
}

.step-item ul {
    margin: 12px 0;
    padding-left: 24px;
}

.step-item ul li {
    margin-bottom: 8px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background-color: #3b82f6;
    color: white;
}

.btn-primary:hover {
    background-color: #2563eb;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-large {
    padding: 20px 32px;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 300px;
}

.btn-icon {
    font-size: 32px;
}

.btn-content {
    text-align: left;
    flex: 1;
}

.btn-content small {
    display: block;
    font-size: 14px;
    font-weight: normal;
    opacity: 0.9;
    margin-top: 4px;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 40px 0;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin: 32px 0;
}

.cta-note {
    font-size: 14px;
    color: #6b7280;
    font-style: italic;
    margin-top: 24px;
}

/* Well */
.well {
    background-color: #f3f4f6;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.well h3 {
    margin-top: 0;
}

/* Contact Info */
.contact-info {
    font-size: 16px;
    margin-bottom: 8px;
}

.contact-info a {
    color: #3b82f6;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Note */
.note {
    font-size: 14px;
    color: #6b7280;
    padding: 16px;
    background-color: #f9fafb;
    border-radius: 6px;
    border-left: 3px solid #d1d5db;
}

.summary {
    font-size: 16px;
    padding: 16px;
    background-color: #eff6ff;
    border-radius: 6px;
    margin-top: 24px;
}

/* Service List */
.service-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.service-list li {
    padding: 12px;
    background: white;
    margin-bottom: 8px;
    border-radius: 6px;
    border-left: 3px solid #3b82f6;
}

/* Workflow Diagram */
.workflow-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin: 32px 0;
    padding: 24px;
    background: white;
    border-radius: 8px;
}

.workflow-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 16px;
}

.workflow-number {
    width: 48px;
    height: 48px;
    background-color: #3b82f6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 12px;
}

.workflow-step h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.workflow-step p {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 0;
}

.workflow-arrow {
    font-size: 24px;
    color: #3b82f6;
    font-weight: bold;
}

/* Footer */
.site-footer {
    background-color: #111827;
    color: #9ca3af;
    padding: 30px 0;
    text-align: center;
    margin-top: 60px;
}

.site-footer p {
    margin-bottom: 8px;
}

.site-footer a {
    color: #60a5fa;
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-large {
        min-width: auto;
        width: 100%;
        max-width: 400px;
    }

    .workflow-diagram {
        flex-direction: column;
    }

    .workflow-arrow {
        transform: rotate(90deg);
    }
}

