/* About Section */
.about-section {
    padding: 100px 0;
    padding-bottom:50px;
    background-color: var(--white);
    color: #222;
}

.about-section .container {
    text-align: center;
}
a.about-btn:hover {
    color: white;
    text-decoration: none;
}
.about-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 40px;
}

/* Video */
.about-video iframe {
    width: 100%;
    max-width: 900px;
    height: 500px;
    border: none;
    border-radius: 10px;
    margin-bottom: 30px;
}

/* Buttons */
.about-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.about-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #0073aa;
	border:1px solid #0073aa;
    color: #fff;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
}

.about-btn:hover {
    background-color: white !important;
	color:  #0073aa !important;
}

/* Counter */
.about-counter {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.counter-item {
    text-align: center;
}

.counter-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #0073aa;
    margin-bottom: 5px;
}

.counter-label {
    font-size: 1rem;
    color: #555;
}

/* Responsive */
@media (max-width: 991px) {
    .about-section h2 {
        font-size: 2rem;
    }

    .about-section p {
        font-size: 1rem;
    }

    .about-video iframe {
        height: 400px;
    }

    .counter-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .about-video iframe {
        height: 300px;
    }

    .about-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .counter-item {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .about-section h2 {
        font-size: 1.5rem;
    }

    .about-section p {
        font-size: 0.9rem;
    }

    .counter-number {
        font-size: 1.2rem;
    }
}
