.about-conference {
 margin: 100px 0 120px 0;
}

.about__title {
 text-align: center;
 font-size: 36px;
 font-weight: 700;
 margin-bottom: 30px;
 color: #1e3c72;
}

.about__card {
 background: linear-gradient(90deg, #1e3c72, #2a5298, #d4af37);
 padding: 5px;
 border-radius: 20px;
 max-width: 1000px;
 margin: 0 auto;
 box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
 transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about__content h3 {
 text-align: center;
}

.about__card:hover {
 transform: translateY(-5px);
 box-shadow: 0 14px 40px rgba(0, 0, 0, 0.2);
}

.about__inner {
 background: rgba(255, 255, 255, 0.85);
 border-radius: 18px;
 padding: 30px;
 box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.about__content h3 {
 font-size: 28px;
 font-weight: 700;
 color: #1e3c72;
 margin-bottom: 20px;
}

.about__content p {
 font-size: 18px;
 line-height: 1.6;
 color: #333;
 margin-bottom: 15px;
}