.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.about-text {
    overflow: hidden;
}

.about-text h2 {
    font-size: 2em;
    color: #2e7d32;
    margin-bottom: 20px;
}

.about-text h3 {
    font-size: 1.5em;
    color: #2e7d32;
}

.text-container {
    margin-bottom: 1.2rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid #abc1ef;
    text-align: justify;
    hyphens: auto;
}

.photo-skills-container {
    float: right;
    width: 400px;
    margin-left: 20px;
    margin-bottom: 20px;
}

.about-photo {
    width: 100%;
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.skills-sidebar {
    padding: 15px;
    background: #f0f8f0;
    margin-top: 20px;
}

.skill-category {
    margin-bottom: 15px;
}

.skill-category h4 {
    color:rgb(60, 132, 2);
    margin: 0 0 8px 0;
    font-size: 1.1em;
}

.skill-item {
    display: inline-block;
    padding: 6px 15px;
    margin: 4px;
    font-size: 1em;
    background:rgb(255, 255, 255);
    color:rgb(0, 0, 0);
    border-radius: 20px;
    border: 1px solidrgb(175, 255, 135);
    transition: all 0.2s ease;
}

.skill-item:hover {
    background:rgb(207, 224, 238);
    transform: translateY(-1px);
}