* {
    margin: 0;
    padding: 0;
}

body {
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* CSS for the top container that is above the nav bar */
.top-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    position: relative;
    min-height: 120px;
    flex-wrap: wrap;
}

.text-in-between {
    font-size: 30px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: left;
    flex: 1;
    margin-left: 20px; /* Adjusted to bring it slightly away from the left corner */
}

.logo {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto; /* Center the logo */
}

.logo img {
    height: 120px;
    max-height: 120px;
    padding: 10px;
}

.contact-info {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    margin-right: 20px; /* Adjusted to bring it slightly away from the right corner */
}

.contact-info p {
    display: flex;
    width: 240px;
    gap: 10px;
    margin: 0;
}

.contact-info p i {
    width: 20px; /* Set a fixed width for icons to align text properly */
    text-align: center; /* Center align the icons */
}

.contact-info p a {
    text-decoration: none;
    color: #000;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: #8FBC8B;
}

.contact-info i {
    color: #00563B;
    font-size: 1.2em;
    margin-left: 5px;
}

.contact-info i:first-child {
    margin-left: 0;
}

/* Media Query for Responsive Design */
@media (max-width: 768px) {
    .top-container {
        flex-direction: column;
        align-items: center;
        padding: 10px;
    }

    .text-in-between {
        text-align: center;
        font-size: 20px;
        margin-left: 0; /* Reset margin for smaller screens */
    }

    .logo {
        margin-bottom: 5px;
    }

    .contact-info {
        align-items: center;
        text-align: center;
        margin-top: 10px;
        margin-right: 0; /* Reset margin for smaller screens */
    }

    .contact-info p {
        flex-direction: row; /* Keep items in a row */
        justify-content: center; /* Center align items */
        align-items: center; /* Center align items vertically */
        width: auto; /* Auto width for better alignment */
        gap: 10px; /* Keep consistent gap */
    }

    .contact-info i {
        width: auto; /* Auto width for icons */
        font-size: 1em;
        margin: 0 5px;
    }

    .contact-info p a {
        font-size: 1em; /* Adjust font size for smaller screens */
    }
}

/* CSS for the nav bar */
nav {
    /* background-color: #343842; */
    background-color: #00563B;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
}

nav ul {
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

nav li {
    height: 50px;
}

nav a {
    height: 100%;
    padding: 0 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    color: white;
}

nav a:hover {
    background-color: #8FBC8B;
}

.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    height: calc(100vh - 183px);
    width: 250px;
    z-index: 999;
    background-color: #00693E;
    backdrop-filter: blur(10px);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    overflow: auto;
    /* Hide by default */
}

.sidebar li {
    width: 100%;
}

.sidebar a {
    width: 100%;
}

.menu-icon {
    fill: white;
    display: none;
    /* Hide by default */
}

.close-icon {
    fill: white;
    cursor: pointer;
}

/* Display adjustments for smaller screens */
@media(max-width: 800px) {
    .hideOnMobile {
        display: none;
    }

    .menu-icon {
        display: block;
        /* Show on smaller screens */
        cursor: pointer;
        /* Ensure it's clickable */
    }

    .sidebar {
        top: 0;
        /* Adjust top position to cover the whole screen */
        height: 100vh;
        /* Full height */
        width: 100%;
        /* Full width */
    }
}

/* Adjust sidebar width for very small screens */
@media(max-width: 400px) {
    .sidebar {
        width: 100%;
    }
}

/* Dropdown CSS */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #00693E;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #8FBC8B;
    height: 30px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Ensure the sidebar also handles dropdowns properly */
.sidebar .dropdown-content {
    position: relative;
    min-width: 100%;
    box-shadow: none;
    flex-direction: column;
}

.sidebar .dropdown:hover .dropdown-content {
    display: flex;
}


/* CSS for Video and Homepage texts */
.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px;
}

video {
    max-width: 100%;
    max-height: 400px;
    /* Limit the height */
    width: auto;
    height: auto;
    object-fit: contain;
    /* Ensure the video is contained within the max dimensions */
}

.welcome-text {
    width: 100%;
    /* Make text take full width */
    max-width: 800px;
    /* Limit the width for better readability */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.welcome-text .title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Align title elements to the left */
}

.welcome-text .title p {
    font-size: 26px;
    margin: 0;
    font-weight: bold;
}
/* .welcome-text .title h1 {
    margin: 0;
}

.welcome-text .title h2 {
    font-style: italic;
} */

.welcome-text p {
    margin: 10px 0;
    line-height: 1.6;
    text-align: justify;
    /* Justify the paragraphs for a cleaner look */
}

/* CSS for image used in founder & team */
.image-container {
    text-align: center;
}

.image-container img {
    width: 100%;
    max-width: 400px;
    height: auto;
}

