.provider-box {
    background: none;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 800px;
    display: flex;
    align-items: center;
}

.provider-logo {
    flex: 0 0 130px;
    height: 60px;
    padding: 0.5rem;
    margin: 0 auto;
    text-align: center;
}

@media (min-width: 480px) {
    .provider-logo {
        margin: 0;
    }
}

.provider-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.provider-info {
    flex: 1;
    margin: 0 1rem;
}

.provider-info ul {
    padding-left: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
}

.provider-info ul li {
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.4;
    position: relative;
    padding-left: 1rem;
    color: #666;
    flex: 1 0 calc(50% - 1rem);
    box-sizing: border-box;
}

.provider-info ul li::before {
    content: "\f00c"; /* Font Awesome check icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0.1em;
    color: #007bff;
    font-size: 1.2em;
    margin-right: 0.5rem;
}

.provider-info ul li {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    padding-left: 1.5rem;
}
.provider-box {
    background: none;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 800px;
    display: flex;
    align-items: center;
}

.provider-logo {
    flex: 0 0 130px;
    height: 60px;
    padding: 0.5rem;
    margin: 0;
}

.provider-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.provider-info {
    flex: 1;
    margin: 0 1rem;
}

.provider-info ul {
    padding-left: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
}

.provider-info ul li {
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.4;
    position: relative;
    padding-left: 1rem;
    color: #666;
    flex: 1 0 calc(50% - 1rem);
    box-sizing: border-box;
}

.provider-info ul li::before {
    content: "\f00c"; /* Font Awesome check icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0.1em;
    color: #007bff;
    font-size: 0.9em;
}

.provider-link,
.provider-button {
    flex: 0 0 150px;
    height: 50px;
    padding: 0;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* General styles */
body {
    font-family: sans-serif;
    margin: 0;
    background-color: #202F6C;
    color: white;
}

/* Header styles */
header {
    background-color: white;
    color: #202F6C;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

/* Hamburger menu styles */
.hamburger {
    display: none;
    padding: 0.5rem;
    cursor: pointer;
    background: transparent;
    border: none;
    z-index: 1000;
}

.hamburger-box {
    width: 30px;
    height: 24px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    width: 100%;
    height: 3px;
    background-color: #202F6C;
    border-radius: 4px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.2s ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: '';
    width: 100%;
    height: 3px;
    background-color: #202F6C;
    border-radius: 4px;
    position: absolute;
    left: 0;
    transition: transform 0.2s ease;
}

.hamburger-inner::before {
    top: -8px;
}

.hamburger-inner::after {
    top: 8px;
}

/* Mobile menu styles */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 250px;
        background: white;
        flex-direction: column;
        padding: 6rem 2rem;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 999;
        display: flex;
        visibility: hidden;
        opacity: 0;
    }
    
    .nav-links.active {
        right: 0;
        visibility: visible;
        opacity: 1;
    }
    
    .nav-links li {
        margin: 1rem 0;
    }
    
    .login {
        margin-left: 0;
        margin-top: 1rem;
    }
}

/* Hamburger animation */
.hamburger.active .hamburger-inner {
    transform: rotate(45deg);
}

.hamburger.active .hamburger-inner::before {
    transform: rotate(90deg);
    top: 0;
}

.hamburger.active .hamburger-inner::after {
    transform: rotate(90deg);
    top: 0;
}

.logo {
    font-weight: bold;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease;
}

.logo:hover {
    opacity: 0.8;
}

.logo i {
    font-size: 1.8rem;
    color: #202F6C;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2rem;
}

ul li a {
    text-decoration: none;
    color: inherit;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.2s ease;
}

ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #202F6C;
    transition: width 0.3s ease;
}

ul li a:hover {
    color: #1a254f;
}

ul li a:hover::after {
    width: 100%;
}

.login {
    background-color: #202F6C;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.login:hover {
    background-color: white;
    color: #202F6C;
    border-color: #202F6C;
    transform: translateY(-2px);
}

/* Hero section styles */
.hero {
    text-align: center;
    padding: 2rem;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #2575fc 0%, #6a11cb 50%, #4a5568 100%);
    color: white;
}

.hero-h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

