* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400;500;700&display=swap');

body {
    font-family: 'Caveat', cursive;
    color: #333;
}

/* Header Navigation */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: transparent;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    transition: background-color 0.3s ease;
}

.header.scrolled {
    background-color: #4b4b4b;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 40px;
    height: 40px;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.7));
}

.logo-text {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    transition: opacity 0.3s ease;
}

.nav-menu a:hover {
    opacity: 0.8;
}

/* Hero Section */
.hero-soluzioni {
    background-image: url('../images/hero.webp');
    background-size: cover;
    background-position: center;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #fff;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-text {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 40px;
}

.hero-text h1 {
    font-size: 56px;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
}

/* Content Section */
.content-section {
    background-color: #fff;
    padding: 80px 40px;
    min-height: auto;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.main-title {
    font-size: 42px;
    color: #2a9b8e;
    margin-bottom: 50px;
    text-align: left;
    font-weight: 500;
}

/* Solutions List */
.solutions-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.solution-item {
    font-size: 20px;
    color: #333;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
    line-height: 1.6;
}

.solution-item:last-child {
    border-bottom: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
    }

    .nav-menu {
        gap: 15px;
    }

    .nav-menu a {
        font-size: 14px;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .content-section {
        padding: 60px 20px;
    }

    .main-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .solution-item {
        font-size: 16px;
        padding: 12px 0;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 10px 15px;
    }

    .logo-text {
        font-size: 14px;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .main-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .solution-item {
        font-size: 14px;
        padding: 10px 0;
    }

    .content-section {
        padding: 40px 15px;
    }
}
