/* --- DT Two Choices Block Styles --- */

.dt-two-choices-section {
    padding: 60px 20px;
    background-color: #fff;
}

.dttc-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

/* Main Headline */
.dttc-main-headline {
    font-family: 'Fredoka', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 40px;
    line-height: 1.2;
}

/* Grid Layout */
.dttc-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: stretch; /* Makes cards equal height */
    margin-bottom: 40px;
}

/* Cards */
.dttc-card {
    flex: 1;
    padding: 40px 30px;
    /* Default BG is set inline via PHP, usually #eef8ff */
    text-align: left; /* Content is left aligned inside */
}

.dttc-card-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center; /* Title is centered */
}

.dttc-card-title a {
    color: #0066cc; /* Link blue color from image */
    text-decoration: underline;
}

.dttc-card-content {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
}

.dttc-card-content p {
    margin-bottom: 15px;
}
.dttc-card-content p:last-child {
    margin-bottom: 0;
}

/* Bottom Headline */
.dttc-bottom-headline {
    font-family: 'Fredoka', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #222;
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .dttc-grid {
        flex-direction: column;
        gap: 20px;
    }
    
    .dttc-main-headline {
        font-size: 2rem;
    }
    
    .dttc-bottom-headline {
        font-size: 1.6rem;
    }
}