.about-content {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 20px;
    margin-top: 30px;
    margin-bottom: 60px;
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.about-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin-top: 20px;
    margin-bottom: 15px;
}

.about-content p {
    margin-bottom: 15px;
    text-align: left;
}

.about-content ul {
    list-style-type: disc;
    margin-left: 20px; 
    margin-bottom: 20px;
    padding-left: 20px;
    text-align: left;
}

.about-content ul li {
    margin-bottom: 10px;
}

.about-content ul li strong {
    font-weight: 600; 
}

/* Styles for About Program Page (MC-Checker) */
.program-details-page { /* Applied to main.container */
    padding-top: 30px; 
    padding-bottom: 60px;
}

.program-hero {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px 20px;
    background: linear-gradient(135deg, #2C3E50 0%, #3498db 100%); /* Темный градиент */
    border-radius: 25px;
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.program-hero h1 {
    font-size: 48px; 
    font-weight: 800;
    margin-top: 0; /* Override default h1 margin-top from general styles */
    margin-bottom: 10px;
    color: #ffffff; 
}

.program-subtitle {
    font-size: 22px;
    font-weight: 300;
    color: #f0f0f0;
}

.program-content-wrapper {
    background-color: #ffffff; 
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.program-content-wrapper h2 {
    font-size: 32px;
    font-weight: 700;
    color: #2C3E50; 
    margin-top: 0; /* Reset margin if needed */
    margin-bottom: 25px;
    text-align: center;
    border-bottom: 3px solid #4CAF50; 
    padding-bottom: 10px;
    display: block; 
    max-width: max-content; 
    margin-left: auto;
    margin-right: auto;
}

.program-content-wrapper > p { /* Target direct p children for general text */
    font-size: 18px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
    text-align: left; /* Default text alignment */
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.feature-card {
    background-color: #f9f9f9; 
    padding: 25px;
    border-radius: 15px;
    border-left: 5px solid #4CAF50; 
    box-shadow: 0 5px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.12);
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #2C3E50; 
    margin-bottom: 15px;
}

.feature-card p,
.feature-card ul {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    text-align: left;
}

.feature-card ul {
    list-style-type: none; 
    padding-left: 0;
    margin-bottom: 0; /* Remove bottom margin if it's the last element */
}

.feature-card ul li {
    margin-bottom: 10px;
    padding-left: 25px; 
    position: relative;
}

.feature-card ul li:last-child {
    margin-bottom: 0;
}

.feature-card ul li::before {
    content: "✔"; 
    color: #4CAF50; 
    position: absolute;
    left: 0;
    top: 1px; /* Adjust vertical alignment */
    font-weight: bold;
    font-size: 18px;
}

.feature-card ul li strong {
    font-weight: 600;
    color: #333;
}

.program-conclusion {
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background-color: #e8f5e9; 
    color: #2e7d32; 
    border-left: 5px solid #4CAF50;
    border-radius: 0 10px 10px 0;
}