 /* Content Sections */
        .content-section {
            padding: 4rem 0;
        }

        .content-section h2 {
            color: #191061;
            font-size: 35px;
            margin-bottom: 2rem;
            text-align: center;
        }

        .content-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            margin-top: 2rem;
        }

        .content-text p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            line-height: 1.8;
        }

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

        /* Before After Section */
        .before-after-section {
            padding: 4rem 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .before-after-section h2 {
            color: #191061;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            text-align: center;
        }

        .comparison-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-bottom: 3rem;
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .comparison-item {
            position: relative;
        }

        .comparison-item img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 8px;
        }

        .comparison-label {
            position: absolute;
            top: 20px;
            left: 20px;
            background: rgba(25, 16, 97, 0.9);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 25px;
            font-weight: bold;
            font-size: 1.1rem;
        }

        .comparison-item.after .comparison-label {
            background: rgba(84, 114, 210, 0.9);
        }

        .comparison-description {
            grid-column: 1 / -1;
            text-align: center;
            padding-top: 1rem;
            font-size: 1.1rem;
            color: #555;
        }

        /* Services Grid */
        .services-grid-section {
            padding: 4rem 0;
        }

        .services-grid-section h2 {
            color: #191061;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            text-align: center;
        }

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

        .service-card {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .service-icon {
            margin-bottom: 1.5rem;
        }

        .service-icon img {
            width: 400px;
            height: 100px;
            object-fit: cover;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .service-card h3 {
            color: #191061;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .service-card p {
            color: #666;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        /* Special Offers */
        .special-offers {
            padding: 4rem 0;
            background: linear-gradient(135deg, #191061 0%, #5472d2 100%);
        }

        .special-offers h2 {
            color: white;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            text-align: center;
        }

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

        .offer-card {
            background: rgba(255, 255, 255, 0.1);
            padding: 2rem;
            border-radius: 12px;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.2);
            transition: transform 0.3s;
        }

        .offer-card:hover {
            transform: translateY(-5px);
        }

        .offer-card.highlight {
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid white;
        }

        .offer-card h3 {
            color: white;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .offer-card p {
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.6;
        }

        /* CTA Section */
        .cta-section {
            padding: 4rem 0;
            text-align: center;
            background: #f8f9fa;
        }

        .cta-section h2 {
            color: #191061;
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .cta-section p {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 2rem;
        }

        /* Buttons */
        .btn-primary, .btn-secondary {
            display: inline-block;
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s;
        }

        .btn-primary {
            background: #5472d2;
            color: white;
        }

        .btn-primary:hover {
            background: #191061;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(84, 114, 210, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: #5472d2;
            border: 2px solid #5472d2;
        }

        .btn-secondary:hover {
            background: #5472d2;
            color: white;
        }

        /* housing css */


        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #191061;
            margin-bottom: 1rem;
            text-align: center;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: #666;
            text-align: center;
            max-width: 700px;
            margin: 0 auto 3rem;
        }

        /* Before/After Slider */
        .before-after-section {
            background: #f8f9fa;
        }

        .slider-wrapper {
            max-width: 900px;
            margin: 0 auto;
            margin-bottom: 4rem;
        }

        .before-after-slider {
            position: relative;
            width: 100%;
            height: 500px;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.2);
        }

        .slider-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .after-image {
            clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
        }

        .slider-handle {
            position: absolute;
            top: 0;
            left: 50%;
            width: 4px;
            height: 100%;
            background: white;
            cursor: ew-resize;
            transform: translateX(-50%);
        }

        .slider-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        }

        .slider-labels {
            display: flex;
            justify-content: space-between;
            margin-top: 1rem;
            font-weight: 600;
            font-size: 1.1rem;
        }

        .before-label {
            color: #191061;
        }

        .after-label {
            color: #5472d2;
        }

        /* Image Gallery */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .gallery-item {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

        .gallery-item:hover {
            transform: translateY(-10px);
        }

        .gallery-item img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            display: block;
        }

        .gallery-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(25, 16, 97, 0.9), transparent);
            color: white;
            padding: 2rem 1.5rem 1.5rem;
            font-weight: 600;
        }

        /* Process Section */
        .process-section {
            background: white;
        }

        .process-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-top: 3rem;
        }

        .process-step {
            text-align: center;
            padding: 2rem;
            border-radius: 15px;
            transition: all 0.3s;
        }

        .process-step:hover {
            background: #f8f9fa;
            transform: translateY(-5px);
        }

        .process-number {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #191061, #5472d2);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 700;
            margin: 0 auto 1.5rem;
        }

        .process-step h3 {
            color: #191061;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .process-step p {
            color: #666;
            line-height: 1.8;
        }

        /* Benefits Section */
        .benefits-section {
            background: linear-gradient(135deg, #191061, #5472d2);
            color: white;
        }

        .benefits-section .section-title {
            color: white;
        }

        .benefits-section .section-subtitle {
            color: rgba(255,255,255,0.9);
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .benefit-card {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            padding: 2.5rem;
            border-radius: 15px;
            border: 1px solid rgba(255,255,255,0.2);
            transition: all 0.3s;
        }

        .benefit-card:hover {
            background: rgba(255,255,255,0.15);
            transform: translateY(-5px);
        }

        .benefit-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .benefit-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .benefit-card p {
            opacity: 0.9;
            line-height: 1.8;
        }

        /* Content Section */
        .content-section {
            background: white;
        }

        .content-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin-top: 3rem;
        }

        .content-image {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }

        .content-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .content-text h3 {
            color: #191061;
            font-size: 2rem;
            margin-bottom: 1.5rem;
        }

        .content-text p {
            color: #666;
            margin-bottom: 1.5rem;
            line-height: 1.8;
            font-size: 1.1rem;
        }

        .content-text ul {
            list-style: none;
            margin: 2rem 0;
        }

        .content-text li {
            padding: 0.8rem 0;
            padding-left: 2rem;
            position: relative;
            color: #666;
            font-size: 1.1rem;
        }

        .content-text li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #5472d2;
            font-weight: 700;
            font-size: 1.3rem;
        }
        /* roof washing */
        .hero-services {
            position: relative;
            height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            overflow: hidden;
        }

        .hero-services::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(25, 16, 97, 0.9), rgba(84, 114, 210, 0.8));
            z-index: 1;
        }

        .hero-services-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
        }

        .hero-services-content {
            position: relative;
            z-index: 2;
            /* max-width: 800px; */
            padding: 0 20px;
        }

        .hero-services h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .hero-services p {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
        }

        /* Section Styles */
     

        .bg-light {
            background: #f8f9fa;
        }

        h2 {
            font-size: 2.5rem;
            color: #191061;
            margin-bottom: 2rem;
            text-align: center;
        }

        

        p {
            margin-bottom: 1rem;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        /* Before/After Comparison */
        .comparison-section {
            margin: 60px 0;
        }

        .comparison-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-bottom: 40px;
            align-items: start;
        }

        .comparison-item {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }

        .comparison-item img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            display: block;
        }

        /* .comparison-label {
            position: absolute;
            top: 20px;
            left: 20px;
            background: rgba(25, 16, 97, 0.9);
            color: white;
            padding: 10px 20px;
            border-radius: 25px;
            font-weight: bold;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        } */

        .comparison-item.after .comparison-label {
            background: rgba(84, 114, 210, 0.9);
        }

        .comparison-description {
            grid-column: 1 / -1;
            text-align: center;
            padding: 20px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .comparison-description h3 {
            color: #191061;
            margin-bottom: 10px;
        }

        /* Gallery Grid */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 40px;
        }

        .gallery-item {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

        .gallery-item:hover {
            transform: translateY(-5px);
        }

        .gallery-item img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            display: block;
        }

        .gallery-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(25, 16, 97, 0.9), transparent);
            color: white;
            padding: 20px;
            font-weight: 600;
        }

        /* Benefits Grid */
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 40px;
        }

        .benefit-card {
            background: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            text-align: center;
            transition: transform 0.3s;
        }

        .benefit-card:hover {
            transform: translateY(-5px);
        }

        .benefit-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        /* Process Steps */
        .process-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-top: 40px;
        }

        .process-step {
            text-align: center;
            padding: 30px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #191061, #5472d2);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin: 0 auto 20px;
        }

        /* Roof Types Grid */
        .roof-types-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-top: 40px;
        }

        .roof-type-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

        .roof-type-card:hover {
            transform: translateY(-5px);
        }

        .roof-type-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .roof-type-card h3,
        .roof-type-card p {
            padding: 0 20px;
        }

        .roof-type-card h3 {
            margin-top: 20px;
        }

        .roof-type-card p {
            padding-bottom: 20px;
        }

        /* Window Cleaning */
        /* Section Styles */
       

        .bg-light {
            background: #f8f9fa;
        }

        .bg-gradient {
            background: linear-gradient(135deg, #191061, #5472d2);
            color: white;
        }

        h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: #191061;
            text-align: center;
        }

        .bg-gradient h2,
        .bg-gradient h3 {
            color: white;
        }

        /* Before/After Comparison */
        .comparison-section {
            margin: 3rem 0;
        }

        .comparison-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-bottom: 3rem;
            align-items: center;
        }

        .comparison-item {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }

        .comparison-item img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            display: block;
        }

        /* .comparison-label {
            position: absolute;
            top: 20px;
            left: 20px;
            background: rgba(25, 16, 97, 0.9);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 25px;
            font-weight: bold;
            font-size: 1.1rem;
        } */

        .comparison-item.after .comparison-label {
            background: rgba(84, 114, 210, 0.9);
        }

        .comparison-description {
            grid-column: 1 / -1;
            text-align: center;
            padding: 1rem;
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .comparison-description h3 {
            color: #191061;
            margin-bottom: 0.5rem;
        }

        /* Content Grid */
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            margin: 2rem 0;
        }

        .content-text p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .content-image img {
            width: 100%;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }

        /* Process Steps */
        .process-section {
            background: linear-gradient(135deg, #191061, #5472d2);
            color: white;
        }

        .process-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        /* .process-step {
            background: rgba(255, 255, 255, 0.1);
            padding: 2rem;
            border-radius: 12px;
            text-align: center;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        } */

        .process-number {
            width: 60px;
            height: 60px;
            background: white;
            color: #191061;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin: 0 auto 1rem;
        }

        .process-step h3 {
            margin-bottom: 1rem;
        }

        /* Benefits Grid */
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .benefit-card {
            background: white;
            padding: 2rem;
            color: #191061;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .benefit-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.15);
        }

        .benefit-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .benefit-card h3 {
            color: #191061;
            margin-bottom: 1rem;
        }

        /* Image Gallery */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .gallery-item {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

        .gallery-item:hover {
            transform: scale(1.05);
        }

        .gallery-item img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            display: block;
        }

        /* Video Section */
        .video-wrapper {
            max-width: 900px;
            margin: 2rem auto;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 30px rgba(0,0,0,0.2);
        }

        .video-wrapper iframe {
            width: 100%;
            height: 500px;
            border: none;
        }
         /* Section Styles */
        section {
            padding: 20px 0;
        }

        .bg-light {
            background: #f8f9fa;
        }

        h2 {
            font-size: 2.5rem;
            color: #191061;
            margin-bottom: 1rem;
            text-align: center;
        }

        .section-intro {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 3rem;
            font-size: 1.1rem;
            color: #666;
        }

        /* Before After Section */
        .before-after-section {
            margin-bottom: 4rem;
        }

        .before-after-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
            align-items: center;
        }

        .before-after-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .before-after-item img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            display: block;
        }

        .image-label {
            position: absolute;
            top: 20px;
            left: 20px;
            background: rgba(25, 16, 97, 0.9);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 25px;
            font-weight: 600;
            font-size: 1rem;
        }

        .before-label {
            background: rgba(220, 53, 69, 0.9);
        }

        .after-label {
            background: rgba(40, 167, 69, 0.9);
        }

        .comparison-description {
            grid-column: 1 / -1;
            text-align: center;
            padding: 1.5rem;
            background: white;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .comparison-description h3 {
            color: #191061;
            margin-bottom: 0.5rem;
            font-size: 1.5rem;
        }

        /* Video Section */
        .video-section {
            background: #191061;
            color: white;
        }

        .video-section h2 {
            color: white;
        }

        .video-wrapper {
            max-width: 900px;
            margin: 0 auto;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        .video-wrapper iframe {
            width: 100%;
            height: 500px;
            border: none;
        }

        /* Gallery Section */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

        .gallery-item:hover {
            transform: scale(1.05);
        }

        .gallery-item img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            display: block;
        }

        /* Surfaces Grid */
        .surfaces-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        .surface-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

        .surface-card:hover {
            transform: translateY(-5px);
        }

        .surface-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .surface-card h3 {
            color: #191061;
            padding: 1rem 1.5rem 0.5rem;
            font-size: 1.3rem;
        }

        .surface-card p {
            padding: 0 1.5rem 1.5rem;
            color: #666;
        }

        /* Process Section */
        .process-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        .process-step {
            text-align: center;
            padding: 2rem;
            background: white;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .process-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #191061, #5472d2);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin: 0 auto 1rem;
        }

        .process-step h3 {
            color: #191061;
            margin-bottom: 0.5rem;
        }

        /* Comparison Table */
        .comparison-table {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-top: 3rem;
        }

        .comparison-column {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .comparison-column h3 {
            color: #191061;
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .comparison-column ul {
            list-style: none;
        }

        .comparison-column li {
            padding: 0.75rem 0;
            border-bottom: 1px solid #eee;
            font-size: 1.05rem;
        }

        .comparison-column li:last-child {
            border-bottom: none;
        }

        /* Benefits Section */
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        .benefit-card {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            text-align: center;
        }

        .benefit-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #191061, #5472d2);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: 0 auto 1rem;
        }

        .benefit-card h3 {
            color: #191061;
            margin-bottom: 0.5rem;
        }
        /* commercial */
        .lead {
            font-size: 1.2rem;
            color: var(--text-light);
            text-align: center;
            max-width: 900px;
            margin: 0 auto 3rem;
        }

        /* Before After Section */
        .before-after-section {
            margin: 4rem 0;
        }

        .comparison-row {
            margin-bottom: 4rem;
        }

        .comparison-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-bottom: 1.5rem;
        }

        .comparison-item {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .comparison-item img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            display: block;
        }

        /* .comparison-label {
            position: absolute;
            top: 20px;
            left: 20px;
            background: rgba(25, 16, 97, 0.9);
            color: var(--white);
            padding: 0.5rem 1.5rem;
            border-radius: 25px;
            font-weight: bold;
            font-size: 1rem;
        } */

        .comparison-item.after .comparison-label {
            background: rgba(84, 114, 210, 0.9);
        }

        .comparison-description {
            text-align: center;
            color: var(--text-light);
            font-size: 1.1rem;
            padding: 0 2rem;
        }
     

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        .service-card {
            background: var(--white);
            padding: 2rem;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
        }

        .service-card h3 {
            color: var(--primary-color);
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        /* Building Types Grid */
        .building-types-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }
        .building-types-grid p{
            text-align: center;
            color: var(--text-light);
            font-size: 1.1rem;
            padding: 0 2rem;
        }

        .building-type {
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

        .building-type:hover {
            transform: translateY(-5px);
        }

        .building-type img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .building-type h3 {
            padding: 1.5rem;
            text-align: center;
            color: var(--primary-color);
            font-size: 1.2rem;
        }

        /* Features Grid */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        .feature-card {
            background: var(--white);
            padding: 2rem;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .feature-card h3 {
            color: var(--primary-color);
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }

        /* about css */
        .mission-section {
      text-align: center;
      padding: 4rem 2rem;
      background: var(--light-gray);
    }

    .mission-section h2 {
      color: var(--primary);
      font-size: 2.5rem;
      margin-bottom: 1.5rem;
    }

    .mission-section p {
      font-size: 1.3rem;
      line-height: 1.8;
      color: var(--gray);
      max-width: 900px;
      margin: 0 auto;
    }

    /* Story Section */
    .story-section {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
      padding: 4rem 2rem;
    }

    .story-image {
      width: 100%;
      height: 400px;
      object-fit: cover;
      border-radius: 12px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }

    .story-content h2 {
      color: var(--primary);
      font-size: 2.5rem;
      margin-bottom: 1.5rem;
    }

    .story-content p {
      font-size: 1.125rem;
      line-height: 1.8;
      color: var(--gray);
      margin-bottom: 1.5rem;
    }

    /* Values Section */
    .values-section {
      background: var(--light-gray);
      padding: 4rem 2rem;
    }

    .values-section h2 {
      text-align: center;
      color: var(--primary);
      font-size: 2.5rem;
      margin-bottom: 3rem;
    }

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

    .value-card {
      background: var(--white);
      padding: 2rem;
      border-radius: 12px;
      text-align: center;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .value-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    }

    .value-icon {
      font-size: 3rem;
      margin-bottom: 1rem;
    }

    .value-card h3 {
      color: var(--primary);
      font-size: 1.5rem;
      margin-bottom: 1rem;
    }

    .value-card p {
      color: var(--gray);
      line-height: 1.6;
    }
    /* Team Section */
    .team-section {
      padding: 4rem 2rem;
    }

    .team-section h2 {
      text-align: center;
      color: var(--primary);
      font-size: 2.5rem;
      margin-bottom: 3rem;
    }

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

    .team-member {
      text-align: center;
    }

    .team-photo {
      width: 100%;
      height: 300px;
      object-fit: cover;
      border-radius: 12px;
      margin-bottom: 1rem;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .team-member h3 {
      color: var(--primary);
      font-size: 1.5rem;
      margin-bottom: 0.5rem;
    }

    .team-member .role {
      color: var(--secondary);
      font-size: 1.125rem;
      margin-bottom: 0.5rem;
    }

    .team-member p {
      color: var(--gray);
      line-height: 1.6;
    }

    /* Charity Section */
    .charity-section {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: var(--white);
      padding: 4rem 2rem;
      text-align: center;
    }

    .charity-section h2 {
      font-size: 2.5rem;
      margin-bottom: 1.5rem;
    }

    .charity-section p {
      font-size: 1.25rem;
      line-height: 1.8;
      max-width: 900px;
      margin: 0 auto 2rem;
    }

    .charity-logos {
      display: flex;
      justify-content: center;
      gap: 3rem;
      flex-wrap: wrap;
      margin-top: 2rem;
    }

    .charity-logo {
      background: var(--white);
      padding: 2rem;
      border-radius: 12px;
      width: 200px;
      height: 120px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }

    /* Gallery Section */
    .gallery-section {
      padding: 4rem 2rem;
      background: var(--light-gray);
    }

    .gallery-section h2 {
      text-align: center;
      color: var(--primary);
      font-size: 2.5rem;
      margin-bottom: 3rem;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.5rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .gallery-item {
      position: relative;
      overflow: hidden;
      border-radius: 12px;
      height: 250px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s;
    }

    .gallery-item:hover img {
      transform: scale(1.1);
    }

    .gallery-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(to top, rgba(25, 16, 97, 0.9), transparent);
      color: var(--white);
      padding: 1.5rem;
      transform: translateY(100%);
      transition: transform 0.3s;
    }

    .gallery-item:hover .gallery-overlay {
      transform: translateY(0);
    }
 /* contact us */
 /* Contact Info Cards */
    .contact-cards {
      max-width: 1200px;
      margin: -80px auto 0;
      padding: 0 2rem;
      position: relative;
      z-index: 10;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
    }

    .contact-card {
      background: var(--white);
      padding: 2.5rem;
      border-radius: 12px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      text-align: center;
      transition: transform 0.3s, box-shadow 0.3s;
    }

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

    .contact-icon {
      width: 80px;
      height: 80px;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
      font-size: 2rem;
    }

    .contact-card h3 {
      color: var(--primary);
      margin-bottom: 1rem;
      font-size: 1.5rem;
    }

    .contact-card p {
      color: var(--gray);
      line-height: 1.8;
    }

    .contact-card a {
      color: var(--secondary);
      text-decoration: none;
      font-weight: 600;
      transition: color 0.3s;
    }

    .contact-card a:hover {
      color: var(--primary);
    }

    /* Hours Section */
    .hours-section {
      max-width: 800px;
      margin: 5rem auto;
      padding: 3rem 2rem;
      text-align: center;
      background: var(--light-gray);
      border-radius: 12px;
    }

    .hours-section h2 {
      color: var(--primary);
      font-size: 2.5rem;
      margin-bottom: 2rem;
    }

    .hours-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.5rem;
      text-align: left;
    }

    .hours-item {
      background: var(--white);
      padding: 1.5rem;
      border-radius: 8px;
      border-left: 4px solid var(--secondary);
    }

    .hours-item strong {
      color: var(--primary);
      display: block;
      margin-bottom: 0.5rem;
      font-size: 1.1rem;
    }

    /* Form Section */
    .form-section {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      padding: 5rem 2rem;
      margin-top: 5rem;
    }

    .form-container {
      max-width: 800px;
      margin: 0 auto;
    }

    .form-header {
      text-align: center;
      color: var(--white);
      margin-bottom: 3rem;
    }

    .form-header h2 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }

    .form-header p {
      font-size: 1.2rem;
      opacity: 0.9;
    }

    .contact-form {
      background: var(--white);
      padding: 3rem;
      border-radius: 12px;
      box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    }

    .form-row {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.5rem;
      margin-bottom: 1.5rem;
    }

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

    .form-group label {
      display: block;
      margin-bottom: 0.5rem;
      color: var(--primary);
      font-weight: 600;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
      width: 100%;
      padding: 1rem;
      border: 2px solid #e0e0e0;
      border-radius: 8px;
      font-size: 1rem;
      transition: border-color 0.3s;
      font-family: inherit;
    }

    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
      outline: none;
      border-color: var(--secondary);
    }

    .form-group textarea {
      min-height: 150px;
      resize: vertical;
    }

    .btn-submit {
      width: 100%;
      padding: 1.2rem;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: white;
      border: none;
      border-radius: 8px;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      transition: transform 0.3s, box-shadow 0.3s;
      background-color: var(--primary-color);
    }

    .btn-submit:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 25px rgba(84, 114, 210, 0.4);
    }

    /* Map Section */
    .map-section {
      padding: 5rem 2rem;
      background: var(--light-gray);
    }

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

    .map-header {
      text-align: center;
      margin-bottom: 3rem;
    }

    .map-header h2 {
      color: var(--primary);
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }

    .map-wrapper {
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      height: 450px;
      background: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .map-placeholder {
      width: 100%;
      height: 1000px;;
      object-fit: cover;
    }

    /* Service Areas */
    .service-areas {
      padding: 5rem 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .service-areas h2 {
      text-align: center;
      color: var(--primary);
      font-size: 2.5rem;
      margin-bottom: 3rem;
    }

    .areas-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1.5rem;
    }

    .area-item {
      background: var(--light-gray);
      padding: 1.5rem;
      border-radius: 8px;
      text-align: center;
      transition: all 0.3s;
      border: 2px solid transparent;
    }

    .area-item:hover {
      background: var(--white);
      border-color: var(--secondary);
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .area-item h3 {
      color: var(--primary);
      font-size: 1.1rem;
    }

    /* Why Choose Us */
    .why-choose {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      padding: 5rem 2rem;
      color: var(--white);
    }

    .why-choose-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .why-choose h2 {
      text-align: center;
      font-size: 2.5rem;
      margin-bottom: 3rem;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
    }

    .feature-item {
      text-align: center;
      padding: 2rem;
      background: rgba(255,255,255,0.1);
      border-radius: 12px;
      backdrop-filter: blur(10px);
      transition: transform 0.3s;
    }

    .feature-item:hover {
      transform: translateY(-5px);
      background: rgba(255,255,255,0.15);
    }

    .feature-icon {
      font-size: 3rem;
      margin-bottom: 1rem;
    }

    .feature-item h3 {
      font-size: 1.3rem;
      margin-bottom: 1rem;
    }

    .feature-item p {
      opacity: 0.9;
      line-height: 1.6;
    }

    
    /* Responsive */
    @media (max-width: 768px) {
      

      .contact-cards {
        margin-top: 2rem;
        grid-template-columns: 1fr;
      }

      .form-row {
        grid-template-columns: 1fr;
      }

      .contact-form {
        padding: 2rem 1.5rem;
      }
    }

    .contact-top {
      padding: 2.5rem 2rem;
      max-width: 1100px;
      margin: 0 auto;
    }
    .contact-top h1 {
      color: var(--primary);
      font-size: 2rem;
      margin-bottom: 0.5rem;
    }
    .contact-top .lead {
      color: var(--gray);
      font-size: 1.05rem;
      margin-bottom: 1.25rem;
    }
    .contact-top h3 {
      color: var(--secondary);
      font-size: 1.1rem;
      letter-spacing: 0.02em;
      margin-bottom: 1rem;
    }
    .info-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(200px, 1fr));
      gap: 1rem;
    }
    .info-item {
      background: var(--light-gray);
      border-radius: 10px;
      padding: 1rem 1.25rem;
      border: 1px solid #eaeaea;
    }
    .info-item strong {
      display: block;
      color: var(--primary);
      margin-bottom: 0.35rem;
    }
    .info-item a {
      color: var(--secondary);
      text-decoration: none;
      font-weight: 600;
    }

    .contact-two-col {
      max-width: 1100px;
      margin: 1.5rem auto 2.5rem;
      padding: 0 2rem;
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 1.5rem;
      align-items: start;
    }
    .map-card, .form-card {
      background: var(--white);
      border-radius: 12px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.08);
      border: 1px solid #eee;
    }
    .map-card {
      overflow: hidden;
    }
    .map-card iframe,
    .map-card img {
      display: block;
      width: 100%;
      height: 450px;
      border: 0;
    }
    .form-card {
      padding: 1.25rem;
    }
    .form-card h2 {
      color: var(--primary);
      font-size: 1.4rem;
      margin-bottom: 0.75rem;
      padding: 0 0.5rem;
    }
    .contact-form {
      box-shadow: none;      
      padding: 1rem 0.5rem;   
      background: transparent;
    }
    .btn-submit {
      width: 100%;
    }

    .contact-cards,
    .hours-section,
    .form-section,
    .map-section {
      display: none !important; 
    }

    /* privacy policy styles */
    .policy-hero {
        background: #191061;
        color: #fff;
        padding: 48px 20px;
        text-align: center;
      }
      .policy-hero h1 {
        margin: 0;
        font-size: 2rem;
        letter-spacing: 0.3px;
      }
      .policy-container {
        max-width: 980px;
        margin: 0 auto;
        padding: 28px 20px 64px;
      }
      .policy-meta {
        color: #424874;
        font-size: 0.95rem;
        margin-bottom: 12px;
      }
      .policy-content {
        background: #f8f9ff;
        border: 1px solid rgba(25, 16, 97, 0.08);
        border-radius: 12px;
        padding: 20px;
      }
      .policy-content pre {
        /* Preserve the text exactly as provided while wrapping on smaller screens */
        white-space: pre-wrap;
        word-break: break-word;
        margin: 0;
        line-height: 1.6;
        font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto,
          Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
        color: #1b1e28;
      }

  

        /* Responsive Design */
        @media (max-width: 968px) {
            .hero-services h1 {
                font-size: 2.5rem;
            }

            .comparison-row {
                grid-template-columns: 1fr;
            }

            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .benefits-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .process-steps {
                grid-template-columns: repeat(2, 1fr);
            }

            .roof-types-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-content {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 576px) {
            .hero-services h1 {
                font-size: 2rem;
            }

            .hero-services p {
                font-size: 1.2rem;
            }

            .gallery-grid,
            .benefits-grid,
            .process-steps,
            .roof-types-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
           
            .hero-services-overlay h1 {
                font-size: 2rem;
            }

            .hero-services-overlay p {
                font-size: 1rem;
            }

            .story-section {
                grid-template-columns: 1fr;
            }

        .story-section .story-image:first-child {
        order: -1;
      }

            .comparison-item img {
              
              height: 300px;
            }
            .btn-secondary {
                margin-left: 0;
                margin-top: 1rem;
            }

            .before-after-slider {
                height: 350px;
            }


            .content-section h2,
            .before-after-section h2,
            .services-grid-section h2,
            .special-offers h2,
            .cta-section h2 {
                font-size: 2rem;
            }
            .comparison-row {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .comparison-item img {
                height: 300px;
            }

            .content-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .video-wrapper iframe {
                height: 300px;
            }
            .before-after-grid,
            .comparison-table,
            .footer-content {
                grid-template-columns: 1fr;
            }

            .gallery-grid,
            .surfaces-grid,
            .benefits-grid {
                grid-template-columns: 1fr;
            }

            .process-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .before-after-item img {
                height: 300px;
            }
            
            .comparison-grid {
                grid-template-columns: 1fr;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .building-types-grid {
                grid-template-columns: 1fr;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }
        }

.sitemap-content {
            padding: 4rem 2rem;
        }

        .sitemap-section {
            margin-bottom: 3rem;
            animation: fadeInUp 0.8s ease;
        }

        .sitemap-section h2 {
            color: #191061;
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid #5472d2;
            display: inline-block;
        }

        .sitemap-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 1.5rem;
        }

        .sitemap-link {
            background: white;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border-left: 4px solid #5472d2;
        }

        .sitemap-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
            border-left-color: #191061;
        }

        .sitemap-link a {
            color: #191061;
            text-decoration: none;
            font-weight: 500;
            font-size: 1.05rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: color 0.3s ease;
        }

        .sitemap-link a:hover {
            color: #5472d2;
        }

        .sitemap-link a::before {
            content: "→";
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .sitemap-link:hover a::before {
            opacity: 1;
        }