body {
    background-color: rgb(253, 244, 224);
}

.title {
    font-family: 'Comfortaa', cursive;
    text-align: center;
    font-size: 2.5rem;
    margin-top: 4rem;
    color: #333;
}

.centered-image {
    display: block;
    margin: 4rem auto 0;
    width: 60%;
    height: auto;
    margin-bottom: 4rem;
}

.subheadline {
    font-family: 'Comfortaa', cursive;
    text-align: center;
    font-size: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
    color: #444;
    line-height: 1.4;
}

/* Content layout */
.content-section {
    margin-bottom: 3rem;
    padding: 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}



.section-title {
    font-family: 'Comfortaa', cursive;
    font-size: 1.5rem;
    color: #444;
    margin-bottom: 1rem;
}

.section-text {
    font-family: 'Comfortaa', cursive;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.section-text strong {
    color: #222;  /* Darker color */
    font-weight: 700;  /* Bolder weight */
    letter-spacing: 0.02em;  /* Slight letter spacing for emphasis */
}

/* Integrated content box styles */
.explainer-box-inline {
    background: rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    padding: 1rem 2rem;
    margin: 2rem 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(233, 236, 239, 0.6);
}

.explainer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.explainer-header {
    margin-bottom: 1.5rem;
}

.explainer-title-group {
    width: 100%;
}

.explainer-title {
    font-family: 'Comfortaa', cursive;
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
}

.explainer-subtitle {
    font-family: 'Comfortaa', cursive;
    font-size: 1.1rem;
    color: #444;
    margin: 0 0 0.5rem 0;
    font-weight: 700;
}

.explainer-text {
    font-family: 'Comfortaa', cursive;
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

.explainer-pros-cons {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.pros, .cons {
    flex: 1;
}

.explainer-section {
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid rgba(233, 236, 239, 0.3);
    transition: background-color 0.2s ease;
}

.today-section {
    background: rgba(248, 249, 250, 0.3);
    border-left: 3px solid rgba(108, 117, 125, 0.3);
    margin-bottom: 1rem;
}

.today-section:hover {
    background: rgba(248, 249, 250, 0.8);
}

.moving-section {
    background: rgba(255, 248, 220, 0.3);
    border-left: 3px solid rgba(255, 193, 7, 0.3);
    margin-bottom: 1rem;
}

.moving-section:hover {
    background: rgba(255, 248, 220, 0.8);
}

.future-section {
    background: rgba(240, 248, 240, 0.3);
    border-left: 3px solid rgba(40, 167, 69, 0.3);
    margin-bottom: 1rem;
}

.future-section:hover {
    background: rgba(240, 248, 240, 0.8);
}

.pros h5, .cons h5 {
    font-family: 'Comfortaa', cursive;
    font-size: 0.85rem;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 600;
}

.pros h5 {
    color: #2d5a2d;
}

.cons h5 {
    color: #8b2d2d;
}

.pros h5 i {
    color: #4CAF50;
}

.cons h5 i {
    color: #f44336;
}

.explainer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.explainer-list li {
    font-family: 'Comfortaa', cursive;
    font-size: 0.8rem;
    color: #555;
    margin-bottom: 0.3rem;
    padding-left: 1rem;
    position: relative;
    line-height: 1.3;
}

.explainer-list li:before {
    content: "•";
    color: #888;
    font-weight: bold;
    position: absolute;
    left: 0;
}

@media (max-width: 1200px) {
    .explainer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .centered-image {
        width: 80%;
    }

    .section-text {
        font-size: 1rem;
    }
    
    .explainer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .explainer-box-inline {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .explainer-title {
        font-size: 1.2rem;
    }
    
    .explainer-pros-cons {
        gap: 1rem;
    }
    
    .explainer-section {
        padding: 1rem;
    }
    

}

/* Approaches table styles */
.approaches-table {
    margin: 2rem 0;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(233, 236, 239, 0.6);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.table-header {
    display: grid;
    grid-template-columns: 1.2fr 1.5fr 1.2fr 1.5fr;
    background: #f8f9fa;
    border-bottom: 2px solid #dee2e6;
}

.header-cell {
    padding: 1rem;
    font-family: 'Comfortaa', cursive;
    font-weight: 700;
    font-size: 0.9rem;
    color: #495057;
    text-align: left;
}

.table-row {
    display: grid;
    grid-template-columns: 1.2fr 1.5fr 1.2fr 1.5fr;
    border-bottom: 1px solid #e9ecef;
    transition: background-color 0.2s ease;
}

.table-row:hover {
    background-color: #f8f9fa;
}

.table-row:last-child {
    border-bottom: none;
}

.cell {
    padding: 0.8rem 1rem;
    font-family: 'Comfortaa', cursive;
    font-size: 0.85rem;
    color: #555;
    line-height: 1.4;
    border-right: 1px solid #e9ecef;
}

.cell:last-child {
    border-right: none;
}

.domain-cell {
    font-weight: 600;
    color: #333;
    background: #f8f9fa;
}

.table-insights {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    border: 1px solid rgba(233, 236, 239, 0.6);
    backdrop-filter: blur(5px);
}

.table-insights h4 {
    font-family: 'Comfortaa', cursive;
    font-size: 1rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 700;
}

.table-insights ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.table-insights li {
    font-family: 'Comfortaa', cursive;
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 0.8rem;
    padding-left: 1.2rem;
    position: relative;
    line-height: 1.5;
}

.table-insights li:before {
    content: "•";
    color: #007bff;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.table-insights li:last-child {
    margin-bottom: 0;
}

@media (max-width: 1200px) {
    .table-header,
    .table-row {
        grid-template-columns: 1fr 1.2fr 1fr 1.2fr;
    }
    
    .header-cell,
    .cell {
        padding: 0.7rem 0.8rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .table-header,
    .table-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .header-cell,
    .cell {
        padding: 0.6rem;
        border-right: none;
        border-bottom: 1px solid #e9ecef;
    }
    
    .cell:last-child {
        border-bottom: none;
    }
    
    .domain-cell {
        background: #e9ecef;
        font-weight: 700;
        color: #333;
    }
    
    .table-insights {
        padding: 1rem;
    }
    
    .table-insights h4 {
        font-size: 0.95rem;
    }
    
    .table-insights li {
        font-size: 0.85rem;
    }
}


.content-intro {
    border-bottom: 1px solid rgba(233, 236, 239, 0.3);
}

.content-intro p {
    font-family: 'Comfortaa', cursive;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}