.elementor-1711 .elementor-element.elementor-element-7de21fc{width:100%;max-width:100%;}/* Start custom CSS for html, class: .elementor-element-7de21fc *//* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Georgia', serif;
    color: #2c1810;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #8B4513;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)), 
                url('https://via.placeholder.com/1920x1080/8B4513/FFFFFF?text=Corsiccia+sul+fuoco') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    color: white;
    padding: 2rem;
    z-index: 2;
    position: relative;
}

.main-title {
    color: white;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
    animation: fadeInUp 1s ease-out;
}

.tagline {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-style: italic;
    margin-top: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    animation: fadeInUp 1s ease-out 0.3s both;
}

/* Smoke Effect */
.smoke-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.smoke-particle {
    position: absolute;
    bottom: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: rise 5s linear infinite;
}

@keyframes rise {
    0% {
        transform: translateY(0) scale(0.5);
        opacity: 0;
    }
    10% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.2;
    }
    100% {
        transform: translateY(-100vh) scale(2);
        opacity: 0;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Benefits Section */
.benefits {
    padding: 4rem 2rem;
    background-color: #faf8f3;
}

.benefit-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.benefit-item p {
    font-style: italic;
    color: #666;
    line-height: 1.8;
}

.product-image {
    text-align: center;
    margin: 3rem 0;
}

.product-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

/* Testimonials Section */
.testimonials {
    padding: 4rem 2rem;
    background-color: #2c1810;
    color: white;
}

.testimonials h2 {
    color: white;
    margin-bottom: 3rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial {
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
}

.quote {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.author {
    color: #d4af37;
    font-weight: bold;
}

/* CTA Section */
.cta-section {
    padding: 4rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #faf8f3 0%, #f4f1e8 100%);
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background-color: #B22222;
    color: white;
    font-size: 1.4rem;
    font-weight: bold;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(178, 34, 34, 0.3);
    animation: pulse 2s infinite;
}

.cta-button:hover {
    background-color: #FF4500;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 69, 0, 0.4);
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
    }
}

.urgency {
    margin-top: 1rem;
    font-size: 1.1rem;
}

.red-text {
    color: #B22222;
    font-weight: bold;
}

/* Form Section */
.form-section {
    padding: 4rem 2rem;
    background-color: #faf8f3;
}

.signup-form {
    max-width: 600px;
    margin: 2rem auto;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #2c1810;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8B4513;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
}

.submit-button {
    width: 100%;
    background-color: #B22222;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: #FF4500;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 69, 0, 0.3);
}

.success-message {
    background-color: #4CAF50;
    color: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    animation: fadeIn 0.5s ease;
}

.success-message h3 {
    color: white;
    margin-bottom: 1rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.bottom-image {
    text-align: center;
    margin-top: 3rem;
}

.bottom-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
    }
    
    .benefit-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-button {
        font-size: 1.2rem;
        padding: 1rem 2rem;
    }
    
    .signup-form {
        padding: 1.5rem;
    }
    
    .form-section {
        padding: 2rem 1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    /* Sticky CTA for mobile */
    .cta-section {
        position: sticky;
        top: 0;
        z-index: 100;
        padding: 2rem 1rem;
        background: linear-gradient(135deg, #faf8f3 0%, #f4f1e8 100%);
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .cta-text {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .urgency {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 1rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .cta-button {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
}/* End custom CSS */