﻿/* General Styles */

    .container {
    max-width: 1200px; /* Adjust between 1140px - 1280px as needed */
    margin: 0 auto;    /* Centers the content */
    padding: 0 15px;   /* Adds spacing on smaller screens */
    
          
           /* border: 2px solid #990000;  Slight border */
    border-radius: 12px; /* Curved edges */
    padding: 20px; /* Adds internal spacing */
    margin: 10px auto; /* Adds spacing outside */
    max-width: 1200px; /* Centers content with a set width */
    background-color: #f8f9fa; /* Background color for the header */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional shadow for 3D effect */

}




body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8;
    overflow-x: hidden;
}

/* Header */
header {
    background-color: white; /* White background for top bar */
    display: flex;
    justify-content: flex-start; /* Aligns the image to the left */
    align-items: center;
    padding: 10px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Logo Container (Logo + Menu Button) */
.logo-container {
    display: flex;
    align-items: center;
    gap: 15px; /* Adjust spacing between logo and menu button */
}

.logo img {
    max-width: 100%;
    height: auto;
    max-height: 60px;
}


/* Navigation Links */
.menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    max-width: 90vw;
}

.menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.menu ul li {
    margin: 0 10px;
}

.menu ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}


/* Sidebar - Fixed on Desktop, Hidden on Mobile */
.sidebar {
    position: fixed;
    top: 80px; /* Starts below the top bar */
    left: 0;
    width: 250px;
    height: calc(100% - 80px);
    background-color: #990000; /* Dark red */
    color: white;
    box-shadow: 2px 0px 5px rgba(0, 0, 0, 0.2);
    padding: 20px;
    overflow-y: auto;
    z-index: 1001;
}

/* Sidebar Title */
.sidebar h2 {
    color: white;
    font-size: 18px;
    margin-bottom: 10px;
    border-bottom: 1px solid white;
    padding-bottom: 5px;
}

/* Sidebar Links */
.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar ul li {
    margin-bottom: 8px;
}

.sidebar ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    display: block;
    padding: 8px;
    transition: background 0.3s ease-in-out;
}

.sidebar ul li a:hover {
    background-color: #b30000;
}

/* Collapsible Buttons */
.collapsible {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    width: 100%;
    text-align: left;
    padding: 10px;
    cursor: pointer;
    outline: none;
    font-weight: bold;
}

.collapsible:hover {
    background-color: #b30000;
}



.sidebar h2 {
    color: white;
    font-size: 18px;
    margin-bottom: 10px;
    border-bottom: 1px solid white;
    padding-bottom: 5px;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar ul li {
    margin-bottom: 8px;
}

.sidebar ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    display: block;
    padding: 8px;
    transition: background 0.3s ease-in-out;
}

.sidebar ul li a:hover {
    background-color: #770000;
}

/* Sidebar Toggle Button (For Mobile) */
.sidebar-toggle {
    display: block;
    position: fixed;
    left: 10px;
    top: 90px;
    background: #990000;
    color: white;
    border: none;
    padding: 10px;
    font-size: 18px;
    cursor: pointer;
    z-index: 1001;
}
/* Profile Section */
.profile {
    display: flex;
    flex-direction: column;
    margin-left: 180px;
    padding: 130px 20px 20px;
    max-width: calc(100vw - 270px);
    overflow-x: hidden;
    position: relative;
}
/* Profile Header with Two Columns */
.profile-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    justify-content: flex-start;
    text-align: left;
    margin-bottom: 25px;
    gap: 20px;
    padding-left: 40px; /* Move image slightly to the right */
}

.profile-image img {
    width: 200px;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    border: 3px solid #990000;
    max-height: 250px;
}

.profile-info {
    flex: 1;
}

.profile-info h1 {
    margin: 0;
    font-size: 24px;
    color: #990000;
    font-weight: bold;
}

.profile-info p {
    margin: 5px 0;
    color: #444;
    font-size: 16px;
}

.profile-actions {
    display: flex;
    gap: 10px;
}

.profile-actions button {
    background-color: #990000;
    color: white;
    padding: 10px 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
}

/* Profile Content */
.profile-content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    width: calc(100% - 40px);
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.profile-content h2 {
    background-color: #990000;
    color: white;
    padding: 10px;
    font-size: 20px;
    border-radius: 5px;
    width: calc(100% - 20px);
    text-align: center;
    margin: 0 auto;
}

.profile-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 10px 0;
}

