.about-hero {
    background-color: #f5f5f5;
    padding: 60px 0;
    text-align: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../about/hero-background.jpg');
    background-size: cover;
    background-position: center;
    color: white;
}

.page-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin: 0;
    position: relative;
    display: inline-block;
}

.page-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #ff6b35;
    margin: 15px auto 0;
    border-radius: 2px;
}

.about-video-section {
    padding: 50px 0;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    overflow: hidden;
}

.video-container video {
    display: block;
    width: 100%;
}

.about-description {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.about-card {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.card-icon {
    font-size: 2.5rem;
    margin-right: 25px;
    padding: 15px;
    background-color: #f5f5f5;
    border-radius: 50%;
    min-width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-content h2 {
    color: #333;
    margin-top: 0;
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 15px;
}

.card-content h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #ff6b35;
}

.card-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

.card-content a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.card-content a:hover {
    color: #e64e00;
    text-decoration: underline;
}

.facilities-section {
    padding: 60px 0;
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.section-header .icon {
    font-size: 2.2rem;
    margin-right: 15px;
    background-color: #f7f0e8;
    padding: 15px;
    border-radius: 50%;
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-header h2 {
    font-size: 2.2rem;
    color: #333;
    margin: 0;
}

.section-intro {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
    max-width: 800px;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.facility-item {
    display: flex;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.facility-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.facility-number {
    background-color: #ff6b35;
    color: white;
    font-size: 1.4rem;
    font-weight: bold;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.facility-content {
    padding: 20px;
}

.facility-content h3 {
    margin-top: 0;
    color: #333;
    font-size: 1.3rem;
}

.facility-content p {
    color: #666;
    margin-bottom: 0;
    line-height: 1.5;
}

.facilities-conclusion {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}

.cta-container {
    text-align: center;
    margin-top: 20px;
}

.cta-button {
    display: inline-block;
    background-color: #ff6b35;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(255, 107, 53, 0.3);
}

.cta-button:hover {
    background-color: #e64e00;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 107, 53, 0.4);
}

.programs-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.program-item {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.program-number {
    background-color: #2b59c3;
    color: white;
    font-size: 1.4rem;
    font-weight: bold;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.program-content {
    padding: 25px;
    flex: 1;
}

.program-content h3 {
    margin-top: 0;
    color: #333;
    font-size: 1.4rem;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.program-content h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: #2b59c3;
}

.program-content h4 {
    color: #555;
    font-size: 1.1rem;
    margin: 20px 0 10px;
}

.program-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.program-content ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.program-content ul li {
    margin-bottom: 8px;
    color: #555;
}

.program-link {
    display: inline-block;
    color: #2b59c3;
    text-decoration: none;
    font-weight: 500;
    margin-top: 10px;
    transition: color 0.2s ease;
}

.program-link i {
    margin-left: 5px;
    transition: transform 0.2s ease;
}

.program-link:hover {
    color: #1a3f9e;
}

.program-link:hover i {
    transform: translateX(3px);
}

.software-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.software-badge {
    background-color: #e8eef7;
    color: #2b59c3;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
}

.programs-conclusion {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    margin: 40px auto;
    max-width: 800px;
    line-height: 1.6;
}

.programs-cta {
    text-align: center;
    margin-top: 30px;
}

.section-separator {
    height: 2px;
    background-color: #eee;
    position: relative;
    margin: 30px 0;
}

.separator-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.separator-icon i {
    color: #555;
    font-size: 1.2rem;
}

.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
}

.modal.show {
    opacity: 1;
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    border-radius: 5px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 1100;
}

.close-modal:hover {
    color: #333;
    background-color: #f0f0f0;
    transform: rotate(90deg);
}

.close-modal:hover,
.close-modal:focus {
    color: #000;
    text-decoration: none;
}

.modal.show-modal {
    display: block !important;
}

.modal h2 {
    margin-top: 0;
    margin-bottom: 25px;
    color: #C24914;
    text-align: center;
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 12px;
}

.modal h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background-color: #C24914;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.form-group {
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #444;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: all 0.3s;
    background-color: #f9f9f9;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #C24914;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
    background-color: #fff;
}

.required {
    color: #e74c3c;
}

.error-message {
    color: #e74c3c;
    font-size: 14px;
    margin-top: 5px;
    display: block;
    animation: fadeIn 0.3s ease;
}

.form-note {
    margin-bottom: 20px;
    font-size: 14px;
    color: #777;
    text-align: right;
}

.submit-button {
    background-color: #C24914;
    color: white;
    border: none;
    padding: 14px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    transition: all 0.3s;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.submit-button:hover {
    background-color: #45a049;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.submit-button:active {
    transform: translateY(0);
    box-shadow: none;
}

.submit-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.submit-button:hover:before {
    left: 100%;
}

.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-message {
    text-align: center;
    padding: 30px 0;
    animation: fadeIn 0.5s ease;
}

.success-icon {
    font-size: 50px;
    color: #C24914;
    margin-bottom: 15px;
    animation: scaleIn 0.5s ease;
}

.success-message h3 {
    color: #C24914;
    margin-bottom: 10px;
    font-size: 24px;
}

.success-message i {
    font-size: 60px;
    color: #4CAF50;
    margin-bottom: 20px;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
    }
    70% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.close-button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 20px;
    font-weight: 500;
    display: block;
    margin: 20px auto 0;
}

.close-button:hover {
    background-color: #388E3C;
}

body.modal-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

@media (max-width: 992px) {
    .about-card {
        flex-direction: column;
    }
    
    .card-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .facilities-grid, .programs-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2.2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .facilities-grid, .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .about-hero {
        padding: 40px 0;
    }

    .modal-content {
        width: 95%;
        margin: 10% auto;
        padding: 20px;
        max-height: 80vh;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .submit-button {
        padding: 12px;
    }
}

@media (max-width: 576px) {
    .program-item, .facility-item {
        flex-direction: column;
    }
    
    .program-number, .facility-number {
        min-width: 100%;
        padding: 10px;
    }
    
    .card-content h2 {
        font-size: 1.5rem;
    }
}
