.scientific-section {
    padding: 8rem 0 5rem;
    background: linear-gradient(135deg, #fff5f0 0%, #fff 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h1 {
    font-size: 3rem;
    color: var(--terracotta);
    margin-bottom: 1rem;
}

.sessions-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

/* Workshop Section Styles */
.section-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.section-title i {
    font-size: 2.5rem;
    color: var(--orange);
}

.section-title h2 {
    font-size: 2rem;
    color: var(--terracotta);
}

.workshops-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.workshop-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(255, 99, 71, 0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.workshop-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 99, 71, 0.15);
}

.workshop-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--orange), var(--terracotta));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.workshop-icon i {
    font-size: 2rem;
    color: white;
}

.workshop-card h3 {
    color: var(--terracotta);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    min-height: 2.8rem;
}

.workshop-card p {
    color: #666;
    line-height: 1.6;
}

/* Presentations Section Styles */
.presentation-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.presentation-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(255, 99, 71, 0.1);
    overflow: hidden;
    transition: transform 0.3s;
}

.presentation-card:hover {
    transform: translateY(-5px);
}

.card-header {
    background: linear-gradient(135deg, var(--orange), var(--terracotta));
    padding: 2rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.card-header i {
    font-size: 2rem;
    color: white;
}

.card-header h3 {
    font-size: 1.5rem;
    margin: 0;
    color: white;
}

.card-content {
    padding: 2rem;
    background: white;
}

.card-content ul {
    list-style: none;
    padding: 0;
}

.card-content li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.card-content li::before {
    content: '•';
    color: var(--orange);
    font-size: 1.5em;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .section-header h1 {
        font-size: 2rem;
    }

    .section-title h2 {
        font-size: 1.5rem;
    }

    .workshops-grid {
        grid-template-columns: 1fr;
    }

    .workshop-card h3 {
        font-size: 1.3rem;
        min-height: auto;
    }

    .workshop-icon {
        width: 60px;
        height: 60px;
    }

    .workshop-icon i {
        font-size: 1.5rem;
    }

    .card-header {
        padding: 1.5rem;
    }

    .card-content {
        padding: 1.5rem;
    }
}

/* Featured Sessions Styles */
.featured-sessions {
    margin-bottom: 4rem;
}

.featured-sessions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.featured-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(255, 99, 71, 0.1);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.featured-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 99, 71, 0.15);
}

.featured-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--orange), var(--terracotta));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.featured-icon i {
    font-size: 1.8rem;
    color: white;
}

.featured-content {
    flex: 1;
}

.featured-content h3 {
    color: var(--terracotta);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.featured-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Update responsive styles */
@media screen and (max-width: 992px) {
    .featured-sessions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .featured-card {
        padding: 1.5rem;
    }

    .featured-icon {
        width: 50px;
        height: 50px;
    }

    .featured-icon i {
        font-size: 1.5rem;
    }

    .featured-content h3 {
        font-size: 1.3rem;
    }
} 