.profile-details .section {
    background-color: #f9f9f9;
    padding: 10px;
    border-radius: 5px;
}

.profile-details h3 {
    margin: 0 0 5px;
    font-size: 16px;
    color: #990000;
}

.full-width {
    width: 100%;
    font-size: 16px;
    font-style: italic;
    margin-top: 10px;
}

/* Move Desired Partner Section Below Profile */
.desired-partner {
    margin-top: 40px;
}


/* Adjust the logo container to include hamburger menu */


/* Hamburger Menu Button */



/* Adjust the logo container */
.logo-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    padding: 10px 15px;
    background-color: #ffffff; /* White background */
    position: relative;
}

/* Ensure the logo and hamburger are aligned */
.logo {
    display: flex;
    align-items: center;
    margin-left: 10px; /* Space between hamburger and logo */
}

/* Ensure the logo image is responsive */
.logo img {
    max-height: 50px; /* Adjust as needed */
    width: auto;
}

/* Hamburger Menu Button */
.menu-toggle {
    display: none; /* Hide by default on larger screens */
    background: none;
    border: none;
    font-size: 30px; /* Larger size for visibility */
    font-weight: bold;
    color: #990000; /* Dark red color for contrast */
    cursor: pointer;
    margin-left: -15px; /* Moves it slightly more to the left */
}


    
    
/* DESKTOP: Sidebar starts below the top bar */
/* Sidebar Styling */
.sidebar {
    position: fixed;
    top: 90px;
    left: 0;
    width: 250px;
    height: calc(100% - 60px);
    background-color: #990000; /* Dark red */
    color: white;
    box-shadow: 2px 0px 5px rgba(0, 0, 0, 0.2);
    padding: 20px;
    overflow-y: auto;
    z-index: 1001;
}


/* MOBILE: Sidebar should start from the top and remain hidden */



/* Show sidebar when active */
.sidebar.active {
    display: block;
}



/* Close Button Inside Sidebar (Hidden on Desktop) */
.close-sidebar {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
    display: none; /* Hide by default */
}


/* Collapsible Buttons */
.collapsible {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    width: 100%;
    text-align: left;
    padding: 10px;
    cursor: pointer;
    outline: none;
    font-weight: bold;
}

.collapsible:hover {
    background-color: #b30000;
}


/* Mobile: Always Show Submenus */
@media screen and (max-width: 768px) {
   .submenu {
        display: none;
    }
    .collapsible {
        display: none; /* Hide collapsible buttons */
    }
}

/* Sidebar Links */
.sidebar a {
    color: white;
    text-decoration: none;
    display: block;
    padding: 8px;
}

/* Sidebar Links Hover Effect */
.sidebar a:hover {
    background-color: #b30000;
}

/* Submenus - Hidden by Default */
.submenu {
    list-style: none;
    padding-left: 20px;
    display: none; /* Hidden by default */
}

/* Submenu Links */
.submenu li a {
    color: white;
    text-decoration: none;
    display: block;
    padding: 8px;
}

/* Show Submenu When Active */
.submenu.active {
    display: block;
}









/* Responsive Design */
@media (max-width: 768px) {
      .menu-toggle {
        display: block; /* Show only on mobile */
    }
    

    .sidebar {
        display: none;
        top: 0; /* Sidebar should start from the top on mobile */
        width: 80%;
        max-width: 300px;
        height: 100%;
    }

    .sidebar.active {
        display: block;
    }
    
    
     .close-sidebar {
        display: block; /* Show on mobile */
    }
    
    .menu.open {
        display: flex;
    }
    
    .menu ul {
        flex-direction: column;
    }

    @media screen and (max-width: 768px) {
    .profile {
        width: 100%; /* Ensure full width */
        max-width: 100%;
         margin: 0 auto; /*Center the profile area */
        padding: 120px 0px 0px; /* Keep stable padding */
        overflow-x: hidden; /* Prevent unwanted horizontal scrolling */
        position: relative;
    }

    .profile-header {
        flex-direction: column;
        text-align: center;
        padding-left: 0;
        margin: 0 auto; /* Center the header */
    }

    .profile-image img {
        width: 75%;
        max-width: 350px;
        height: auto;
        display: block;
        margin: 0 auto; /* Center the image */
    }

    .profile-info {
        padding-left: 0;
        text-align: center;
    }

    .profile-actions {
        flex-direction: column;
        align-items: center;
    }

    .profile-details {
        display: block;
        width: 100%;
        margin: 0 auto; /* Ensure content stays centered */
    }

    .profile-content {
        width: 100%;
        padding: 10px;
        margin: 0 auto; /* Center the content */
        box-sizing: border-box; /* Prevent extra spacing */
    }

}

    .logo img {
        max-height: 50px;
    }
}





