* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

/* Header & Navigation */
header {
    /* background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
    position: sticky;
    top: 0;
    z-index: 100;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: white;
    padding: 80px 20px 140px;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 80px; /* Space before cards */
}

/* === Information Cards (Overlapping) === */
.info-cards-wrapper {
    position: absolute;
    bottom: -100px; /* Half card height extends below hero */
    left: 0;
    right: 0;
    z-index: 10;
}

.info-cards {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

/* Individual card */
.info-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: stretch;
    overflow: hidden;
    min-height: 200px;
}

/* Text column */
.info-card__text {
    padding: 28px 24px;
    flex: 1 1 60%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.info-card__title {
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    margin-bottom: 20px;
    text-align: left;
}

/* CTA link */
.info-card__link {
    border: none;
    background: none;
    color: #0066cc;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    padding: 0;
    align-self: flex-start;
    text-align: left;
}

.info-card__link:hover {
    text-decoration: underline;
}

/* Image circle */
.info-card__image {
    flex: 0 0 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.info-card__image img {
    width: 100%;
    max-width: 140px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    object-fit: cover;
}

/* Benefits Section - Add top padding to accommodate overlapping cards */
.benefits {
    padding: 160px 20px 80px; /* Extra top padding for overlapping cards */
    background-color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 60px 20px 180px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        margin-bottom: 60px;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
    }

    .info-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .info-cards-wrapper {
        bottom: -320px;
    }

    .benefits {
        padding: 360px 20px 80px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 50px 15px 200px;
    }

    .hero h1 {
        font-size: 24px;
    }

    .hero p {
        font-size: 14px;
    }

    .info-card {
        flex-direction: column;
        min-height: auto;
    }

    .info-card__image {
        justify-content: flex-start;
        padding: 0 24px 24px;
    }

    .info-card__image img {
        max-width: 120px;
    }

    .benefits {
        padding: 420px 15px 50px;
    }
}

.btn-primary {
    background-color: #fff;
    color: #0066cc;
    padding: 14px 32px;
    border-radius: 6px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    padding: 14px 32px;
    border-radius: 6px;
    border: 2px solid white;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Container */
.container {
    max-width: 1700px;
    margin: 0 auto;
    /* padding: 0 20px; */
}

/* Benefits Section - Updated Design */
.benefits {
    padding: 160px 20px 80px;
    background-color: #ffffff;
}

.benefits-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: #003d5c;
    font-weight: 700;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

.benefit-item {
    padding: 0;
    background-color: transparent;
    border-radius: 0;
    border: none;
    text-align: center;
}

.benefit-item:hover {
    transform: none;
    box-shadow: none;
}

.benefit-icon-wrapper {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.benefit-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: #0066cc;
}

.benefit-item h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #003d5c;
    font-weight: 600;
}

.benefit-item p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    max-width: 350px;
    margin: 0 auto;
}

/* Stats Section - Updated Design */
.stats {
    background-color: #ffffff;
    padding: 80px 20px;
}

.stats-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.stats-heading {
    font-size: 32px;
    font-weight: 700;
    color: #003d5c;
    margin-bottom: 0;
    display: inline-block;
    margin-right: 60px;
}

.stats-grid {
    display: inline-flex;
    gap: 80px;
    align-items: flex-start;
}

.stat-item {
    text-align: left;
    flex: 0 0 auto;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #003d5c;
    white-space: nowrap;
}

