:root {
    --primary-color: #2c3e50; /* Dark Blue */
    --secondary-color: #3498db; /* Blue */
    --accent-color: #f39c12; /* Orange for highlights */
    --background-color: #ecf0f1; /* Light Gray */
    --text-color: #34495e; /* Dark Gray */
    --light-text-color: #95a5a6; /* Gray */
    --border-color: #bdc3c7; /* Gray */
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 15px;
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-header h1 {
    font-size: 3em;
    color: var(--primary-color);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.about-header h1::after {
    content: '';
    position: absolute;
    bottom: 0px;
    right: 35px;
    width: 50%;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.about-header p {
    font-size: 1.2em;
    color: var(--light-text-color);
    max-width: 600px;
    margin: 0 auto;
}

.content-section {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
}

.content-section.reverse {
    flex-direction: row;
}

.content-text {
    flex: 1;
    line-height: 1.8;
    font-size: 1.1em;
}

.content-text h2 {
    font-size: 2em;
    color: var(--primary-color);
    margin-bottom: 15px;
    border-radius: 2px;
    border-right: 4px solid var(--accent-color);
    padding-right: 15px;
}

.content-image {
    flex: 1;
    text-align: center;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 500px;
}

.content-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Stats Section */
.stats-section {
    background-color: var(--primary-color);
    color: #fff;
    padding: 60px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-top: 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    justify-items: center;
}

.stat-item {
    padding: 20px;
}

.stat-item h3 {
    font-size: 3.5em;
    margin: 0;
    color: var(--accent-color);
}

.stat-item p {
    font-size: 1.2em;
    color: rgba(255,255,255,0.8);
    margin: 5px 0 0;
}

/* Contact Info and Socials */
.contact-info-section {
    text-align: center;
    margin-top: 60px;
}

.contact-info-section .contact-details {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.contact-info-section .info-item {
    text-align: center;
}

.contact-info-section .info-item i {
    font-size: 2em;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.contact-info-section .info-item h3 {
    margin: 0;
    font-size: 1.2em;
    color: var(--primary-color);
}

.contact-info-section .info-item a, 
.contact-info-section .info-item p {
    color: var(--light-text-color);
    text-decoration: none;
    font-size: 1em;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 45px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    margin: 0 8px;
    font-size: 1.2em;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--secondary-color);
    transform: scale(1.1);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .content-section {
        flex-direction: column;
        text-align: center;
    }

    .content-section h2 {
        border-right: none;
        border-bottom: 4px solid var(--accent-color);
        padding-right: 0;
        padding-bottom: 10px;
    }
}
