
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Georgia', serif;
            line-height: 1.6;
            color: #4081a4;
            background-color: #d6f3f9;
            overflow-x: hidden;
        }

        /* Header */
        .header {
            background: linear-gradient(135deg, #0077B6 0%, #00B4D8 50%, #90E0EF 100%);
            color: #d6f3f9;
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 15px rgba(0, 119, 182, 0.3);
            border-bottom: 3px solid #0077B6;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

        .logo {
            font-size: 2rem;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            font-family: 'Georgia', serif;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-menu a {
            color: #d6f3f9;
            text-decoration: none;
            padding: 0.8rem 1.5rem;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
            background: rgba(0,0,0,0.1);
            border: 2px solid transparent;
        }

        .nav-menu a:hover {
            background: rgba(0, 180, 216, 0.8);
            border-color: #0077B6;
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(0, 180, 216, 0.3);
        }

        .mobile-menu-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Main Content */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 119, 182, 0.7), rgba(144, 224, 239, 0.7)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23d6f3f9" width="1200" height="600"/><path fill="%23e4f7fb" d="M0,300 Q300,200 600,300 T1200,300 L1200,600 L0,600 Z"/></svg>');
            background-size: cover;
            background-position: center;
            color: #d6f3f9;
            padding: 220px 0 120px;
            text-align: center;
            position: relative;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%230077B6" opacity="0.3"/><circle cx="80" cy="40" r="1" fill="%230077B6" opacity="0.2"/><circle cx="40" cy="80" r="1.5" fill="%230077B6" opacity="0.3"/></svg>');
            animation: twinkle 8s ease-in-out infinite;
        }

        @keyframes twinkle {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 0.6; }
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: 3.8rem;
            margin-bottom: 1rem;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
            font-family: 'Georgia', serif;
            font-weight: normal;
        }

        .hero p {
            font-size: 1.4rem;
            margin-bottom: 2rem;
            opacity: 0.95;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
        }

        .cta-button {
            background: linear-gradient(135deg, #0077B6, #00B4D8);
            color: #4081a4;
            padding: 18px 35px;
            border: 3px solid #0077B6;
            border-radius: 30px;
            font-size: 1.2rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 5px 15px rgba(0, 180, 216, 0.4);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .cta-button:hover {
            background: linear-gradient(135deg, #00B4D8, #0077B6);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 180, 216, 0.6);
        }

        /* Section Styles */
        .section {
            padding: 80px 0;
            position: relative;
        }

        .section:nth-child(even) {
            background: #d6f3f9;
        }

        .section-title {
            text-align: center;
            font-size: 3rem;
            margin-bottom: 3rem;
            color: #0077B6;
            font-family: 'Georgia', serif;
            font-weight: normal;
            position: relative;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }

        .section-title::after {
            content: '';
            display: block;
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #0077B6, #00B4D8, #0077B6);
            margin: 20px auto;
            border-radius: 2px;
            box-shadow: 0 2px 4px rgba(0, 180, 216, 0.3);
        }

        /* About Section */
        .about {
            background: linear-gradient(135deg, #d6f3f9 0%, #e4f7fb 100%);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-text {
            font-size: 1.2rem;
            line-height: 1.8;
            color: #4081a4;
        }

        .about-text p {
            margin-bottom: 1rem;
        }

        .about-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .feature-card {
            background: rgba(0, 180, 216, 0.1);
            padding: 1.5rem;
            border-radius: 15px;
            border: 2px solid #0077B6;
            text-align: center;
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            background: rgba(0, 180, 216, 0.2);
            transform: translateY(-3px);
        }

        .feature-icon {
            font-size: 2rem;
            color: #0077B6;
            margin-bottom: 1rem;
        }

        .about-image {
            background: linear-gradient(135deg, #0077B6, #00B4D8);
            height: 98%;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #d6f3f9;
            font-size: 1.5rem;
            position: relative;
            overflow: hidden;
            border: 4px solid #0077B6;
            box-shadow: 0 10px 30px rgba(0, 119, 182, 0.3);
        }

        .about-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M0,50 Q25,25 50,50 T100,50" fill="none" stroke="rgba(245,242,232,0.1)" stroke-width="2"/></svg>');
        }

        /* Services Grid */
        .services {
            background: #d6f3f9;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: linear-gradient(135deg, #d6f3f9 0%, #d6f3f9 100%);
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 8px 25px rgba(0, 119, 182, 0.15);
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border: 3px solid transparent;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #0077B6, #00B4D8, #0077B6);
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0, 119, 182, 0.25);
            border-color: #0077B6;
        }

        .service-icon {
            font-size: 3.5rem;
            color: #0077B6;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }

        .service-card h3 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            color: #4081a4;
            font-family: 'Georgia', serif;
            font-weight: normal;
        }

        .service-card p {
            color: #045580;
            line-height: 1.6;
        }

        /* FAQ Section */
        .faq {
            background: linear-gradient(135deg, #e4f7fb 0%, #baedf7 100%);
        }

        .faq .section-title {
            color: #4081a4;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: rgba(0, 180, 216, 0.8);
            margin-bottom: 1.5rem;
            border-radius: 15px;
            overflow: hidden;
            border: 2px solid #0077B6;
            box-shadow: 0 5px 15px rgba(0, 119, 182, 0.1);
        }

        .faq-question {
            background: none;
            border: none;
            padding: 1.8rem;
            width: 100%;
            text-align: left;
            font-size: 1.2rem;
            cursor: pointer;
            color: #4081a4;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.3s ease;
            font-family: 'Georgia', serif;
        }

        .faq-question:hover {
            background: rgba(0, 180, 216, 0.1);
        }

        .faq-answer {
            padding: 0 1.8rem 1.8rem;
            display: none;
            font-size: 1.1rem;
            line-height: 1.7;
            color: #045580;
        }

        .faq-answer.active {
            display: block;
            animation: slideDown 0.4s ease;
        }

        @keyframes slideDown {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Warranty Packages */
        .warranty {
            background: #d6f3f9;
        }

        .packages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .package-card {
            background: linear-gradient(135deg, #d6f3f9 0%, #d6f3f9 100%);
            padding: 2.5rem 2rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 119, 182, 0.15);
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 3px solid #0077B6;
        }

        .package-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #0077B6, #0077B6, #0077B6);
        }

        .package-card.featured {
            border-color: #00B4D8;
            transform: scale(1.05);
            background: linear-gradient(135deg, #0077B6 0%, #d6f3f9 100%);
            color: #4081a4;
        }

        .package-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 119, 182, 0.25);
        }

        .package-card.featured:hover {
            transform: scale(1.05) translateY(-5px);
        }

        .package-name {
            font-size: 1.6rem;
            font-weight: bold;
            color: #0077B6;
            margin-bottom: 1rem;
            font-family: 'Georgia', serif;
        }

        .package-card.featured .package-name {
            color: #4081a4;
        }

        .package-price {
            font-size: 2.8rem;
            font-weight: bold;
            color: #0077B6;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }

        .package-card.featured .package-price {
            color: #0077B6;
        }

        .package-features {
            list-style: none;
            margin: 2rem 0;
        }

        .package-features li {
            padding: 0.8rem 0;
            border-bottom: 1px solid rgba(0, 180, 216, 0.3);
            color: #045580;
            position: relative;
            padding-left: 2rem;
        }

        .package-features li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #0077B6;
            font-weight: bold;
            font-size: 1.2rem;
        }

        .package-features li:last-child {
            border-bottom: none;
        }

        /* Testimonials */
        .testimonials {
            background: linear-gradient(135deg, #d6f3f9 0%, #e4f7fb 100%);
        }

        .testimonials .section-title {
            color: #0077B6;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .testimonial-card {
            background: rgba(0, 180, 216, 0.9);
            padding: 2.5rem;
            border-radius: 20px;
            text-align: center;
            position: relative;
            border: 2px solid #0077B6;
            box-shadow: 0 8px 25px rgba(0, 119, 182, 0.1);
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 4rem;
            color: #0077B6;
            font-family: 'Georgia', serif;
            line-height: 1;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 2rem;
            font-size: 1.2rem;
            line-height: 1.7;
            color: #4081a4;
        }

        .testimonial-author {
            font-weight: bold;
            color: #0077B6;
            font-size: 1.1rem;
            font-family: 'Georgia', serif;
        }

        .testimonial-stars {
            color: #0077B6;
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }

        /* Quote Section */
        .quote-section {
            background: linear-gradient(135deg, #0077B6 0%, #00B4D8 100%);
            color: #d6f3f9;
        }

        .quote-section .section-title {
            color: #d6f3f9;
        }

        .quote-form-container {
            background: rgba(144, 224, 239, 0.1);
            padding: 3rem;
            border-radius: 20px;
            backdrop-filter: blur(10px);
            max-width: 600px;
            margin: 0 auto;
            border: 2px solid #0077B6;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.8rem;
            font-weight: bold;
            color: #d6f3f9;
            font-family: 'Georgia', serif;
        }

        .form-group input, .form-group select, .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #0077B6;
            border-radius: 10px;
            font-size: 1rem;
            background: rgba(144, 224, 239, 0.9);
            color: #4081a4;
            font-family: 'Georgia', serif;
        }

        .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
            outline: none;
            border-color: #00B4D8;
            box-shadow: 0 0 10px rgba(0, 180, 216, 0.3);
        }

        .form-group select option {
            color: #4081a4;
        }

        /* Footer */
        .footer {
            background: linear-gradient(135deg, #4081a4 0%, #045580 100%);
            color: #d6f3f9;
            padding: 3rem 0 1rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            margin-bottom: 1.5rem;
            color: #0077B6;
            font-family: 'Georgia', serif;
            font-weight: normal;
            font-size: 1.4rem;
        }

        .footer-section p, .footer-section li {
            margin-bottom: 0.8rem;
            color: #e4f7fb;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section a {
            color: #e4f7fb;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: #0077B6;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #045580;
            color: #baedf7;
        }

        .footer-popup-links {
            margin-top: 1.5rem;
        }

        .footer-popup-links a {
            margin-right: 1rem;
            color: #0077B6;
            text-decoration: underline;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .footer-popup-links a:hover {
            color: #d6f3f9;
        }

        /* Popup Styles */
        .popup-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 119, 182, 0.7);
            z-index: 2000;
            backdrop-filter: blur(5px);
        }

        .popup {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: linear-gradient(135deg, #d6f3f9 0%, #d6f3f9 100%);
            padding: 2.5rem;
            border-radius: 20px;
            max-width: 500px;
            width: 90%;
            max-height: 80vh;
            overflow-y: auto;
            z-index: 2001;
            box-shadow: 0 20px 60px rgba(0, 119, 182, 0.4);
            border: 3px solid #0077B6;
        }

        .popup-close {
            float: right;
            font-size: 1.8rem;
            cursor: pointer;
            color: #0077B6;
            transition: color 0.3s ease;
        }

        .popup-close:hover {
            color: #0077B6;
        }

        .popup h3 {
            margin-bottom: 1.5rem;
            color: #0077B6;
            font-family: 'Georgia', serif;
            font-weight: normal;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.8rem;
            font-weight: bold;
            color: #4081a4;
            font-family: 'Georgia', serif;
        }

        .form-group input, .form-group textarea, .form-group select {
            width: 100%;
            padding: 1rem;
            border: 2px solid #0077B6;
            border-radius: 10px;
            font-size: 1rem;
            background: rgba(144, 224, 239, 0.9);
            color: #4081a4;
            font-family: 'Georgia', serif;
        }

        .checkbox-group {
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .checkbox-group input[type="checkbox"] {
            width: auto;
            transform: scale(1.2);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .mobile-menu-toggle {
                display: block;
            }

            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: linear-gradient(135deg, #0077B6, #00B4D8);
                flex-direction: column;
                padding: 1rem;
                border-radius: 0 0 15px 15px;
            }

            .nav-menu.active {
                display: flex;
            }

            .hero h1 {
                font-size: 2.8rem;
            }

            .about-content {
                grid-template-columns: 1fr;
            }

            .about-features {
                grid-template-columns: 1fr;
            }

            .packages-grid {
                grid-template-columns: 1fr;
            }

            .package-card.featured {
                transform: none;
            }

            .package-card.featured:hover {
                transform: translateY(-5px);
            }

            .section-title {
                font-size: 2.2rem;
            }
        }

        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .slide-in-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.8s ease;
        }

        .slide-in-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .slide-in-right {
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.8s ease;
        }

        .slide-in-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        /* Rustic Decorative Elements */
        .section:nth-child(odd)::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 50px;
            height: 100%;
            background: linear-gradient(90deg, #0077B6, transparent);
            opacity: 0.1;
        }

        .section:nth-child(even)::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50px;
            height: 100%;
            background: linear-gradient(270deg, #0077B6, transparent);
            opacity: 0.1;
        }