/* Principal Investigator CTA Section */
.investigator-cta {
    margin: 0;
}

.investigator-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.investigator-subtitle {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.investigator-title {
    font-size: 2.5rem;
    line-height: 1.2;
}

.investigator-description {
    font-size: 1.1rem;
}

/* Investigator Button Styles */
.investigator-btn {
    background-color: var(--secondary-color);
    border: none;
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: auto;
    display: inline-block;
    text-align: center;
    max-width: 200px;
}

.investigator-btn:hover {
    background-color: var(--secondary-dark-color);
    transform: translateY(-2px);
}

.investigator-image {
    height: 100%;
    min-height: 300px;
    object-position: center;
}

/* About LINQ Section */
.about-linq {
    margin: 0;
}

.about-linq-subtitle {
    font-size: 1.25rem;
}

.about-linq-title {
    font-size: 2.5rem;
    line-height: 1.2;
}

.about-linq-description {
    font-size: 1.1rem;
    color: #495057;
}

.about-linq-btn {
    background-color: var(--primary-color);
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.about-linq-btn:hover {
    background-color: var(--primary-dark-color);
    transform: translateY(-2px);
}

.about-linq-image {
    max-height: 400px;
    width: auto;
    border-radius: 50%;
}

/* Data Stats Section */
.data-stats {
    margin: 1rem 0;
}

.data-stat-number {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.data-stat-label {
    font-size: 1.1rem;
    color: #495057;
}

/* Therapeutic Expertise Section */
.therapeutic-title {
    font-size: 2.25rem;
    margin-bottom: 2rem;
}


/* Centered Text Section */
.centered-text {
    font-size: 1.1rem;
    color: #495057;
}

/* Icons Section */
.icons-section {
    padding: 3rem 0;
}

.icon-item {
    padding: 1rem;
}

.icon-img {
    height: 80px;
    width: auto;
    margin-bottom: 1rem;
}

.icon-label {
    font-size: 1.1rem;
    color: #495057;
}

/* Success Section */
.success-title {
    font-size: 2.25rem;
}

.success-description {
    font-size: 1.1rem;
    color: #495057;
}

.success-btn {
    padding: 0.5rem 1rem;
    font-size: 1.1rem;
    max-width: 200px;
    transition: all 0.3s ease;
}

/* Blue CTA Container */
.blue-cta-container {
    min-height: 400px;
}

/* Image Section */
.blue-cta-image {
    min-height: 300px;
}

.blue-cta-img {
    object-position: center;
}

/* Content Section */
.blue-cta-content {
    min-height: 300px;
}

.blue-cta-textbox {
    width: 90%;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    background-color: var(--dark-secondary-color);
}

/* Text Styles */
.blue-cta-subtitle {
    font-size: 1.25rem;
    line-height: 1.3;
}

.blue-cta-headline {
    font-size: 2rem;
    line-height: 1.2;
}




/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .investigator-title, .about-linq-title, .blue-cta-headline {
        font-size: 2rem;
    }

    .data-stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 767.98px) {
    .investigator-content, .about-linq-content {
        border-radius: 0.5rem 0.5rem 0 0 !important;
    }

    .investigator-image-container, .about-linq-image-container {
        border-radius: 0 0 0.5rem 0.5rem !important;
    }

    .investigator-title, .about-linq-title, .blue-cta-headline {
        font-size: 1.75rem;
    }

    .investigator-subtitle, .about-linq-subtitle, .blue-cta-subtitle {
        font-size: 1.1rem;
    }

    .investigator-btn {
        padding: 0.5rem 1.25rem;
        font-size: 0.9rem;
    }

    .centered-text, .success-description {
        width: 90% !important;
    }

    .data-stat-item {
        margin-bottom: 1rem;
    }

    .blue-cta-container {
        flex-direction: column;
    }

    .blue-cta-image,
    .blue-cta-content {
        min-height: 250px;
    }

    .blue-cta-textbox {
        width: 85%;
        margin: 2rem auto;
        position: static;
        transform: none;
    }

    .blue-cta-headline {
        font-size: 1.75rem;
    }
}

@media (max-width: 575.98px) {
    .investigator-title, .about-linq-title, .blue-cta-headline {
        font-size: 1.5rem;
    }

    .data-stat-number {
        font-size: 2rem;
    }

    .data-stat-label, .centered-text, .success-description {
        font-size: 1rem;
    }

    .icon-img {
        height: 60px;
    }

    .icon-label {
        font-size: 0.9rem;
    }

    .blue-cta-headline {
        font-size: 1.5rem;
    }

    .blue-cta-subtitle {
        font-size: 1.1rem;
    }

    .blue-cta-textbox {
        width: 90%;
        padding: 1.5rem !important;
    }
}

@media (min-width: 768px) {
    .blue-cta-textbox {
        position: absolute;
        left: -25%;
        width: 80%;
    }

    .blue-cta-subtitle {
        font-size: 1rem;
    }

    .blue-cta-headline {
        font-size: 1.5rem;
    }
}