* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c5530;
    color: white;
    padding: 20px;
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
}

.cookie-btn.accept {
    background: #4CAF50;
    color: white;
}

.cookie-btn.decline {
    background: transparent;
    color: white;
    border: 1px solid white;
}

/* Header */
.header {
    background: #2c5530;
    color: white;
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    border-radius: 0 0 25px 25px;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: white;
    text-decoration: none;
    font-weight: 400;
    transition: opacity 0.3s;
}

.nav a:hover {
    opacity: 0.8;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    background: #f8f9fa;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    color: #000;
}

.hero-text p {
    margin-bottom: 20px;
    color: #333;
    font-size: 16px;
    line-height: 1.7;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.cta-button {
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    color: white;
    padding: 18px 35px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 30px;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
}

/* Chi Siamo Section */
.chi-siamo {
    padding: 80px 0;
    background: white;
}

.chi-siamo h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #000;
    line-height: 1.3;
}

.chi-siamo-content p {
    margin-bottom: 25px;
    color: #333;
    font-size: 16px;
    line-height: 1.7;
}

.features-list {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #333;
    font-size: 16px;
}

.feature-icon {
    font-size: 20px;
    width: 30px;
    flex-shrink: 0;
}

/* Services Section */
.servizi {
    padding: 80px 0;
    background: #f8f9fa;
}

.servizi h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #000;
    text-align: center;
    line-height: 1.3;
}

.servizi-intro {
    text-align: center;
    color: #333;
    margin-bottom: 60px;
    font-size: 16px;
    line-height: 1.7;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
}

.servizi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.servizio-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: left;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border: 1px solid #f0f0f0;
}

.servizio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.servizio-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 30px;
    border-radius: 20px;
    overflow: hidden;
}

.servizio-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.servizio-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
    line-height: 1.3;
}

.servizio-card p {
    color: #333;
    font-size: 14px;
    line-height: 1.6;
}

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

/* Strategy Section */
.strategia {
    padding: 80px 0;
    background: white;
}

.strategia h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #000;
    text-align: center;
    line-height: 1.3;
}

.strategia-intro {
    text-align: center;
    color: #333;
    margin-bottom: 60px;
    font-size: 16px;
    line-height: 1.7;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
}

.strategia-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.step {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 40px 35px;
    border: 1px solid #f0f0f0;
}

.step-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

.step-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4CAF50;
    min-width: 50px;
    flex-shrink: 0;
}

.step-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #4CAF50;
    line-height: 1.3;
    margin: 0;
}

.step p {
    color: #333;
    font-size: 14px;
    line-height: 1.6;
    margin-left: 70px;
}

/* Contact Section */
.contatti {
    padding: 80px 0;
    background: #f8f9fa;
}

.contatti h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #000;
    text-align: center;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 20px 25px;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    outline: none;
    transition: all 0.3s;
    background: white;
}

.form-group textarea {
    border-radius: 25px;
    resize: vertical;
    min-height: 120px;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #4CAF50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.submit-btn {
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    color: white;
    padding: 18px 35px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
}

/* Footer */
.footer {
    background: #2c5530;
    color: white;
    padding: 50px 0;
    border-radius: 25px 25px 0 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.footer-info {
    flex: 1;
}

.footer-logo {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-address,
.footer-phone {
    font-size: 14px;
    margin-bottom: 8px;
    opacity: 0.9;
}

.footer-copyright {
    font-size: 14px;
    margin-top: 20px;
    opacity: 0.7;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 12px;
    opacity: 0.8;
    transition: opacity 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links a:hover {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .servizi-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .strategia-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .chi-siamo h2,
    .servizi h2,
    .strategia h2,
    .contatti h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #2c5530;
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        border-radius: 0 0 25px 25px;
    }
    
    .nav.active {
        display: flex;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-content {
        gap: 40px;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .chi-siamo h2,
    .servizi h2,
    .strategia h2,
    .contatti h2 {
        font-size: 1.6rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-links {
        align-items: flex-start;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .step p {
        margin-left: 0;
        margin-top: 15px;
    }
    
    .step-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .features-list {
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-text h1 {
        font-size: 1.5rem;
    }
    
    .servizio-card,
    .step {
        padding: 25px 20px;
    }
    
    .chi-siamo h2,
    .servizi h2,
    .strategia h2,
    .contatti h2 {
        font-size: 1.4rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 15px 20px;
    }
    
    .cta-button,
    .submit-btn {
        padding: 15px 30px;
        font-size: 14px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}