.contact-section {
    background: linear-gradient(to right, #10b981, #059669);
    color: white;
    border-radius: 16px;
    padding: 40px 24px;
    margin-bottom: 48px;
    font-family: sans-serif;
}

.contact-section h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 16px;
}

.contact-section p {
    font-size: 16px;
    color: #d1fae5;
    margin-bottom: 32px;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 16px;
    flex: 1 1 250px;
}

.icon-title {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.icon-title .icon {
    font-size: 18px;
    margin-right: 8px;
}

.contact-card p {
    font-size: 14px;
    color: #e0f2f1;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f9fafb;
    color: #333;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 960px;
    margin: auto;
    padding: 48px 20px;
}

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

.icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #dbeafe;
    border-radius: 9999px;
    padding: 12px;
    margin-bottom: 24px;
}

.main-title {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 16px;
    color: #1f2937;
}

.subtitle {
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 16px;
}

.effective-date {
    margin-top: 12px;
    font-size: 14px;
    color: #6b7280;
}

.section {
    background-color: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 32px;
}

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

.section.red {
    background-color: #fef2f2;
    border-color: #fecaca;
    color: #991b1b;
}

.section.gray {
    background-color: #f9fafb;
    border-color: #d1d5db;
}

.section.yellow {
    background-color: #fefce8;
    border-color: #fde68a;
    color: #92400e;
}

.section-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}

.icon-box {
    background: linear-gradient(to right, #3b82f6, #06b6d4);
    border-radius: 12px;
    padding: 12px;
    margin-right: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.icon-box img {
    width: 24px;
    height: 24px;
    filter: invert(1);
}

ul {
    list-style: none;
    padding-left: 0;
}

li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
}

li::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #3b82f6;
    border-radius: 50%;
    margin-right: 12px;
    margin-top: 6px;
    flex-shrink: 0;
}

.contact {
    background: linear-gradient(to right, #3b82f6, #06b6d4);
    border-radius: 16px;
    padding: 32px;
    color: #fff;
    margin-top: 48px;
}

.contact-info {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 16px;
}

.contact-info p {
    margin: 4px 0;
}