.article-hero {
    padding: 8rem var(--container-padding) 4rem;
    text-align: center;
    max-width: var(--site-width);
    margin: 0 auto;
}

.article-hero h1 {
    color: var(--color-primary);
    font-size: 4rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.article-content {
    background: rgba(255, 255, 255, 0.95);
    padding: 4rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: var(--site-width);
    margin: 2rem auto;
}

.article-content p {
    font-size: 1.6rem;
    line-height: 1.5;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.article-section {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
}

.top-left-image {
    width: 45%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.article-text {
    flex: 1;
}

.bottom-right-image {
    width: 40%;
    height: fit-content;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.article-content h2 {
    color: var(--color-primary);
    font-size: 2rem;
    margin: 2rem 0 1.5rem;
    clear: both;
}

.benefits-section {
    margin-top: 0;
}

.benefit-item {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    border-left: 3px solid var(--color-primary);
}

.benefit-item h3 {
    color: var(--color-primary);
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.benefit-item p {
    font-size: 1.4rem;
}

.cta-text {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(17, 109, 255, 0.05);
    border-radius: 8px;
    font-weight: 500;
}

.bottom-section {
    display: flex;
    gap: 3rem;
    margin-top: 4rem;
}

.benefits-text {
    order: 1;
    flex: 1;
    font-size: 0.9em;
}

.research-link {
    color: var(--color-primary);
    text-decoration: none;
    font-size: 1.2rem;
    margin-left: 0.5rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.research-link:hover {
    opacity: 1;
    text-decoration: underline;
}

.title-link {
    color: var(--color-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.title-link:hover {
    opacity: 0.9;
    text-decoration: underline;
    transform: translateX(5px);
}

.title-link::after {
    content: "🔗";
    font-size: 1.4rem;
    opacity: 0.7;
}

.title-link:hover::after {
    opacity: 1;
}

.book-now-container {
    text-align: center;
    margin-top: 4rem;
    padding: 2rem;
}

.book-now-button {
    display: inline-block;
    background: var(--color-primary);
    color: white;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    font-size: 1.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.book-now-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    background: var(--color-secondary);
}

@media screen and (max-width: 768px) {
    .article-hero h1 {
        font-size: 3rem;
    }

    .article-content {
        padding: 2rem;
        width: 95%;
    }

    .article-section {
        flex-direction: column;
    }

    .top-left-image,
    .bottom-right-image {
        width: 100%;
        margin: 1rem 0;
    }

    .benefit-item {
        padding-left: 1rem;
        margin-bottom: 2rem;
    }

    .benefit-item h3 {
        font-size: 1.6rem;
    }

    .bottom-section {
        flex-direction: column;
    }

    .bottom-right-image {
        order: 1;
        width: 100%;
        margin-bottom: 2rem;
    }

    .benefits-text {
        order: 2;
    }
}

.cdt-section {
    text-align: center;
    max-width: 800px;
    margin: 6rem auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cdt-section h2 {
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    font-size: 2.4rem;
}

.cdt-section p {
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--color-text);
}

.conditions-section {
    max-width: 800px;
    margin: 4rem auto;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.conditions-section h2 {
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 2rem;
}

.conditions-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.conditions-list li {
    font-size: 1.6rem;
    color: var(--color-text);
    padding-left: 2rem;
    position: relative;
}

.conditions-list li::before {
    content: "•";
    color: var(--color-primary);
    position: absolute;
    left: 0;
}

.note {
    font-size: 1.5rem;
    color: var(--color-text);
    font-style: italic;
    opacity: 0.9;
    text-align: center;
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(17, 109, 255, 0.05);
    border-radius: 8px;
}

@media screen and (max-width: 768px) {
    .conditions-list {
        grid-template-columns: 1fr;
    }
} 