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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    padding-top: 80px;
    background: white;
}

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

/* Main Content */
.main-content {
    padding-top: 128px;
    padding-bottom: 80px;
}

.page-header {
    text-align: center;
    margin-bottom: 48px;
}

.page-header h1 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

.subtitle {
    font-size: 1.25rem;
    color: #6b7280;
}

/* Content Container */
.content {
    max-width: 896px;
    margin: 0 auto;
    font-size: 1.125rem;
}

/* Notice Boxes */
.notice-box {
    border-radius: 8px;
    padding: 32px;
    margin-bottom: 32px;
    display: flex;
    align-items: flex-start;
    border: 1px solid;
}

.notice-box.blue {
    background: #eff6ff;
    border-color: #bfdbfe;
}

.notice-box.yellow {
    background: #fef3c7;
    border-color: #fde68a;
}

.notice-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-right: 16px;
    flex-shrink: 0;
}

.notice-box.blue .notice-icon {
    background: #dbeafe;
}

.notice-box.yellow .notice-icon {
    background: #fef3c7;
}

.notice-box.blue .notice-icon i {
    font-size: 1.25rem;
    color: #2563eb;
}

.notice-box.yellow .notice-icon i {
    font-size: 1.25rem;
    color: #d97706;
}

.notice-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.notice-box.blue .notice-content h2 {
    color: #1e3a8a;
}

.notice-box.yellow .notice-content h2 {
    color: #78350f;
}

.notice-content p {
    font-size: 1.125rem;
    line-height: 1.75;
    margin-bottom: 16px;
}

.notice-box.blue .notice-content p {
    color: #1e40af;
}

.notice-box.yellow .notice-content p {
    color: #92400e;
}

.notice-content ul {
    list-style: disc;
    padding-left: 24px;
    margin-top: 16px;
}

.notice-box.yellow .notice-content ul {
    color: #92400e;
}

.notice-content ul li {
    margin-bottom: 8px;
    line-height: 1.75;
}

/* Sections */
.section {
    margin-bottom: 32px;
}

.section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 24px;
}

/* Compensation Grid */
.compensation-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.compensation-card {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 24px;
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.card-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-right: 12px;
    flex-shrink: 0;
}

.card-icon.green {
    background: #d1fae5;
}

.card-icon.blue {
    background: #dbeafe;
}

.card-icon.purple {
    background: #e9d5ff;
}

.card-icon.orange {
    background: #fed7aa;
}

.card-icon.green i {
    color: #059669;
}

.card-icon.blue i {
    color: #2563eb;
}

.card-icon.purple i {
    color: #9333ea;
}

.card-icon.orange i {
    color: #ea580c;
}

.card-header h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
}

.compensation-card p {
    color: #374151;
    line-height: 1.75;
}

/* Commitment Grid */
.commitment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.commitment-card {
    text-align: center;
}

.commitment-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 16px;
}

.commitment-icon.blue {
    background: #dbeafe;
}

.commitment-icon.green {
    background: #d1fae5;
}

.commitment-icon.purple {
    background: #e9d5ff;
}

.commitment-icon.blue i {
    font-size: 1.5rem;
    color: #2563eb;
}

.commitment-icon.green i {
    font-size: 1.5rem;
    color: #059669;
}

.commitment-icon.purple i {
    font-size: 1.5rem;
    color: #9333ea;
}

.commitment-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

.commitment-card p {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.75;
}

/* Disclaimers */
.disclaimers {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.disclaimer-item {
    border-left: 4px solid;
    padding-left: 24px;
}

.disclaimer-item.red {
    border-color: #f87171;
}

.disclaimer-item.blue {
    border-color: #60a5fa;
}

.disclaimer-item.green {
    border-color: #4ade80;
}

.disclaimer-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

.disclaimer-item p {
    color: #374151;
    line-height: 1.75;
}

/* Recommendation Box */
.recommendation-box {
    background: linear-gradient(to right, #eff6ff, #d1fae5);
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 32px;
    text-align: center;
    margin-bottom: 48px;
}

.recommendation-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    margin: 0 auto 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.recommendation-icon i {
    font-size: 1.5rem;
    color: #2563eb;
}

.recommendation-box h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

.recommendation-box > p {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.75;
    margin-bottom: 24px;
}

.recommendation-checklist {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.checklist-item {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: #6b7280;
}

.checklist-item i {
    color: #10b981;
    margin-right: 8px;
}

/* Contact Box */
.contact-box {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 24px;
}

.contact-box p {
    color: #374151;
    line-height: 1.75;
    margin-bottom: 16px;
}

.contact-info {
    display: flex;
    align-items: center;
}

.contact-info i {
    width: 20px;
    height: 20px;
    color: #3b82f6;
    margin-right: 8px;
}

.contact-info span {
    color: #374151;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-content {
        padding-top: 96px;
        padding-bottom: 60px;
    }

    .page-header h1 {
        font-size: 1.75rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .content {
        font-size: 1rem;
    }

    .notice-box {
        padding: 16px;
        flex-direction: column;
    }

    .notice-icon {
        margin-bottom: 12px;
    }

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

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

    .recommendation-checklist {
        flex-direction: column;
        align-items: center;
    }
}