.stat-label {
    font-size: 14px;
    color: #555;
    line-height: 1.4;
    max-width: 200px;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.stat-label i {
    font-size: 12px;
    color: #999;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .stats-wrapper {
        display: flex;
        flex-direction: column;
    }

    .stats-heading {
        margin-bottom: 40px;
        margin-right: 0;
        display: block;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .stat-item {
        text-align: center;
    }

    .stat-label {
        justify-content: center;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .stats {
        padding: 60px 20px;
    }

    .stats-heading {
        font-size: 26px;
        text-align: center;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stat-number {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .stats {
        padding: 50px 15px;
    }

    .stats-heading {
        font-size: 22px;
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-label {
        font-size: 13px;
    }
}
/* Responsive */
@media (max-width: 768px) {
    .benefits {
        padding: 360px 20px 60px;
    }

    .benefits-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .benefits-grid {
        gap: 40px;
    }

    .benefit-icon {
        width: 100px;
        height: 100px;
        font-size: 42px;
    }
}

@media (max-width: 480px) {
    .benefits {
        padding: 420px 15px 50px;
    }

    .benefits-title {
        font-size: 24px;
    }

    .benefit-icon {
        width: 90px;
        height: 90px;
        font-size: 38px;
    }
}

/* Privacy Section - Modern Design */
/* Privacy Section - Modern Design with White Block */
.privacy-modern {
    padding: 80px 20px;
    background-color: #ffffff;
}

.privacy-modern__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background-color: #f1f7fe;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.privacy-modern__image {
    position: relative;
    display: flex;
    justify-content: center;
}

.privacy-modern__image-bg {
    position: relative;
    width: 100%;
    max-width: 350px;
    aspect-ratio: 1 / 1;
}

.privacy-modern__image img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.privacy-modern__content {
    max-width: 500px;
}

.privacy-modern__content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #003d5c;
    margin-bottom: 20px;
    line-height: 1.2;
}

.privacy-modern__content p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn-privacy {
    background-color: #0066cc;
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.btn-privacy:hover {
    background-color: #0052a3;
}

/* App Download Section - Separate White Block */
.app-download {
    padding: 0 20px 80px;
    background-color: #ffffff;
}

.app-download__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background-color: #e7f4fd;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.app-download__content {
    max-width: 500px;
}

.app-download__content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #003d5c;
    margin-bottom: 20px;
    line-height: 1.2;
}

.app-download__content p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
}

.app-download__rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.app-download__rating .stars {
    font-size: 20px;
    color: #ffc107;
}

.app-download__rating .rating-text {
    font-size: 14px;
    color: #555;
}

.app-download__buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.store-button {
    display: inline-block;
}

.store-button img {
    height: 45px;
    width: auto;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.store-button:hover img {
    transform: scale(1.05);
}

.app-download__image {
    position: relative;
    display: flex;
    justify-content: center;
}

.app-download__image-bg {
    position: relative;
    width: 100%;
    max-width: 350px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-download__image img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Responsive */
@media (max-width: 968px) {
    .privacy-modern__container,
    .app-download__container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px;
    }

    .privacy-modern__image,
    .app-download__image {
        order: -1;
        justify-content: center;
    }

    .privacy-modern__image-bg,
    .app-download__image-bg {
        margin: 0 auto;
        max-width: 300px;
    }

    .privacy-modern__content,
    .app-download__content {
        text-align: center;
        margin: 0 auto;
    }

    .app-download__buttons {
        justify-content: center;
    }

    .app-download__rating {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .privacy-modern {
        padding: 60px 20px;
    }

    .app-download {
        padding: 0 20px 60px;
    }

    .privacy-modern__container,
    .app-download__container {
        padding: 30px;
    }

    .privacy-modern__content h2,
    .app-download__content h2 {
        font-size: 28px;
    }

    .privacy-modern__content p,
    .app-download__content p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .privacy-modern {
        padding: 50px 15px;
    }

    .app-download {
        padding: 0 15px 50px;
    }

    .privacy-modern__container,
    .app-download__container {
        padding: 25px 20px;
    }

    .privacy-modern__content h2,
    .app-download__content h2 {
        font-size: 24px;
    }

    .privacy-modern__image-bg,
    .app-download__image-bg {
        max-width: 250px;
    }

    .store-button img {
        height: 38px;
    }
}

/* Modal Popup */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    width: 90%;
    max-width: 450px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #666;
    transition: color 0.2s ease;
}

.modal-close:hover {
    color: #000;
}

.modal h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #222;
}

.modal p {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #222;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    width: 100%;
    background-color: #0066cc;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #0052a3;
}

.signup-link {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #666;
}

.signup-link a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
    }

    .benefits h2,
    .privacy h2,
    .reviews h2,
    .providers h2 {
        font-size: 28px;
    }

    .stat-number {
        font-size: 36px;
    }

    .modal-content {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 12px 15px;
    }

    .logo {
        font-size: 20px;
    }

    .hero {
        padding: 50px 15px;
    }

    .hero h1 {
        font-size: 24px;
    }

    .hero p {
        font-size: 14px;
    }

    .benefits,
    .privacy,
    .reviews,
    .providers {
        padding: 50px 15px;
    }

    .benefit-item,
    .review-card,
    .provider-card {
        padding: 20px;
    }

    .benefits-grid,
    .review-cards {
        gap: 20px;
    }

    .stats {
        padding: 40px 15px;
    }

    .stats-grid {
        gap: 25px;
    }

    .stat-number {
        font-size: 28px;
    }

    .mobile-menu {
        top: 55px;
    }
}

