        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }

        /* Variables */
        :root {
            --primary-color: #2c3e50;
            --secondary-color: #34495e;
            --accent-color: #3498db;
            --text-color: #444;
            --light-color: #ecf0f1;
            --dark-color: #2c3e50;
            --border-color: #e0e0e0;
            --container-width: 1140px;
        }

        body {
            color: var(--text-color);
            line-height: 1.6;
            background-color: #f8f9fa;
        }

        /* Pre-Footer Container */
        .prefooter-container {
            margin-top:300px;
            width: 100%;
            background-color: white;
            border-top: 1px solid var(--border-color);
            padding: 30px 0;
        }

        /* Centered Content */
        .prefooter-content {
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Main Grid Layout */
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 3fr;
            gap: 50px; /* Increased margin between sections */
        }

        /* Site Info Section */
        .site-info {
            padding-right: 20px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            height: 100%;
        }

        .site-logo {
            background-color: #ddd;
            width: 180px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #999;
            font-size: 24px;
            margin-bottom: 15px;
        }

        .site-description {
            color: var(--text-color);
            font-size: 14px;
            margin-bottom: 20px;
            padding-right: 20px;
        }

        /* Social Icons */
        .social-links {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
        }

        .social-icon {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background-color: #f0f0f0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
        }

        /* Address Info */
        .address-info {
            font-style: normal;
            font-size: 14px;
            color: var(--text-color);
            line-height: 1.6;
            margin-top: auto; /* Push to bottom */
        }

        /* Navigation Grids */
        .footer-nav-container {
            display: flex;
            flex-direction: column;
        }

        .nav-row {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
        }

        /* Column Styling */
        .column {
            display: flex;
            flex-direction: column;
        }

        .column-heading {
            color: var(--primary-color);
            font-size: 18px;
            font-weight: bold;
            padding-bottom: 10px;
            margin-bottom: 10px;
            position: relative;
        }

        /* Individual underlines for each category */
        .column-heading::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--accent-color);
        }

        .nav-list {
            list-style: none;
        }

        .nav-item a {
            color: var(--text-color);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.2s;
        }

        .nav-item a:hover {
            color: var(--accent-color);
        }

        /* Weather Section */
        .weather-section {
            background-color: #f9f9f9;
            padding: 5px 0;
            margin: 0;
            width: 100%;
            border-top: 1px solid #eee;
        }

        .weather-row {
            display: flex;
            justify-content: space-around;
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .weather-column {
            display: flex;
            flex-direction: row;
            align-items: center;
            padding: 2px 0;
            gap: 8px;
        }

        .weather-heading {
            color: var(--primary-color);
            font-size: 12px;
            font-weight: 600;
            margin: 0;
            white-space: nowrap;
        }

        .weather-icon {
            margin: 0;
            stroke: var(--accent-color);
            fill: none;
            width: 16px;
            height: 16px;
            flex-shrink: 0;
        }

        .weather-temp {
            font-size: 12px;
            font-weight: 600;
            color: var(--primary-color);
            white-space: nowrap;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .weather-row {
                flex-wrap: wrap;
                justify-content: flex-start;
                gap: 10px 20px;
            }
            
            .weather-column {
                flex: 0 0 auto;
            }
        }

        .footer-content {
            max-width: var(--container-width);
            margin: 0 auto;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .main-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .nav-row, .weather-row {
                grid-template-columns: repeat(3, 1fr);
                gap: 20px;
            }
        }

        @media (max-width: 768px) {
            .nav-row, .weather-row {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 480px) {
            .nav-row, .weather-row {
                grid-template-columns: 1fr;
            }
        }