/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Banner styles */
.banner {
    position: relative;
    width: 100%;
    height: auto;
    max-height: 500px;
    overflow: hidden;
}

.banner img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Section styles */
.section {
    padding: 4rem 0;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #E2188F;
    margin-bottom: 1.5rem;
    text-align: center;
}

.section-text {
    color: #4b5563;
    max-width: 1100px;
    margin: 0 auto 2rem;
    text-align: justify;
    padding: 0 15px;
    line-height: 1.8;
}

/* Statistics Section Styles */
.stats-section {
    background-color: #f9fafb;
    padding: 4rem 0;
}

.stats-container {
    margin-top: 3rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.stats-layout {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.stats-column {

    flex: 1;

    display: flex;

    flex-direction: column;

}



.middle-column {

    display: flex;

    flex-direction: column;

    justify-content: space-between;

}



.middle-stat {

    flex: 1;

    display: flex;

    flex-direction: column;

    justify-content: center;

}



.stat-box {

    text-align: center;

    padding: 20px;

}



.stat-number {

    font-size: 3rem;

    font-weight: 700;

    color: #E91E63;

    margin-bottom: 0.5rem;

}



.stat-label {

    font-size: 1rem;

    color: #6b7280;

    line-height: 1.4;

}



.vertical-divider {

    width: 1px;

    background-color: #ddd;

    align-self: stretch;

}



.horizontal-divider {

    height: 2px;

    background-color: #ccc;

    width: 100%;

    margin: 20px 0;

}



/* Button Styles */

.btn {

    display: inline-block;

    padding: 0.8rem 1.8rem;

    border-radius: 50px;

    font-weight: 700;

    text-align: center;

    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;

}



.btn-primary {

    background-color: #E91E63;

    color: #fff;

    border: 2px solid transparent;

}



.btn-primary:hover {

    background-color: #C2185B;

    transform: translateY(-2px);

}



.btn-secondary {

    background-color: #e5e7eb;

    color: #1f2937;

    border: 2px solid transparent;

}



.btn-secondary:hover {

    background-color: #d1d5db;

    transform: translateY(-2px);

}
