        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Open Sans', sans-serif;
            color: #333;
            line-height: 1.6;
            background-color: #f8f9fa;
        }
        
        h1, h2, h3, h4 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            color: #1a365d;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header */
        header {
            background: linear-gradient(135deg, #1a365d 0%, #2d4d8a 100%);
            color: white;
            padding: 20px 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .logo-icon {
            background-color: #e63946;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
        }
        
        .logo-text h1 {
            color: white;
            font-size: 28px;
            margin-bottom: 5px;
        }
        
        .logo-text p {
            color: #cbd5e0;
            font-size: 14px;
        }
        
        .contact-header {
            text-align: right;
        }
        
        .phone-number {
            font-size: 24px;
            font-weight: 700;
            color: white;
            display: block;
            margin-bottom: 5px;
        }
        
        .phone-number i {
            color: #e63946;
            margin-right: 8px;
        }
        
        .call-now {
            background-color: #e63946;
            color: white;
            padding: 10px 20px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            margin-top: 10px;
            transition: all 0.3s;
        }
        
        .call-now:hover {
            background-color: #c1121f;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        /* Stelline recensioni */
        .rating {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-top: 10px;
            justify-content: flex-end;
        }
        
        .stars {
            color: #FFD700;
            font-size: 18px;
        }
        
        .rating-text {
            color: #cbd5e0;
            font-size: 14px;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(26, 54, 93, 0.85), rgba(26, 54, 93, 0.9)), url('https://www.antennistagigante.it/images/antennista-gigante-hero.webp');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            color: white;
            padding: 100px 0;
            text-align: center;
            min-height: 600px;
            display: flex;
            align-items: center;
        }
        
        .hero-content {
            width: 100%;
        }
        
        .hero h2 {
            font-size: 42px;
            margin-bottom: 20px;
            color: white;
        }
        
        .hero p {
            font-size: 20px;
            max-width: 800px;
            margin: 0 auto 30px;
        }
        
        .highlight {
            color: #ffd166;
            font-weight: 700;
        }
        
        /* Services */
        .services {
            padding: 80px 0;
            background-color: white;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 36px;
            display: inline-block;
            position: relative;
            padding-bottom: 15px;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            width: 70px;
            height: 4px;
            background-color: #e63946;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background-color: #f8f9fa;
            border-radius: 8px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
        }
        
        .service-icon {
            background-color: #1a365d;
            color: white;
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 30px;
        }
        
        .service-card h3 {
            margin-bottom: 15px;
            font-size: 22px;
            flex-grow: 0;
        }
        
        .service-card p {
            flex-grow: 1;
        }
        
        /* Chi Siamo */
        .about {
            padding: 80px 0;
            background-color: #f1f5f9;
        }
        
        .about-content {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 50px;
        }
        
        .about-image {
            flex: 1;
            min-width: 300px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s;
        }
        
        .about-image img:hover {
            transform: scale(1.03);
        }
        
        .about-text {
            flex: 1;
            min-width: 300px;
        }
        
        .about-text h3 {
            font-size: 30px;
            margin-bottom: 20px;
        }
        
        .about-text p {
            margin-bottom: 20px;
            font-size: 16px;
        }
        
        /* Gallery */
        .gallery {
            padding: 80px 0;
            background-color: white;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .gallery-item {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
            height: 400px;
        }
        
        .gallery-item:hover {
            transform: translateY(-10px);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        
        /* Coverage Area */
        .coverage {
            padding: 80px 0;
            background-color: #f1f5f9;
        }
        
        .coverage-content {
            display: flex;
            align-items: flex-start;
            flex-wrap: wrap;
            gap: 50px;
        }
        
        .coverage-text {
            flex: 1;
            min-width: 300px;
        }
        
        .coverage-map {
            flex: 1;
            min-width: 300px;
            background-color: #e2e8f0;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .areas-container {
            margin-top: 20px;
        }
        
        .areas-columns {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin-top: 15px;
        }
        
        .area-column {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        
        .area-badge {
            background-color: #1a365d;
            color: white;
            padding: 8px 15px;
            border-radius: 50px;
            font-size: 14px;
            text-align: center;
        }
        
        /* Contact */
        .contact {
            padding: 80px 0;
            background-color: white;
        }
        
        .contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .contact-card {
            background-color: #f8f9fa;
            padding: 30px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .contact-icon {
            background-color: #e63946;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 24px;
        }
        
        /* Footer */
        footer {
            background-color: #1a365d;
            color: white;
            padding: 40px 0;
            text-align: center;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .footer-logo h3 {
            color: white;
            font-size: 24px;
        }
        
        .copyright {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #2d4d8a;
            font-size: 14px;
            color: #cbd5e0;
        }
        
        .piva {
            font-size: 14px;
            margin-top: 10px;
            color: #cbd5e0;
        }
        
        /* Cookie Consent Banner */
        .cookie-consent-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: #1a365d;
            color: white;
            padding: 20px;
            z-index: 1000;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
            display: none;
        }
        
        .cookie-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .cookie-text {
            flex: 1;
            min-width: 300px;
            font-size: 14px;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        
        .cookie-btn {
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .cookie-accept {
            background-color: #e63946;
            color: white;
        }
        
        .cookie-accept:hover {
            background-color: #c1121f;
        }
        
        .cookie-reject {
            background-color: #6c757d;
            color: white;
        }
        
        .cookie-reject:hover {
            background-color: #545b62;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
                gap: 20px;
            }
            
            .contact-header {
                text-align: center;
            }
            
            .rating {
                justify-content: center;
            }
            
            .hero {
                padding: 60px 0;
                min-height: 500px;
            }
            
            .hero h2 {
                font-size: 32px;
            }
            
            .hero p {
                font-size: 18px;
            }
            
            .section-title h2 {
                font-size: 30px;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .gallery-grid {
                grid-template-columns: 1fr;
            }
            
            .gallery-item {
                height: 300px;
            }
            
            .areas-columns {
                grid-template-columns: 1fr;
            }
            
            .cookie-content {
                flex-direction: column;
                text-align: center;
            }
            
            .cookie-text {
                min-width: 100%;
            }
            
            .cookie-buttons {
                width: 100%;
                justify-content: center;
            }
        }
        
        @media (min-width: 769px) and (max-width: 1024px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .areas-columns {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (min-width: 1025px) {
            .services-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .gallery-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .areas-columns {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        @media (max-width: 480px) {
            .hero {
                padding: 40px 0;
                min-height: 400px;
            }
            
            .hero h2 {
                font-size: 28px;
            }
            
            .phone-number {
                font-size: 20px;
            }
            
            .gallery-item {
                height: 250px;
            }
            
            .cookie-buttons {
                flex-direction: column;
                width: 100%;
            }
            
            .cookie-btn {
                width: 100%;
            }
        }
			.main-nav {
				margin-top: 15px;
				display: flex;
				gap: 20px;
				justify-content: center;
			}

			.main-nav a {
				color: #ffffff;
				text-decoration: none;
				font-weight: 600;
				font-size: 14px;
			}

			.main-nav a:hover {
				text-decoration: underline;
		}
			footer {
				background: #123463; /* stesso blu dell'header */
				color: #ffffff;
				padding: 30px 0 20px;
				font-size: 14px;
			}

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

			.footer-left h3 {
				margin: 0;
				font-size: 22px;
				font-weight: 700;
			}

			.footer-left p {
				margin: 4px 0 0;
				opacity: 0.85;
			}

			.footer-right p {
				margin: 0 0 4px;
				text-align: right;
				white-space: nowrap;
			}

			.footer-divider {
				border: 0;
				border-top: 1px solid rgba(255, 255, 255, 0.2);
				margin: 10px 0 15px;
			}

			.footer-bottom p {
				margin: 0;
				text-align: center;
				font-size: 13px;
				opacity: 0.8;
			}