.info-strip {
    position: relative;
    background-color: #0066cc;   /* same as hero bottom blue */
    padding: 0 0 80px;           /* bottom space before next section */
    overflow: visible;
}

/* Vertical line going down from the blue header */
.info-strip__line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 60px;
    background-color: #ffffff;
    transform: translateX(-50%);
}

/* Cards container */
.info-strip__cards {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    transform: translateY(40px); /* makes cards float below blue area */
}

/* Individual card */
.info-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

/* Text column */
.info-card__text {
    padding: 24px 20px;
    flex: 1 1 60%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.info-card__title {
    font-size: 15px;
    line-height: 1.5;
    color: #333;
    margin-bottom: 20px;
}

/* CTA link styled as button-text */
.info-card__link {
    border: none;
    background: none;
    color: #0066cc;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    padding: 0;
    align-self: flex-start;
}

.info-card__link:hover {
    text-decoration: underline;
}

/* Image circle */
.info-card__image {
    flex: 0 0 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 14px;
    padding-left: 14px;
}

.info-card__image img {
    width: 100%;
    max-width: 160px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    object-fit: cover;
}

/* Optional: different clipping for left/right image if needed */
.info-card__image--left img {
    object-position: center;
}

.info-card__image--right img {
    object-position: center;
}

/* Responsive */
@media (max-width: 768px) {
    .info-strip__cards {
        grid-template-columns: 1fr;
        transform: translateY(30px);
    }

    .info-card {
        flex-direction: row;
    }
}

@media (max-width: 480px) {
    .info-card {
        flex-direction: column;
    }

    .info-card__image {
        justify-content: flex-start;
        padding: 0 20px 20px;
    }

    .info-card__image img {
        max-width: 120px;
    }
}

/* Healthcare Workers Section */
.healthcare-workers {
    padding: 80px 20px;
    background-color: #ffffff;
}

.healthcare-workers__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: linear-gradient(135deg, #003d5c 0%, #00152e 100%);
    padding: 60px;
    border-radius: 16px;
    color: white;
}

.healthcare-workers__image {
    position: relative;
    display: flex;
    justify-content: center;
}

.healthcare-workers__image-bg {
    position: relative;
    width: 100%;
    max-width: 350px;
    aspect-ratio: 1 / 1;
}

.healthcare-workers__image-bg::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    width: 200px;
    height: 200px;
    background-color: #0066cc;
    border-radius: 50%;
    z-index: 0;
}

.healthcare-workers__image img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.healthcare-workers__content {
    max-width: 550px;
}

.healthcare-workers__content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.healthcare-workers__content .subtitle {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.benefits-list {
    list-style: none;
    margin-bottom: 30px;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.5;
}

.benefits-list i {
    color: #ffc107;
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}

.btn-learn-more {
    background-color: #0066cc;
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.btn-learn-more:hover {
    background-color: #0052a3;
}

/* Recruiting Section */
.recruiting {
    padding: 0 20px 80px;
    background-color: #ffffff;
}

.recruiting__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    align-items: center;
    background-color: #e8f4fc;
    padding: 60px;
    border-radius: 16px;
    text-align: center;
}

.recruiting__image-left,
.recruiting__image-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.recruiting__image-left img,
.recruiting__image-right img {
    width: 100%;
    max-width: 180px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.recruiting__circle {
    position: absolute;
    border-radius: 50%;
}

.recruiting__circle--yellow {
    width: 140px;
    height: 140px;
    background-color: #ffc107;
    top: -30px;
    left: -20px;
    z-index: 0;
}

.recruiting__circle--pink {
    width: 120px;
    height: 120px;
    background-color: #ff4081;
    top: -20px;
    right: -25px;
    z-index: 0;
}

.recruiting__circle--blue {
    width: 100px;
    height: 100px;
    background-color: #0066cc;
    bottom: -20px;
    right: 10px;
    z-index: 0;
}

.recruiting__content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #003d5c;
    margin-bottom: 15px;
}

.recruiting__content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 25px;
}