/* new*//* Sidebar Styles */

/* Sidebar Styles */
.sidebar {
    position: fixed;
    top: 90px; /* Adjust this value to match the height of the top menu */
    left: 0;
    width: 250px; /* Standard sidebar width */
    height: calc(100% - 90px); /* Adjust height dynamically */
    background-color: #f8f8f8; /* Light gray */
    color: black;
    box-shadow: 2px 0px 5px rgba(0, 0, 0, 0.2);
    padding: 0;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 1001;
    border: 1px solid #ddd;
}

/* Sidebar Headers (Category Titles) */
.sidebar h2 {
    background-color: #990000;
    color: white;
    font-size: 18px;
    margin: 0;
    padding: 12px 15px;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

/* Sidebar List */
.sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

/* Sidebar List Items */
.sidebar ul li {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #ddd;
    width: 100%;
}

/* Sidebar Links */
.sidebar ul li a {
    text-decoration: none;
    color: black;
    font-weight: bold;
    display: block;
    padding: 12px 15px;
    font-size: 16px;
    text-align: left;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
    border: 1px solid #ccc;
    background-color: white;
    width: 100%;
    box-sizing: border-box;
}

/* Sidebar Hover Effect */
.sidebar ul li a:hover {
    background-color: #f0f0f0;
    color: #990000;
}

/* Submenu Links - Full width */
.submenu {
    width: 100%;
    padding: 0;
    margin: 0;
}

.submenu li {
    width: 100%;
}

.submenu li a {
    width: 100%;
    border-left: none;
    border-right: none;
}

/* Sidebar Close Button */
.close-sidebar {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    color: black;
    cursor: pointer;
}
/* Mobile-Specific Adjustments */
@media screen and (max-width: 768px) {
    .sidebar {
        top: 70px; /* Adjust this value to move it higher */
        width: 80%;
        max-width: 280px;
    }

    .sidebar ul li a {
        font-size: 15px;
        padding: 12px;
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    /* ✅ Fix Footer: Ensure it Extends Fully on Mobile */

    /* ✅ Fix Profile Section Headings: Extend to Both Left and Right */
    .profile-content h2 {
        background-color: #990000;
        color: white;
        padding: 10px;
        font-size: 20px;
        text-align: center;
        margin: 0; /* Ensure no extra spacing */
        width: 100%; /* Extend fully */
        box-sizing: border-box; /* Prevent extra padding from affecting width */
    }
}




/* Login Section */
.login-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 120px); /* Adjust height based on header/footer */
    padding: 20px;
}

/* Login Container */
.login-container {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

/* Heading */
.login-container h2 {
    margin-bottom: 20px;
    color: #990000;
    font-size: 24px;
}

/* Input Group */
.input-group {
    margin-bottom: 15px;
    text-align: left;
}

.input-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
    color: #333;
}

.input-group input {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

/* Login Button */
.login-button {
    background-color: #990000;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
    font-weight: bold;
}

.login-button:hover {
    background-color: #b30000;
}

/* Forgot Password & Register Links */
.forgot-password,
.register-link {
    margin-top: 10px;
    font-size: 14px;
}

.forgot-password a,
.register-link a {
    color: #990000;
    text-decoration: none;
    font-weight: bold;
}

.forgot-password a:hover,
.register-link a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .login-section {
        height: auto;
        padding: 40px 20px;
    }

    .login-container {
        width: 90%;
    }
}


      footer {
            background: #white;
            color: white;
            text-align: center;
            padding: 20px;
        }

        footer a {
            color: #990000;
            text-decoration: none;
        }

        footer a:hover {
            text-decoration: underline;
        }


@media (min-width: 769px) {
    .login-section {
        margin-left: 270px; /* Push login page to the right to avoid sidebar overlap */
        width: calc(100% - 270px);
    }
}

