        /* Base styles consistent with your original old-styles.css */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Verdana, sans-serif;
            font-size: 12px;
            background-color: #f8f8f8;
        }

        /* Links styling from your original CSS */
        A:link {
            color: #006633;
            text-decoration: none;
        }

        A:visited {
            color: #006633;
            text-decoration: none;
        }

        A:active {
            color: #006633;
            text-decoration: none;
        }

        A:hover {
            color: #B2D77A;
            text-decoration: none;
        }

        TD {
            font-size: 12px;
            font-family: Verdana;
        }

        P {
            font-size: 12px;
            font-family: Verdana;
        }

        TD.smaller {
            font-size: 11px;
            font-family: Verdana;
            color: #000000;
        }

        P.smaller {
            font-size: 11px;
            font-family: Verdana;
            color: #000000;
        }

        HR {
            color: #006633;
            height: 1px;
        }

        /* Main content area */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background-color: #fff;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .content-area {
            padding: 20px;
        }

        .page-content {
            background-color: #fff;
        }

        .page-content h2 {
            color: #006633;
            margin-bottom: 1rem;
            font-family: Verdana, sans-serif;
            font-size: 16px;
        }

        .page-content p {
            font-size: 12px;
            line-height: 1.8;
            color: #666;
            font-family: Verdana, sans-serif;
            margin-bottom: 15px;
        }

        .editable-content {
            margin-top: 20px;
            padding: 20px;
            background-color: #f9f9f9;
            border: 2px dashed #ccc;
            border-radius: 10px;
            min-height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #999;
        }

        /* Footer styles */
        .footer {
            background-color: #006633;
            color: #fff;
            text-align: center;
            padding: 20px;
            margin-top: 20px;
        }
        
        /* Fix spacing between menu and content on homepage */
.container {
    margin-top: 15px !important; /* Add more space from the menu */
}

/* OR if that doesn't work, try this alternative: */
main {
    margin-top: 15px !important;
    padding-top: 15px !important;
}

/* Remove any negative margins that might cause overlap */
.content-area {
    margin-top: 0 !important;
    padding-top: 15px !important;
}

/* Ensure the header doesn't overlap content */
.header {
    margin-bottom: 15px !important;
}
        


/* Base styles consistent with index.php */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Verdana, sans-serif;
            font-size: 12px;
            background-color: #f8f8f8;
        }

        
        
        /* Fix navigation menu text visibility */
        .header .nav-link {
            color: #fff !important;
            font-family: Verdana, sans-serif !important;
            font-size: 12px !important;
            text-decoration: none !important;
            display: block !important;
            visibility: visible !important;
        }

        .header .nav-link:hover {
            color: #006633 !important;
            background-color: #B2D77A !important;
        }

        .header .nav-link.active {
            color: #fff !important;
            background-color: #FFA500 !important;
        }

        .header .dropdown-item {
            color: #fff !important;
            font-family: Verdana, sans-serif !important;
            font-size: 11px !important;
            text-decoration: none !important;
            display: block !important;
            visibility: visible !important;
        }

        .header .dropdown-item:hover {
            color: #006633 !important;
            background-color: #B2D77A !important;
        }

        /* Main content area */
        .container {
            max-width: 1200px;
            margin: 20px auto;
            background-color: #fff;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .content-area {
            padding: 30px;
        }

        /* Newsletter hero section */
        .newsletter-hero {
            text-align: center;
            padding: 30px 0;
            background-color: #f9f9f9;
            border: 2px dashed #ccc;
            border-radius: 10px;
            margin-bottom: 30px;
        }

        .newsletter-hero h2 {
            color: #006633;
            font-family: Verdana, sans-serif;
            font-size: 18px;
            margin-bottom: 15px;
        }

        .newsletter-hero p {
            font-size: 14px;
            line-height: 1.6;
            color: #666;
            font-family: Verdana, sans-serif;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Form styling */
        .newsletter-form {
            background: #f9f9f9;
            padding: 30px;
            border: 2px dashed #ccc;
            border-radius: 10px;
            margin: 30px 0;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .newsletter-form h3 {
            color: #006633;
            font-family: Verdana, sans-serif;
            font-size: 16px;
            text-align: center;
            margin-bottom: 25px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #006633;
            font-weight: bold;
            font-family: Verdana, sans-serif;
            font-size: 12px;
        }

        .form-group input {
            width: 100%;
            padding: 12px;
            border: 2px solid #B2D77A;
            font-family: Verdana, sans-serif;
            font-size: 12px;
            box-sizing: border-box;
        }

        .form-group input:focus {
            outline: none;
            border-color: #006633;
        }

        .subscribe-btn {
            width: 100%;
            background: #006633;
            color: #fff;
            padding: 15px;
            border: none;
            font-family: Verdana, sans-serif;
            font-size: 14px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .subscribe-btn:hover {
            background-color: #B2D77A;
            color: #006633;
        }

        /* Message styling */
        .message {
            padding: 15px;
            margin-bottom: 30px;
            text-align: center;
            font-family: Verdana, sans-serif;
            font-size: 12px;
            font-weight: bold;
        }

        .message.success {
            background: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }

        .message.error {
            background: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }

        /* Sample content section */
        .sample-article {
            background-color: #f0f8f0;
            padding: 30px;
            margin: 30px 0;
        }

        .sample-article h4 {
            color: #006633;
            font-family: Verdana, sans-serif;
            font-size: 14px;
            margin-bottom: 15px;
        }

        .sample-article h5 {
            color: #006633;
            font-family: Verdana, sans-serif;
            font-size: 13px;
            margin-bottom: 8px;
        }

        .sample-article p {
            font-size: 12px;
            line-height: 1.6;
            color: #666;
            font-family: Verdana, sans-serif;
            margin-bottom: 15px;
        }

        .content-box {
            padding: 15px;
            background: white;
            margin-bottom: 15px;
            border-left: 4px solid #006633;
        }

        .content-box strong {
            color: #006633;
            font-family: Verdana, sans-serif;
            font-size: 12px;
        }

        .content-box p {
            margin: 8px 0 0 0;
            font-size: 11px;
        }

        /* Privacy section */
        .privacy-section {
            background: #f9f9f9;
            padding: 25px;
            margin-top: 30px;
            text-align: center;
            border: 1px solid #ddd;
        }

        .privacy-section h4 {
            color: #006633;
            font-family: Verdana, sans-serif;
            font-size: 14px;
            margin-bottom: 15px;
        }

        .privacy-section p {
            color: #666;
            font-size: 11px;
            line-height: 1.6;
            font-family: Verdana, sans-serif;
        }

        /* Mobile responsive */
        @media screen and (max-width: 768px) {
            .content-area {
                padding: 20px;
            }
            
            .newsletter-form {
                margin: 20px 0;
                padding: 20px;
            }
            
            .newsletter-hero {
                padding: 20px 15px;
                margin-bottom: 20px;
            }
            
            .sample-article {
                padding: 20px;
                margin: 20px 0;
            }
        }

        /* Footer styles */
        .footer {
            background-color: #006633;
            color: #fff;
            text-align: center;
            padding: 20px;
            margin-top: 20px;
        }