.btn-view-jobs {
    background-color: #0066cc;
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.btn-view-jobs:hover {
    background-color: #0052a3;
}

/* Help Section */
.help-section {
    padding: 40px 20px;
    background-color: #ffffff;
}

.help-section__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.help-section__text h3 {
    font-size: 20px;
    font-weight: 700;
    color: #003d5c;
    margin-bottom: 5px;
}

.help-section__text p {
    font-size: 14px;
    color: #555;
}

.btn-help {
    background-color: #0066cc;
    color: white;
    padding: 12px 28px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s ease;
}

.btn-help:hover {
    background-color: #0052a3;
}

.btn-help i {
    font-size: 16px;
}

/* Responsive */
@media (max-width: 968px) {
    .healthcare-workers__container {
        grid-template-columns: 1fr;
        padding: 40px;
        text-align: center;
    }

    .healthcare-workers__image {
        order: -1;
    }

    .healthcare-workers__content {
        margin: 0 auto;
    }

    .benefits-list li {
        justify-content: center;
    }

    .recruiting__container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .healthcare-workers,
    .recruiting {
        padding: 60px 20px;
    }

    .healthcare-workers__container,
    .recruiting__container {
        padding: 30px;
    }

    .healthcare-workers__content h2 {
        font-size: 28px;
    }

    .recruiting__content h2 {
        font-size: 26px;
    }

    .help-section__container {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .healthcare-workers__content h2 {
        font-size: 24px;
    }

    .recruiting__content h2 {
        font-size: 22px;
    }

    .recruiting__image-left img,
    .recruiting__image-right img {
        max-width: 140px;
    }

    .recruiting__circle--yellow,
    .recruiting__circle--pink,
    .recruiting__circle--blue {
        width: 80px;
        height: 80px;
    }
}

/* form style */
.form-row {
  display: flex;
  gap: 12px;
}

.form-row .form-group {
  flex: 1;
}


.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
}

/* Wrapper */
.custom-select {
  position: relative;
}

/* Select styling */
.custom-select select {
  width: 100%;
  padding: 14px 44px 14px 14px;
  font-size: 15px;
  border: 1.5px solid #d6e0ef;
  border-radius: 10px;
  background-color: #fff;
  color: #1a1a1a;
  cursor: pointer;

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Focus state */
.custom-select select:focus {
  outline: none;
  border-color: #1a73e8;
  box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.15);
}

/* Arrow icon */
.custom-select::after {
  content: "▾";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: #1a73e8;
  pointer-events: none;
}

/* Disabled option */
.custom-select select option:disabled {
  color: #999;
}

.success-popup {
            display: none;
            position: fixed;
            z-index: 10000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            animation: fadeIn 0.3s ease;
        }

        .success-popup-content {
            background-color: #fff;
            margin: 15% auto;
            padding: 0;
            border-radius: 12px;
            width: 90%;
            max-width: 450px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
            animation: slideIn 0.3s ease;
            overflow: hidden;
        }

        .success-popup-header {
            background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
            padding: 30px;
            text-align: center;
            color: white;
        }

        .success-popup-icon {
            width: 70px;
            height: 70px;
            background-color: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            animation: scaleIn 0.5s ease;
        }

        .success-popup-icon i {
            font-size: 35px;
            color: white;
        }

        .success-popup-header h2 {
            margin: 0;
            font-size: 24px;
            font-weight: 600;
        }

        .success-popup-body {
            padding: 30px;
            text-align: center;
        }

        .success-popup-body p {
            color: #555;
            font-size: 16px;
            line-height: 1.6;
            margin: 0 0 25px 0;
        }

        .success-popup-close {
            background: linear-gradient(135deg, #0066CC 0%, #0052A3 100%);
            color: white;
            border: none;
            padding: 14px 40px;
            font-size: 16px;
            font-weight: 600;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }

        .success-popup-close:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideIn {
            from {
                transform: translateY(-50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        @keyframes scaleIn {
            from {
                transform: scale(0);
            }
            to {
                transform: scale(1);
            }
        }