/* Subpage hero styles */
body:not(.home) .hero {
    min-height: 15vh;
    padding: 1.5rem;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-subtext {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem auto;
    line-height: 1.5;
}

.options {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.option {
    background-color: white;
    color: #202F6C;
    padding: 1.5rem;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 150px;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.option:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.option i {
    font-size: 32px;
    margin-bottom: 0.5rem;
    color: #202F6C;
}

.option p {
    text-align: center;
    margin: 0;
}

.next {
    font-size: 2rem;
    font-weight: bold;
}

/* Deals section styles */
.deals {
    padding: 80px 20px;
    background: #f8f9fa;
}

.deals-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.deals h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.deals-subtext {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 15px;
}

.deal-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.deal-item {
    background: white;
    padding: 40px 25px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.deal-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.deal-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
}

.deal-icon i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    font-size: 2.2rem;
    color: #007bff;
    z-index: 2;
    width: 100%;
    text-align: center;
}

.icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #e9f2ff;
    border-radius: 50%;
    z-index: 1;
}

.deal-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.deal-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
}

.deal-stat {
    font-size: 1.1rem;
    font-weight: 600;
    color: #007bff;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

/* Provider boxes styles */
.providers-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.provider-box {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    width: 100%;
    max-width: 800px;
    color: #333;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

@media (max-width: 768px) {
    .provider-box {
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
    }
    
    .provider-content {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    
    .provider-info {
        width: 100%;
    }
    
    .provider-link {
        width: 100%;
        margin-left: 0;
        margin-top: 1rem;
    }
}

.provider-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.provider-info {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

.provider-info ul {
    padding-left: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    width: 100%;
}

.provider-info ul li {
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.4;
    position: relative;
    padding-left: 1rem;
    flex: 1 0 100%;
    box-sizing: border-box;
}

@media (min-width: 480px) {
    .provider-info ul li {
        flex: 1 0 calc(50% - 1rem);
    }
}

.provider-info ul li::before {
    content: "\f00c"; /* Font Awesome check icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0.1em;
    color: #007bff;
    font-size: 0.9em;
}

.provider-link,
.provider-button {
    flex: 0 0 150px;
    height: 50px;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

@media (min-width: 480px) {
    .provider-link,
    .provider-button {
        width: auto;
        margin: 0;
    }
}

.provider-info ul li,
.provider-info {
    color: #333;
}

.provider-link {
    background: linear-gradient(
        145deg,
        rgba(0, 123, 255, 0.8),
        rgba(0, 168, 255, 0.8)
    );
    color: white;
    padding: 14px 28px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 
        0 4px 30px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.provider-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.6s ease;
}

.provider-link:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 40px rgba(0, 123, 255, 0.3),
        0 0 0 2px rgba(255, 255, 255, 0.2) inset;
    background: linear-gradient(
        145deg,
        rgba(0, 123, 255, 0.9),
        rgba(0, 168, 255, 0.9)
    );
}

.provider-link:hover::before {
    left: 100%;
}

.provider-link:active {
    transform: translateY(0);
    box-shadow: 
        0 3px 20px rgba(0, 123, 255, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.provider-link:focus {
    outline: none;
    box-shadow: 
        0 0 0 3px rgba(0, 123, 255, 0.3),
        0 0 0 2px rgba(255, 255, 255, 0.2) inset;
}

.provider-button {
    background: linear-gradient(
        145deg,
        rgba(255, 193, 7, 0.8),
        rgba(255, 152, 0, 0.8)
    );
    color: white;
    padding: 14px 28px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 
        0 4px 30px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.provider-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.6s ease;
}

.provider-button:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 40px rgba(255, 193, 7, 0.3),
        0 0 0 2px rgba(255, 255, 255, 0.2) inset;
    background: linear-gradient(
        145deg,
        rgba(255, 193, 7, 0.9),
        rgba(255, 152, 0, 0.9)
    );
}

.provider-button:hover::before {
    left: 100%;
}

.provider-button:active {
    transform: translateY(0);
    box-shadow: 
        0 3px 20px rgba(255, 193, 7, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.provider-button:focus {
    outline: none;
    box-shadow: 
        0 0 0 3px rgba(255, 193, 7, 0.3),
        0 0 0 2px rgba(255, 255, 255, 0.2) inset;
}

/* Footer styles */
footer {
    background-color: #1a254f;
    color: white;
    padding: 3rem 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-icons a {
    color: white;
    font-size: 1.2rem;
    transition: opacity 0.2s ease;
}

.social-icons a:hover {
    opacity: 0.8;
}
