* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background-color: #16a34a;
    color: white;
}

.btn-primary:hover {
    background-color: #15803d;
}

.btn-secondary {
    background-color: #6b7280;
    color: white;
}

.btn-secondary:hover {
    background-color: #4b5563;
}

.btn-outline {
    background-color: transparent;
    color: #16a34a;
    border: 2px solid #16a34a;
}

.btn-outline:hover {
    background-color: #16a34a;
    color: white;
}

.header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #16a34a;
    font-size: 24px;
    font-weight: bold;
    gap: 10px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #16a34a;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: 0.3s;
}

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    color: white;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero .btn {
    margin: 0 10px;
}

.benefits {
    padding: 80px 0;
    background-color: #f0fdf4;
}

.benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1e293b;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    color: #16a34a;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1e293b;
}

.products {
    padding: 80px 0;
}

.products h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1e293b;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #1e293b;
}

.product-info p {
    margin-bottom: 15px;
    color: #6b7280;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #16a34a;
}

.unit {
    color: #6b7280;
}

.installation {
    padding: 80px 0;
    background-color: #f0fdf4;
}

.installation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.installation-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #1e293b;
}

.installation-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.step-number {
    background-color: #16a34a;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #1e293b;
}

.installation-image img {
    width: 100%;
    border-radius: 10px;
}

.pricing {
    padding: 80px 0;
}

.pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1e293b;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured {
    border: 3px solid #16a34a;
    transform: scale(1.05);
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #1e293b;
}

.pricing-price {
    margin-bottom: 30px;
}

.pricing-price .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #16a34a;
    display: block;
}

.pricing-price .period {
    color: #6b7280;
    font-size: 0.9rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid #e5e7eb;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.maintenance {
    padding: 80px 0;
    background-color: #f0fdf4;
}

.maintenance-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.maintenance-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1e293b;
}

.maintenance-benefits {
    margin: 30px 0;
}

.maintenance-benefit {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.maintenance-benefit svg {
    color: #22c55e;
}

.maintenance-image img {
    width: 100%;
    border-radius: 10px;
}

.testimonials {
    padding: 80px 0;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1e293b;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    margin-bottom: 20px;
    font-style: italic;
    color: #6b7280;
}

.testimonial-author h4 {
    color: #1e293b;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #6b7280;
    font-size: 0.9rem;
}

.contact {
    padding: 80px 0;
    background-color: #f0fdf4;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1e293b;
}

.contact-details {
    margin-top: 30px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-detail svg {
    color: #16a34a;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #1e293b;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #16a34a;
}

.footer {
    background-color: #1e293b;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    text-align: center;
    margin-bottom: 30px;
}

.footer-disclaimer {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.footer-contacts h4 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-contacts p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-menu {
    margin-top: 30px;
}

.footer-menu ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer-menu a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #4ade80;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #374151;
    opacity: 0.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e293b;
    color: white;
    padding: 20px;
    z-index: 1000;
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.page-hero {
    background-color: #f0fdf4;
    padding: 120px 0 80px;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #1e293b;
}

.page-hero p {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.services-overview {
    padding: 80px 0;
}

.services-overview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1e293b;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    color: #16a34a;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1e293b;
}

.detailed-services {
    padding: 80px 0;
    background-color: #f0fdf4;
}

.detailed-services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1e293b;
}

.service-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-detail {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-detail h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1e293b;
}

.service-detail ul {
    margin: 20px 0;
    padding-left: 20px;
}

.service-detail li {
    margin-bottom: 8px;
    color: #6b7280;
}

.service-price {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.service-price span {
    font-weight: 700;
    color: #16a34a;
    font-size: 1.2rem;
}

.maintenance-services {
    padding: 80px 0;
}

.maintenance-services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1e293b;
}

.maintenance-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.maintenance-plan {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.maintenance-plan:hover {
    transform: translateY(-5px);
}

.maintenance-plan.featured {
    border: 3px solid #16a34a;
    transform: scale(1.05);
}

.maintenance-plan h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #1e293b;
}

.plan-price {
    margin-bottom: 30px;
}

.plan-price span {
    font-size: 2rem;
    font-weight: 700;
    color: #16a34a;
    display: block;
}

.plan-price small {
    color: #6b7280;
}

.maintenance-plan ul {
    list-style: none;
    margin-bottom: 30px;
}

.maintenance-plan li {
    padding: 10px 0;
    border-bottom: 1px solid #e5e7eb;
}

.maintenance-plan li:last-child {
    border-bottom: none;
}

.process {
    padding: 80px 0;
    background-color: #f0fdf4;
}

.process h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1e293b;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.process-step {
    text-align: center;
}

.process-step .step-number {
    background-color: #16a34a;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #1e293b;
}

.contact-cta {
    padding: 80px 0;
    background-color: #16a34a;
    text-align: center;
    color: white;
}

.contact-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.privacy-content,
.terms-content {
    padding: 80px 0;
}

.privacy-text,
.terms-text {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.privacy-text h2,
.terms-text h2 {
    font-size: 2rem;
    margin: 40px 0 20px;
    color: #1e293b;
}

.privacy-text h3,
.terms-text h3 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
    color: #1e293b;
}

.privacy-text ul,
.terms-text ul {
    margin: 20px 0;
    padding-left: 30px;
}

.privacy-text li,
.terms-text li {
    margin-bottom: 8px;
    color: #6b7280;
}

.contact-info {
    background-color: #f0fdf4;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.thankyou-hero {
    padding: 120px 0 80px;
    text-align: center;
}

.thankyou-content {
    max-width: 800px;
    margin: 0 auto;
}

.thankyou-icon {
    margin-bottom: 30px;
}

.thankyou-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #1e293b;
}

.thankyou-content > p {
    font-size: 1.2rem;
    margin-bottom: 50px;
    color: #6b7280;
}

.thankyou-info {
    margin-bottom: 50px;
}

.thankyou-info h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #1e293b;
}

.next-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.thankyou-contact {
    background-color: #f0fdf4;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.thankyou-contact h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1e293b;
}

.thankyou-contact .contact-details {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.thankyou-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .benefits-grid,
    .products-grid,
    .pricing-grid,
    .testimonials-grid,
    .services-grid,
    .service-details,
    .maintenance-plans {
        grid-template-columns: 1fr;
    }
    
    .installation-content,
    .maintenance-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .thankyou-contact .contact-details {
        flex-direction: column;
        gap: 15px;
    }
    
    .thankyou-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
} 