* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
}
:root{
    --dark-purple:#31178f;
    --soft-purple:#7226b0;
    --back-color-main:#ffffff;
    --body-back-color:rgb(248, 246, 254);
    --main-text:black;
    --light-color:white;
    --secondary-text:#777;
}
.about-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px;
}

.about-section {
    padding: 0px;
    padding-top: 100px;
    padding-bottom: 30px;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.about-text {
    flex: 2 1 60%;
    padding-right: 20px;
}

.about-container h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2em;
    color: var(--dark-purple);
    font-weight: 600;
}

.about-text p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #555;
}

.about-link {
    display: inline-block;
    margin:20px 0;
    text-decoration: none;
    color: var(--dark-purple);
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
    font-weight: 500;
}
.about-link i{
    margin-left: 5px;
    font-size: 12px;
}
.about-link:hover {
    border-bottom: 2px solid var(--dark-purple);
}

.about-images {
    flex: 1 1 30%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-images img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-section{
        padding-top: 80px !important;
    }
    .about-container{
        padding: 0;
    }
    .about-container h2{
        text-align: left;
    }
    .about-content {
        flex-direction: column;
        width: 100%;
    }
    
    .about-text {
        padding-right: 0;
    }
    
    .about-images {
        flex-direction: column;
        justify-content: space-between;
    }
    
    .about-images img {
        width: 100%;
    }
    
    .about-link {
        margin-top: 10px;
    }
}
