/* Sections */
.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.section {
    scroll-margin-top: 80px; /* όσο περίπου το ύψος του navbar */
    background: rgba(20, 20, 30, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px 30px 0px 30px;
    margin-bottom: 30px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.5),
        inset 0 0 20px rgba(13, 110, 253, 0.05);
    border: 1px solid rgba(13, 110, 253, 0.2);
}

.section h2 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #0d6efd;
}

.section h3 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 10px;
    padding-bottom: 15px;
    border-bottom: 1px solid #0d6dfd50;
}

.section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    text-align: justify;
}


/* Projects Section with Scrolling */
.scroll {
    max-height: 500px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 10px;
}

.scroll::-webkit-scrollbar {
    width: 8px;
}

.scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.scroll::-webkit-scrollbar-thumb {
    background: #0d6efd;
    border-radius: 10px;
}

.scroll::-webkit-scrollbar-thumb:hover {
    background: #0a58ca;
}

