.twas-about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

.twas-about-header {
    text-align: center;
    margin-bottom: 50px;
}

.twas-about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}

.twas-about-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
}

.twas-content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.twas-section {
    background: #f8fafc;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
}

.twas-section-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 15px;
}

.twas-section-text {
    font-size: 1rem;
    color: #475569;
    margin-bottom: 15px;
}

.twas-highlight-box {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    padding: 30px;
    border-radius: 12px;
    margin: 40px 0;
}

.twas-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.twas-stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.twas-stat-number {
    font-size: 2rem;
    font-weight: 700;
    display: block;
}

.twas-stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 5px;
}

.twas-mission-list {
    list-style: none;
    padding: 0;
}

.twas-mission-item {
    padding: 15px 0;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    padding-left: 30px;
}

.twas-mission-item:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
    font-size: 1.2rem;
}

.twas-mission-item:last-child {
    border-bottom: none;
}

.twas-regions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.twas-region-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-top: 3px solid #3b82f6;
}

.twas-region-title {
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 10px;
}

.twas-timeline {
    position: relative;
    margin: 30px 0;
}

.twas-timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.twas-timeline-year {
    background: #3b82f6;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    margin-right: 20px;
    min-width: 80px;
    text-align: center;
}

.twas-timeline-content {
    flex: 1;
    background: #f1f5f9;
    padding: 15px 20px;
    border-radius: 8px;
}

@media (max-width: 800px) {
    .twas-about-container {
        padding: 40px 15px;
    }

    .twas-about-title {
        font-size: 2rem;
    }

    .twas-section {
        padding: 20px;
    }

    .twas-stats {
        grid-template-columns: 1fr 1fr;
    }

    .twas-regions {
        grid-template-columns: 1fr;
    }
}