.about {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../images/background_image.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
    padding: 50px 20px;
    text-align: center;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: #0B1C49 6px solid;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    max-width: 900px;
    width: 100%;
    flex-wrap: wrap;
}

.about-image {
    flex: 1;
    max-width: 280px;
    min-width: 250px;
    margin-right: 30px;
}

.about-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.about-content {
    flex: 2;
    text-align: left;
    max-width: 550px;
}

.about-content h2 {
    font-size: 2.5em;
    color: #624CAB;
    margin-bottom: 10px;
}

.about-content p {
    font-size: 1.2em;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.6;
}

.mediaIcons {
    margin-top: 20px;
}

.mediaIcons a {
    font-size: 1.8em;
    color: #7189FF;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.mediaIcons a:hover {
    color: #624CAB;
}

@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .about-image {
        margin: 0 0 20px 0;
        max-width: 250px;
    }

    .about-content h2 {
        font-size: 2em;
    }

    .about-content p {
        font-size: 1em;
    }

    .mediaIcons a {
        font-size: 1.5em;
        margin: 0 8px;
    }
}

@media (max-width: 480px) {
    .about-container {
        padding: 20px;
        width: 80%;
    }

    .about-content h2 {
        font-size: 1.8em;
    }

    .about-content p {
        font-size: 0.9em;
    }

    .mediaIcons a {
        font-size: 1.3em;
        margin: 0 5px;
    }
}

