.about-section {
    background-color: #f9f9f9; /* Lagana siva pozadina za kontrast */
    padding: 50px 20px;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    text-align: center;
    font-family: 'Raleway', sans-serif;
}

.about-section h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-section p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify; /* Poravnanje teksta za profesionalniji izgled */
}

.about-section p:last-child {
    margin-bottom: 0; /* Uklanja dodatni razmak kod posljednjeg paragrafa */
}

.about-section p:first-child::first-letter {
    font-size: 2rem;
    font-weight: bold;
    color: #666;
    float: left;
    margin-right: 8px;
    line-height: 1;
}

.about-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #ff7b54; /* Akcentna boja */
    margin: 10px auto;
}

.about-section:hover {
    transform: scale(1.02); /* Blaga animacija pri prelasku mišem */
    transition: transform 0.3s ease-in-out;
}

