 <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial Black', Arial, sans-serif;
            line-height: 1.6;
            color: #1a1a1a;
            background: linear-gradient(135deg, #f0f8f0 0%, #e8f5e8 100%);
            min-height: 100vh;
        }

        /* Header and Navigation */
        nav {
            background: linear-gradient(135deg, #7cb342 0%, #8bc34a 100%);
            box-shadow: 0 4px 20px rgba(124, 179, 66, 0.4);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 4px solid #1a1a1a;
        }

        nav {
            max-width: 100%;
            margin: 0 auto;
            padding: 0 20px;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }

        .logo-nav {
            font-size: 1.8rem;
            font-weight: 900;
            color: #1a1a1a;
            text-decoration: none;
            display: flex;
            align-items: center;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 1rem;
        }

        .nav-links a {
            color: #1a1a1a;
            text-decoration: none;
            font-weight: 800;
            padding: 0.8rem 1.5rem;
            border-radius: 8px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
            border: 3px solid transparent;
        }

        .nav-links a:hover,
        .nav-links a.active {
            background: #1a1a1a;
            color: white;
            border: 3px solid #1a1a1a;
            transform: translateY(-2px);
        }

        /* Main Content */
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem 20px;
        }

        /* Page Header */
        .page-header {
            text-align: center;
            padding: 3rem 2rem;
            background: white;
            border-radius: 15px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            margin-bottom: 3rem;
            border: 4px solid #1a1a1a;
            position: relative;
        }

        .page-header::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 8px;
            background: linear-gradient(90deg, #7cb342, #8bc34a, #4caf50);
        }

        .page-header h1 {
            font-size: 3.5rem;
            font-weight: 900;
            color: #1a1a1a;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 1rem;
            text-shadow: 3px 3px 0px #7cb342;
        }

        .page-header p {
            font-size: 1.3rem;
            color: #4a4a4a;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Contact Sections Container */
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
            align-items: start;
        }

        /* Contact Section Styling */
        .contact-section {
            background: white;
            padding: 3rem;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            border: 4px solid #1a1a1a;
            position: relative;
            transition: transform 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .contact-section:hover {
            transform: translateY(-5px);
        }

        .contact-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: linear-gradient(90deg, #7cb342, #8bc34a);
        }

        .contact-section h2 {
            font-size: 2.2rem;
            font-weight: 900;
            color: #1a1a1a;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-align: center;
        }

        .contact-section .subtitle {
            font-size: 1.1rem;
            color: #4a4a4a;
            font-weight: 600;
            text-align: center;
            margin-bottom: 2rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Contact Info Items */
        .contact-item {
            margin-bottom: 2rem;
            padding: 2rem;
            background: #f8f8f8;
            border-radius: 12px;
            border: 3px solid #7cb342;
            transition: all 0.3s ease;
            text-align: center;
            flex-grow: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
        }

        .contact-item:hover {
            transform: translateY(-3px);
            border-color: #1a1a1a;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }

        .contact-item:last-child {
            margin-bottom: 0;
        }

        .contact-item h3 {
            font-size: 1.4rem;
            font-weight: 800;
            color: #1a1a1a;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .contact-item p {
            color: #4a4a4a;
            font-weight: 600;
            line-height: 1.6;
            margin-bottom: 0.5rem;
        }

        .contact-item a {
            color: #7cb342;
            text-decoration: none;
            font-weight: 800;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }

        .contact-item a:hover {
            color: #1a1a1a;
            text-decoration: underline;
        }

        /* Special styling for different sections */
        .customer-contact {
            background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
        }

        .business-contact {
            background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
        }

        .customer-contact::before {
            background: linear-gradient(90deg, #7cb342, #8bc34a);
        }

        .business-contact::before {
            background: linear-gradient(90deg, #4caf50, #66bb6a);
        }

        /* Social items for the Follow Us section */
        .business-contact .contact-item {
            align-items: center;
            justify-content: center;
            min-height: 80px;
        }

        /* Footer */
        footer {
            background: #1a1a1a;
            color: white;
            text-align: center;
            padding: 2.5rem;
            margin-top: 3rem;
            border-top: 6px solid #7cb342;
        }

        footer p {
            font-weight: 600;
            letter-spacing: 1px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-container {
                flex-direction: column;
                gap: 1rem;
            }

            .nav-links {
                gap: 0.5rem;
                flex-wrap: wrap;
                justify-content: center;
            }

            .page-header h1 {
                font-size: 2.5rem;
                letter-spacing: 2px;
            }

            .contact-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .contact-section {
                padding: 2rem;
                height: auto;
            }

            .contact-section h2 {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 480px) {
            .page-header h1 {
                font-size: 2rem;
                letter-spacing: 1px;
            }

            .contact-section {
                padding: 1.5rem;
            }

            .contact-item {
                padding: 1.5rem;
            }

            .page-header {
                padding: 2rem 1.5rem;
            }
        }
    </style>