/* About Section */
.about-section {
    padding: 100px 10%;
    min-height: 80vh;
    max-width: 1000px;
    margin: 0 auto;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #B0B0B0;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.contact-info {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #333;
}

.contact-info h2 {
    margin-bottom: 20px;
    color: #fff;
}

.contact-info p {
    font-size: 1rem;
    line-height: 1.8;
    color: #B0B0B0;
    white-space: normal;
}

.contact-info a {
    color: #00D4FF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #fff;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .about-section {
        padding: 50px 5%;
    }

    .about-content h1 {
        font-size: 2rem;
    }

    .about-content p {
        font-size: 1rem;
    }
}