/* CSS for Documentation Fees */
.pricing-guidance,
.min-list {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.pricing-guidance .title,
.min-list .title {
    margin-bottom: 20px;
}

.pricing-guidance h1,
.min-list h1 {
    margin: 0;
}

.pricing-guidance ul,
.min-list ul {
    list-style-type: none;
    padding: 0;
    margin: 0 auto;
    max-width: 600px;
    text-align: left;
}

.pricing-guidance li,
.min-list li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

.pricing-guidance li::before,
.min-list li::before {
    content: '\2022';
    position: absolute;
    left: 0;
    color: #000;
}

.pricing-guidance li p,
.min-list li p {
    line-height: 1.6;
    margin: 0;
}

.pricing-guidance li strong,
.min-list li strong {
    color: #000;
}

.min-list {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.min-list ul {
    list-style-type: none;
    padding: 0;
    margin: 0 auto;
    max-width: 600px;
    text-align: left;
}

.min-list ul li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

.min-list ul li::before {
    content: '\2022';
    position: absolute;
    left: 0;
    color: #000;
}

.min-list ul li ul {
    margin-top: 5px; /* Adjust margin top for nested lists */
}

.min-list ul li ul li {
    padding-left: 20px; /* Adjust left padding for nested lists */
    position: relative;
}

.min-list ul li ul li::before {
    content: none; /* Remove bullet for nested lists */
}

.min-list ul li p {
    line-height: 1.6;
    margin: 0;
}

.min-list ul li strong {
    color: #000;
}

/* CSS for representation fees */
.rep-list {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.rep-list ul {
    list-style-type: none;
    padding: 0;
    margin: 0 auto;
    max-width: 600px;
    text-align: left;
}

.rep-list ul li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

.rep-list ul li::before {
    content: '\2022';
    position: absolute;
    left: 0;
    color: #000;
}

.rep-list ul li p {
    line-height: 1.6;
    margin: 0;
}

.rep-list ul li strong {
    color: #000;
}

/* CSS for mediation fees */
.med-list {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.med-list ul {
    list-style-type: none;
    padding: 0;
    margin: 0 auto;
    max-width: 600px;
    text-align: left;
}

.med-list ul li {
    margin-bottom: 10px; /* Adjusted margin bottom */
    position: relative;
    padding-left: 25px; /* Slightly reduced left padding */
}

.med-list ul li::before {
    content: '\2022';
    position: absolute;
    left: 0;
    color: #000;
    margin-top: 2px; /* Adjusted vertical alignment */
}

.med-list ul li p {
    line-height: 1.6;
    margin: 0;
}

.med-list ul li strong {
    color: #000;
}



/* CSS for values under About Us and below vision & mission */
.values-text {
    padding: 20px;
    max-width: 800px;
    /* Set a max width for better readability */
    margin: 0 auto;
    /* Center the container */
    text-align: center;
    /* Center align all text within the container */
}

.values-text .title {
    margin-bottom: 20px;
    /* Add space below the title section */
}

.values-text .title h1 {
    margin: 0;
}

.values-text .title h4 {
    margin: 10px 0 20px;
    /* Adjust margins for spacing */
}

/* List styling */
.values-list {
    list-style-type: none;
    /* Remove default list style */
    padding: 0;
    margin: 0 auto;
    /* Center the list */
    max-width: 600px;
    /* Adjust width as needed */
    text-align: left;
    /* Left-align the text within the list items */
}

.values-list li {
    margin-bottom: 15px;
    /* Space between list items */
    position: relative;
    /* Positioning context for pseudo-element */
    padding-left: 30px;
    /* Indent the list items */
}

.values-list li::before {
    content: '\2022';
    /* Unicode for bullet point */
    position: absolute;
    /* Position pseudo-element */
    left: 0;
    /* Align to the left */
    color: #000;
    /* Bullet color */
}

.values-list li p {
    line-height: 1.6;
    /* Line spacing for readability */
    margin: 0;
    /* Remove default margin */
}

.values-list li strong {
    color: #000;
    /* Strong text color */
}

/* CSS for footer section */
footer {
    background-color: #00563B;
    padding: 20px;
    color: #fff;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    /* Allow wrapping on smaller screens */
    justify-content: center;
    /* Center the items */
    align-items: flex-start;
    gap: 40px;
    /* Add equal spacing between items */
    max-width: 1200px;
    margin: 0 auto;
    /* Center align the footer */
}

.company-info,
.social-media,
.external-links {
    flex: 1;
    /* Allow the sections to take available space */
    min-width: 200px;
    /* Ensure the items don't shrink too much */
    padding: 0 20px;
    /* Add padding to space content from edges */
    box-sizing: border-box;
    text-align: left;
    /* Align content to the left */
}

.company-info p,
.social-media a,
.external-links ul {
    margin-top: 10px;
    /* Ensure consistent spacing within sections */
}

.company-info p {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    /* Allow wrapping */
}

.company-info p strong {
    min-width: 80px;
    /* Adjust based on your design */
}

.social-media a {
    display: block;
    margin-bottom: 10px;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    /* Indicate links can be clicked */
}

.social-media a:hover {
    color: #8FBC8B;
}

.social-media a i {
    margin-right: 10px;
}

.external-links h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.external-links ul {
    list-style-type: none;
    padding: 0;
}

.external-links ul li {
    margin-bottom: 10px;
}

.external-links ul li a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    cursor: pointer;
    /* Indicate links can be clicked */
}

.external-links ul li a:hover {
    color: #8FBC8B;
}

.copy-right {
    margin-top: 20px;
    font-size: 16px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    width: 100%;
    text-align: center;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        /* Stack items vertically on smaller screens */
        gap: 20px;
        /* Adjust spacing for smaller screens */
    }

    .company-info,
    .social-media,
    .external-links {
        width: 100%;
        /* Full width on smaller screens */
        padding: 10px;
    }
}