
        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Georgia', serif;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 20px;
            line-height: 1.6;
        }

        /* Main Container */
        .container {
            max-width: 900px;
            margin: 0 auto;
            background: white;
            border: 8px solid #d4a017;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.3);
            overflow: hidden;
        }

        /* Header Section */
        header {
            background: linear-gradient(to bottom, #f8f9fa, #ffffff);
            padding: 40px 30px;
            text-align: center;
            border-bottom: 3px solid #d4a017;
        }

        h1 {
            color: #d2691e;
            font-size: 1.75em;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .tagline {
            font-size: 1.2em;
            color: #333;
            margin-bottom: 20px;
        }

        .phone {
            font-size: 2em;
            color: #2c5f2d;
            font-weight: bold;
            margin-top: 10px;
            letter-spacing: 1px;
        }

        .call-text {
            color: #666;
            font-size: 1.1em;
            margin-bottom: 5px;
        }

        /* Call to Action Button */
        .cta-button {
            display: inline-block;
            background: #2c5f2d;
            color: white;
            padding: 15px 40px;
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.2em;
            margin-top: 20px;
            transition: all 0.3s ease;
            font-weight: bold;
        }

        .cta-button:hover {
            background: #1e4620;
            transform: scale(1.05);
        }

        /* Services Section */
        .services-section {
            padding: 40px 30px;
        }

        .services-title {
            color: #2c5f2d;
            font-size: 2em;
            text-align: center;
            margin-bottom: 30px;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: bold;
        }

        .disclaimer {
            text-align: center;
            padding: 20px;
            font-size: 0.9em;
            color: #555;
            margin-bottom: 20px;
            line-height: 1.5;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 15px;
            margin-bottom: 40px;
        }

        .service-item {
            display: flex;
            padding: 12px;
            background: #f8f9fa;
            border-radius: 8px;
            transition: all 0.3s ease;
            flex-direction: column;
        }

        .service-item:hover {
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }

        .service-name {
            color: #4a90e2;
            font-weight: bold;
            text-transform: uppercase;
            min-width: 180px;
            font-size: 0.95em;
        }

        .service-details {
            color: #333;
            flex: 1;
        }
        .drywall-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6px 20px;
            margin-bottom: 15px;
        }   


        /* About Section */
        .about-section {
            background: linear-gradient(to bottom, #f8f9fa, #ffffff);
            padding: 40px 30px;
            border-top: 3px solid #d4a017;
        }

        .about-title {
            color: #d4a017;
            font-size: 1.8em;
            margin-bottom: 20px;
            font-weight: bold;
        }

        .about-text {
            font-size: 1.1em;
            color: #333;
            line-height: 1.8;
        }

        .highlight {
            color: #d4a017;
            font-weight: bold;
        }

        /* Footer */
        footer {
            background: #2c5f2d;
            color: white;
            text-align: center;
            padding: 20px;
            font-size: 1.1em;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            h1 {
                font-size: 1.8em;
            }

            .phone {
                font-size: 1.5em;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .service-name {
                min-width: auto;
                margin-bottom: 5px;
            }
        }

        /* Expandable service tiles */
        .service-toggle {
            background: none;
            border: none;
            padding: 0;
            margin: 0;
            text-align: left;
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 6px;
            align-items: flex-start;
            cursor: pointer;
        }

        .service-toggle:focus {
            outline: none;
            outline-offset: 2px;
        }

        .service-toggle .service-name,
        .service-toggle .service-details {
            display: block;
        }

        .service-toggle .service-details {
            color: #333;
            font-size: 0.95em;
        }

        .service-pricing {
            display: none;
            margin-top: 8px;
            padding-top: 8px;
            border-top: 1px solid #ddd;
            font-size: 0.95em;
        }

        .service-pricing ul {
            list-style: none;
        }

        .service-pricing li {
            margin-bottom: 4px;
        }
    