
.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 100px);
    padding: 60px 40px;
}

.about-container {
    max-width: 700px;
    text-align: center;
}

.profile-image {
    margin: 0 auto 40px auto;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    border-radius: 50%;
    filter: drop-shadow(0 0 20px rgba(139, 0, 0, 0.5));
    transition: all 0.3s ease;
}

.profile-image img:hover {
    filter: drop-shadow(0 0 30px rgba(196, 30, 58, 0.8));
    transform: scale(1.05);
}

.about-container h1 {
    font-size: 36px;
    margin: 0 0 30px 0;
    color: #fff;
    font-weight: 700;
}

.about-text {
    text-align: center;
}

.about-text p {
    color: #d4d4d4;
    font-size: 16px;
    line-height: 1.8;
    margin: 20px 0;
}

.about-text a {
    color: #8b0000;
    border-bottom: 1px solid transparent;
    transition: all 0.2s;
}

.about-text a:hover {
    color: #c41e3a;
    border-bottom-color: #c41e3a;
    text-decoration: none;
}

.contact-info {
    margin-top: 40px !important;
    padding: 20px;
    background: #0f0f0f;
    border: 1px solid #333;
    border-left: 3px solid #8b0000;
    font-size: 14px;
}

.contact-info strong {
    color: #8b0000;
}

.contact-links {
    font-size: 18px;
    margin-top: 30px !important;
}

.contact-links a {
    color: #8b0000;
    margin: 0 10px;
    font-weight: 600;
}

.contact-links a:hover {
    color: #c41e3a;
}

.about-content .footer {
    margin-top: 60px;
    width: 100%;
    text-align: center;
}

@media (max-width: 900px) {
    .about-content {
        padding: 40px 20px;
    }
    
    .profile-image {
        width: 150px;
        height: 150px;
        margin-bottom: 30px;
    }
    
    .about-container h1 {
        font-size: 28px;
    }
}

@media (max-width: 600px) {
    .about-content {
        padding: 30px 15px;
    }
    
    .profile-image {
        width: 120px;
        height: 120px;
        margin-bottom: 25px;
    }
    
    .about-container h1 {
        font-size: 24px;
    }
    
    .about-text p {
        font-size: 15px;
    }
    
    .contact-links {
        font-size: 16px;
    }
    
    .contact-links a {
        display: block;
        margin: 10px 0;
    }
}