@media (max-width: 768px) {
    .login-section {
        height: auto;
        padding: 80px 20px 40px; /* Increased top padding to push it down */
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .login-container {
        width: 100%;
        max-width: 90%;
        padding: 20px;
    }
}




/* General Information Section */
.info-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

/* Container for Content */
.info-container {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    text-align: left;
    box-sizing: border-box;
}

/* Page Title */
.info-title {
    color: #990000;
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

/* Section Headings */
.info-container h3 {
    font-size: 20px;
    color: #990000;
    margin-top: 20px;
}

/* Paragraphs */
.info-container p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

/* Contact Information List */
.contact-info {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.contact-info li {
    font-size: 16px;
    margin-bottom: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .info-section {
        padding: 80px 5px 40px; /* Reduce left & right padding */
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .info-container {
        width: 100%;
        max-width: 98%; /* Ensure balanced space */
        padding: 20px;
        margin: 0 auto; /* Center align the content */
        box-sizing: border-box; /* Prevent width overflow */
    }
}

@media (min-width: 769px) {
    .info-section {
        margin-left: 270px; /* Push content right to avoid sidebar overlap */
        width: calc(100% - 290px); /* Ensure it takes remaining width */
    }
}

/* Search Results Section */
.search-results {
    margin-left: 270px; /* Push right to avoid sidebar overlap */
    width: calc(100% - 290px); /* Ensure it takes remaining width */
    padding: 100px 20px 20px; /* Add top padding to push below top bar */
    box-sizing: border-box;
}

/* Heading */
.search-results h2 {
    text-align: center;
    color: #990000;
    font-size: 24px;
}

/* Next Link */
.next-link {
    display: block;
    text-align: center;
    margin: 10px 0;
    font-size: 16px;
    color: #0000EE;
    text-decoration: underline;
}

/* Result Header */
.result-header {
    background-color: #990000;
    color: white;
    padding: 10px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
}

/* Individual Result Item */
.result-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Premium Listing */
.premium {
    background-color: #fff4d1 !important; /* Subtle Gold */
    border: 2px solid #d4af37; /* Gold border */
    position: relative;
}

/* Premium Badge */
.premium-badge {
    background-color: #d4af37;
    color: white;
    font-size: 14px;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 5px;
}

/* Profile Images */
.result-item img {
    width: 80px;
    height: 80px;
    border-radius: 5px;
    object-fit: cover;
    border: 2px solid #ddd;
}

/* Result Text */
.result-text {
    flex: 1;
}

/* Name & Details */
.result-text p {
    margin: 3px 0;
    font-size: 16px;
}

.result-text a {
    color: #0000EE;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .search-results {
        margin-left: 0;
        width: 100%;
        padding: 15px;
        
    }

    .result-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .result-item img {
        width: 100px;
        height: 100px;
    }

    .result-text {
        width: 100%;
    }
}

/* Advanced Search Section */
.advanced-search {
    margin-left: 270px; /* Adjust if sidebar width changes */
    width: calc(100% - 290px);
    padding: 100px 20px 20px; /* Ensure it doesn't hide behind top bar */
    box-sizing: border-box;
}

.advanced-search h2 {
    text-align: center;
    color: #990000;
    font-size: 24px;
    margin-bottom: 20px;
}

.search-form {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
}

.form-group select, .form-group input[type=text], .form-group input[type=number] {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

.form-group input[type=checkbox] {
    margin-right: 5px;
}

.form-group span {
    margin: 0 10px;
    font-size: 16px;
    color: #333;
}

.search-button {
    background-color: #990000;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    margin-top: 10px;
}

.search-button:hover {
    background-color: #b30000;
}

/* Responsive Design */
@media (max-width: 768px) {
    .advanced-search {
        margin-left: 0;
        width: 100%;
        padding: 80px 10px 20px;
    }

    .search-form {
        padding: 15px;
    }
}


/* Registration Section */
.registration-section {
    margin-left: 270px;
    width: calc(100% - 290px);
    padding: 100px 20px 20px;
    box-sizing: border-box;
}

/* Header */
.registration-header {
    text-align: center;
    margin-bottom: 15px;
}

.registration-header h2 {
    font-size: 22px;
    color: #990000;
}

.login-link {
    font-size: 16px;
}

.login-link a {
    color: #0000EE;
    text-decoration: underline;
}

/* Benefits Section */
.benefits-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f8f8f8;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

.benefits-text {
    width: 65%;
}

.benefits-text h3 {
    color: #990000;
    font-size: 18px;
}

.benefits-text ul {
    list-style: none;
    padding: 0;
}

.benefits-text ul li {
    font-size: 16px;
    margin-bottom: 5px;
}

.benefits-image {
    width: 30%;
}

.benefits-image img {
    width: 100%;
    max-width: 120px;
    border-radius: 8px;
}

/* Note */
.note {
    background-color: #990000;
    color: white;
    padding: 10px;
    border-radius: 5px;
    font-size: 14px;
    margin-bottom: 15px;
}

/* Registration Form */
.registration-form {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.form-section-header {
    background-color: #990000;
    color: white;
    font-size: 18px;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    margin-bottom: 15px;
}

/* Form Fields */
.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

/* Gender Selection */
.gender-options {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 25px; /* Adds spacing between options */
}

.gender-options input[type=radio] {
    margin: 0 5px 0 0; /* Ensures the radio button aligns well with the text */
    transform: scale(1.2); /* Increases radio button size */
}

.gender-options label {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .gender-options {
        flex-direction: row; /* Keeps horizontal layout */
        justify-content: space-around; /* Space out labels evenly */
    }
}

.terms {
    display: flex;
    align-items: center;
}

.terms input {
    margin-right: 10px;
}

.required {
    color: red;
    margin-left: 5px;
}

/* Register Button */
.register-button {
    background-color: #990000;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    margin-top: 10px;
}

.register-button:hover {
    background-color: #b30000;
}

/* Responsive Design */
@media (max-width: 768px) {
    .registration-section {
        margin-left: 0;
        width: 100%;
        padding: 80px 10px 20px;
    }

    .benefits-container {
        flex-direction: column;
        text-align: center;
    }

    .benefits-text {
        width: 100%;
    }

    .benefits-image {
        width: 100px;
    }
}

/* Contact Section */
.contact-section {
    margin-left: 270px;
    width: calc(100% - 290px);
    padding: 100px 20px 20px;
    box-sizing: border-box;
}

/* Contact Heading */
.contact-section h2 {
    text-align: center;
    color: #990000;
    font-size: 24px;
    margin-bottom: 15px;
}

/* Contact Details */
.contact-options {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

.contact-options li {
    font-size: 16px;
    margin-bottom: 5px;
}

/* Note Text */
.contact-note {
    font-size: 16px;
    margin-bottom: 15px;
}

/* Form */
.contact-form {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Form Header */
.form-section-header {
    background-color: #990000;
    color: white;
    font-size: 18px;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    margin-bottom: 15px;
}

/* Form Fields */
.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

/* Buttons */
.submit-button, .reset-button {
    background-color: #990000;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 48%;
    font-size: 16px;
    font-weight: bold;
    margin-top: 10px;
}

.submit-button:hover, .reset-button:hover {
    background-color: #b30000;
}

/* Email Note */
.email-note {
    margin-top: 20px;
    font-size: 14px;
    text-align: center;
}

.email-note a {
    color: #0000EE;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-section {
        margin-left: 0;
        width: 100%;
        padding: 80px 10px 20px;
    }

    .contact-form {
        padding: 15px;
    }

    .submit-button, .reset-button {
        width: 100%;
    }
}
.membership-benefits {
    margin-left: 270px;
    width: calc(100% - 290px);
    padding: 100px 20px 20px;
    box-sizing: border-box;
}

.membership-benefits h1 {
    text-align: center;
    color: #990000;
    font-size: 28px;
    margin-bottom: 20px;
}

.membership-benefits p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 30px;
}

.benefits-comparison table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.benefits-comparison th, .benefits-comparison td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: center;
    font-size: 16px;
}

.benefits-comparison th {
    background-color: #f4f4f4;
    font-weight: bold;
}

.call-to-action {
    text-align: center;
    margin-bottom: 30px;
}

.btn-primary {
    background-color: #990000;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
}

.btn-primary:hover {
    background-color: #b30000;
}

.note {
    background-color: #f9f9f9;
    border-left: 4px solid #990000;
    padding: 15px;
    font-size: 16px;
      color: black;

}

.note a {
    color: #990000;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .membership-benefits {
        margin-left: 0;
        width: 100%;
        padding: 80px 10px 20px;
    }

    .membership-benefits h1 {
        font-size: 24px;
    }

    .membership-benefits p {
        font-size: 16px;
    }

    .benefits-comparison th, .benefits-comparison td {
        font-size: 14px;
        padding: 10px;
    }

    .btn-primary {
        font-size: 16px;
        padding: 10px 18px;
    }

    .note {
        font-size: 14px;
        
        
    }
}


