/* About Content Section */
.about-content-section {
    padding: 100px 50px 50px;
    background-color: #000;
}

.content-container {
    display: flex;
    margin-top: 30px;
}

.image-side {
    flex: 1;
    padding-right: 30px;
}

.image-side img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(255,255,255,0.1);
}

.text-side {
    flex: 1;
    padding-left: 30px;
}

.text-side h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: white;
}

.text-side p {
    font-size: 16px;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 15px;
}

/* Contact Section */
.contact-section {
    background-color: #f0f0f0;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.contact-button {
    background-color: #808080;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.contact-button:hover {
    background-color: #6e6e6e;
}

@media (max-width: 768px) {
    .content-container {
        flex-direction: column;
    }
    
    .image-side, .text-side {
        padding: 0;
        margin-bottom: 30px;
    }
    
    .about-content-section {
        padding: 100px 30px 50px;
    }
}