.offering-section {
    scroll-margin-top: 100px;
}

.section-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, #e5e7eb, transparent);
    margin: 2rem 0;
}

.icon-box {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: white;
    color: #3b82f6;
    transition: all 0.3s ease;
    flex-shrink: 0;
    border: 1px solid #e5e7eb;
}

.icon-box:hover,
.offering-section:hover .icon-box {
    background-color: #dbeafe;
}

.subsection h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.subsection p,
.subsection ul {
    font-size: 1rem;
    line-height: 1.75;
    color: #4b5563;
}

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

.subsection ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.subsection ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
    font-size: 1.25rem;
    line-height: 1.5;
}

.list-disc-custom {
    list-style-type: disc;
    padding-left: 1.25rem;
}

.list-disc-custom li {
    margin-bottom: 0.5rem;
}

.list-disc-custom li::marker {
    color: #3b82f6;
}

.cta-section {
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    margin-bottom: 4rem;
    margin-top: 1.4rem;
}

.cta-section.bg-primary {
    background: #3B82F6 !important;
}

.cta-section.bg-primary h2,
.cta-section.bg-primary h2.text-gray-900 {
    color: white !important;
}

.cta-section.bg-primary p,
.cta-section.bg-primary p.text-gray-700 {
    color: rgba(255, 255, 255, 0.9) !important;
}

.cta-section.bg-primary a.bg-blue-600 {
    background-color: white !important;
    color: #3B82F6 !important;
    border: 1px solid white;
}

.cta-section.bg-primary a.bg-blue-600:hover {
    background-color: rgba(255, 255, 255, 0.9) !important;
    color: #2563EB !important;
}

.offering-section {
    transition: all 0.3s ease;
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid transparent;
}

.offering-section:hover {
    border-color: #dbeafe; 
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
}

.icon-box svg {
    width: 2rem;
    height: 2rem;
    stroke: #3b82f6;
    transition: all 0.3s ease;
}

.offering-section:hover .icon-box svg {
    stroke: #2563eb;
}

h2.text-3xl {
    transition: color 0.3s ease;
}

.offering-section:hover h2.text-3xl {
    color: #1f2937;
}

.section-link {
    display: inline-flex;
    align-items: center;
    color: #3b82f6;
    font-weight: 500;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.section-link:hover {
    color: #2563eb;
}

.section-link svg {
    width: 1rem;
    height: 1rem;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.section-link:hover svg {
    transform: translateX(4px);
}