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


/* Section padding equivalent */
.section-padding {
    padding: 4rem 1rem;
}

.bg-white {
    background-color: white;
}

.max-w-4xl {
    max-width: 56rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

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

.mb-16 {
    margin-bottom: 4rem;
}

.inline-flex {
    display: inline-flex;
}

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

.space-x-reverse {
    flex-direction: row-reverse;
}

.space-x-3>*+* {
    margin-right: 0.75rem;
}

.bg-light-blue {
    background-color: #ecf3fa;
}

.rounded-full {
    border-radius: 9999px;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #0090d0;
}

.text-primary {
    color: #194f94;
}

.font-semibold {
    font-weight: 600;
}

.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

.font-bold {
    font-weight: 700;
}

.text-gradient {
    background: linear-gradient(135deg, #0090d0, #194f94);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.text-gray-600 {
    color: #4b5563;
}

.max-w-2xl {
    max-width: 42rem;
}

.space-y-4>*+* {
    margin-top: 1rem;
}

.faq-item {
    background-color: white;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.faq-button {
    width: 100%;
    text-align: right;
    padding: 1.5rem;
    border: none;
    background: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-button:hover {
    background-color: #f9fafb;
}

.faq-button:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 144, 208, 0.2);
}

.flex {
    display: flex;
}

.justify-between {
    justify-content: space-between;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.pr-4 {
    padding-right: 1rem;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

.mr-4 {
    margin-right: 1rem;
}

.chevron {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.2s ease;
}

.chevron-active {
    color: #0090d0;
}

.chevron-inactive {
    color: #9ca3af;
}

.faq-answer {
    transition: all 0.3s ease-in-out;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
}

.faq-answer.active {
    max-height: 24rem;
    opacity: 1;
}

.pb-6 {
    padding-bottom: 1.5rem;
}

.border-r-4 {
    border-right: 4px solid #0090d0;
}

.leading-relaxed {
    line-height: 1.625;
}

.mt-16 {
    margin-top: 4rem;
}

.bg-gradient {
    background: linear-gradient(to right, #194f94, #0090d0);
}

.rounded-2xl {
    border-radius: 1rem;
}

.p-8 {
    padding: 2rem;
}

.text-white {
    color: white;
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.opacity-90 {
    opacity: 0.9;
}

.flex-col {
    flex-direction: column;
}

.gap-4 {
    gap: 1rem;
}

.justify-center {
    justify-content: center;
}

.contact-button {
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.contact-button-primary {
    background-color: white;
    color: #194f94;
}

.contact-button-primary:hover {
    background-color: #f3f4f6;
}

.contact-button-secondary {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.contact-button-secondary:hover {
    background-color: white;
    color: #194f94;
}

@media (min-width: 640px) {
    .flex-col {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .text-4xl {
        font-size: 3rem;
        line-height: 1;
    }
}