/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.header {
    position: relative;
    width: 100%;
    min-height: 10.5vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

@media (max-width: 700px) {
    .header {
        min-height: 7vh;
    }
}
/* Header Buttons */
.header-buttons {
    display: flex;
    gap: 10px; /* Space between buttons */
    margin-left: auto; /* Push the buttons container to the right */
    margin-right: 30px; /* Adjust this value to move buttons slightly to the left */
    align-items: center; /* Align items vertically */
    margin-top: -45px;
}

.header-btn {
    display: inline-block;
    text-decoration: none;
    color: #000000;
    border: 1px solid #000000;
    padding: 10px 20px;
    font-size: 14px;
    background: transparent;
    cursor: pointer;
    transition: 0.3s;
    margin-top: -10px; /* Adjust this value to align vertically */
}

.header-btn:hover {
    border: 1px solid #1e5486;
    background: #2da1be;
}

/* Info Bar */
.info-bar {
    background-color: #000;
    color: #fff;
    text-align: left;
    padding: 5px 0;
    font-size: 14px;
}

.info-bar span {
    margin-right: 20px; /* Adjust the spacing as needed */
}

.info-bar span:last-child {
    margin-right: 0; /* Remove margin from the last item */
}

.info-bar p {
    margin: 0;
}

nav {
    background-color: rgb(255, 255, 255);
    display: flex;
    padding: 1% 4%;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}


nav img {
    width: 135px;
}

.nav-links {
    flex: 1;
    margin-left: 50px;
}

.nav-links ul li {
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}

.nav-links ul li a {
    color: #000000;
    text-decoration: none;
    font-size: 13px;
}

.nav-links ul li::after {
    content: '';
    width: 0%;
    height: 2px;
    background: #2da1be;
    display: block;
    margin: auto;
    transition: .5s;    
}

.nav-links ul li:hover::after {
    width: 100%;
}

nav .fa {
    display: none;
}

.text-box {
    width: 90%;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.text-box h1 {
    font-size: 42px;
    margin-left: 20px;
}

.text-box p {
    margin: 20px 0 40px;
    font-size: 14px;
    color: #fff;
}

.hero-btn {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 45px;
    font-size: 16px;
    background: transparent;
    position: relative;
    cursor: pointer;
    transition: 1s;
    margin-top: 15px;
}

.hero-btn:hover {
    border: 1px solid #1e5486;
    background: #2da1be;
}

@media (max-width: 700px) {
    .nav-links ul li {
        display: block;
    }

    .nav-links {
        position: fixed;
        background: #2da1be;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 0.5s;
    }

    .nav-links ul {
        padding: 30px;
    }

    nav .fa {
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
        position: absolute;
        top: 0;
        right: 20px;
    }

    .text-box h1 {
        font-size: 20px;
    }
}

/* Header Title */

.headertitle .title-bar {
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)), url(../images/dimage1.jpg);
    background-size: cover; /* Ensure the background image covers the entire element */
    background-position: top center; /* Center the background image */
    text-align: left; /* Align the text to the left */
    width: 100%;
    min-height: 25vh;
    display: flex;
    justify-content: flex-start; /* Align content to the left */
    align-items: center; /* Center content vertically */
    padding-left: 20px; /* Add padding to the left to create some space */
}

.headertitle .title-bar h2 {
    margin: 0;
    color: #ffffff; /* White color for text */
    font-size: 38px; /* Adjust font size as needed */
    text-align: left; /* Align text to the left within the container */
    width: 100%; /* Ensure the text takes up full width */
    max-width: 800px; /* Optional: limit the maximum width */
    padding: 0; /* No additional padding needed */
}





/* Contact Us Page */
.location {
    width: 80%;
    margin: auto;
    padding: 80px 0;
}

.location iframe {
    width: 100%;
}

.contact-us {
    width: 80%;
    margin: auto;
}

.contact-col {
    flex-basis: 48%;
    margin-bottom: 30px;
}

.contact-col div {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.contact-col div .fa {
    font-size: 28px;
    color: #f44336;
    margin: 10px;
    margin-right: 30px;
}

.contact-col div p {
    padding: 0;
}

.contact-col div h5 {
    font-size: 20px;
    margin-bottom: 5px;
    color: #555;
    font-weight: 400;
}

.contact-col input, .contact-col textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 17px;
    outline: none;
    border: 1px solid #ccc;
}

.footer-link {
    text-decoration: none;
    color: #777;
}

/* Hide mobile-specific span */
.info-bar .mobile-view {
    display: none;
}

@media(max-width: 700px) {
    .header-buttons {
        display: none; /* Hide buttons on mobile */
    }

    .nav-links {
        position: fixed;
        background: #2da1be;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 0.5s;
    }

    .nav-links ul {
        padding: 30px;
    }

    nav .fa {
        display: block;
        color: #000000;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
        position: absolute;
        top: 0;
        right: 20px;
    }
}

@media(max-width: 700px) {
    .info-bar {
        text-align: center;
        padding: 10px 0;
    }

    .info-bar .desktop-view:nth-child(1) {
        display: block;
        text-align: center;
        margin-bottom: 5px;
    }

    .info-bar .desktop-view:nth-child(2),
    .info-bar .desktop-view:nth-child(3) {
        display: inline-block;
        margin-right: 10px;
    }
}

/* Map Contact */
.contact-map .container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: stretch;
    padding: 50px 0;
    width: 80%;
    margin: auto;
}

.contact-form, .google-map {
    width: 48%; /* Each takes up 48% to allow space between them */
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 8px;
}

.contact-map h2 {
    color: #002d13;
 }

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form input, .contact-form textarea {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

.contact-form .btn {
    padding: 10px 20px;
    background-color: #002d13;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
}

.contact-form .btn:hover {
    background-color: #ffc700;
}

.google-map iframe {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .contact-map .container {
        flex-direction: column;
    }

    .contact-form, .google-map {
        width: 100%;
    }

    .contact-form {
        order: 1;
    }

    .google-map {
        order: 2;
        margin-top: 20px;
    }
}


/* footer */
.site-footer {
    background-color: #002d13;
    color: #fff;
    padding: 40px 0;
    font-family: Arial, sans-serif;
}

.site-footer p{
    color: #777;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
    text-align: justify;
}

.footer-container {
    display: flex;
    justify-content: flex-end;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    margin-left: 30px;
}

.footer-container > div {
    flex: 1;
    max-width: 250px;
}




.footer-logo h3,
.footer-links h3,
.footer-contact h3,
.footer-social h3 {
    font-size: 18px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: left; /* Aligns titles to the left */
}


.footer-logo p{
    text-align: justify;
    margin-left: -10px;
    color: white;
}

.footer-logo p,
.footer-contact p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 10px;
    text-align: left; /* Ensures the text is also aligned to the left */
    color: white;
}


.footer-links ul,
.footer-social ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li,
.footer-social ul li {
    margin-bottom: 10px;
    
}

.footer-links ul li a,
.footer-social ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    text-align: left; /* Aligns links to the left */
}

.footer-links ul li a:hover,
.footer-social ul li a:hover {
    text-decoration: underline;
    color: #ffc700;
    
}

.footer-social ul li a i {
    margin-right: 8px;
    font-size: 18px;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    border-top: 1px solid #444;
    padding-top: 10px;
}

/* Adjustments for footer on mobile view */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: flex-start; /* Align items to the left */
        gap: 20px;
    }

    .footer-container > div {
        max-width: 100%;
        text-align: left; /* Align text to the left */
    }

    .footer-logo,
    .footer-links,
    .footer-contact,
    .footer-social {
        text-align: left; /* Ensure all footer sections align text to the left */
    }

    .footer-logo p,
    .footer-contact p {
        text-align: left; /* Align text to the left */
        margin-left: 0; /* Reset any left margin */
    }

    .footer-social ul li a {
        text-align: left; /* Align social links to the left */
    }
}


.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #fff;
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none; /* Remove underline */
}

.whatsapp-button i {
    font-size: 24px;
    color: #fff;
}

.whatsapp-button:hover {
    background-color: #128C7E;
}

.success {
    color: green;
    margin-top: 10px;
}

.error {
    color: red;
    margin-top: 10px;
}

html {
    scroll-behavior: smooth;
}

/* Conseil Juridique Section */
.legal-advice {
    padding: 50px 0;
    background-color: #f9f9f9; /* Light background color for contrast */
}
.legal-advice h3 {
    font-size: 22px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #002d13; /* Dark text color */
}


.legal-advice .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 80%;
    margin: 0 auto;
}

.legal-text {
    flex: 1;
    margin-right: 20px; /* Space between text and image */
}

.legal-text h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #002d13; /* Dark text color */
}

.legal-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #555; /* Slightly lighter color for body text */
}

.legal-text ul {
    list-style-type: disc;
    margin-left: 20px;
}

.legal-text ul li {
    margin-bottom: 10px;
}

.legal-image {
    flex: 1;
    max-width: 500px; /* Limit the width of the image */
    margin-top: -180px;
}

.legal-image img {
    width: 100%;
    height: auto;
    border-radius: 8px; /* Optional: rounded corners for the image */
}

/* Responsive Design */
@media (max-width: 768px) {
    .legal-advice .container {
        flex-direction: column;
        text-align: center;
    }

    .legal-text {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .legal-image {
        max-width: 100%;
        margin-top: 0;
    }
}

/* Main Title Section */
.main-title {
    padding: 50px 0; /* Add padding to create space above and below the title */
    background-image: linear-gradient(rgba(4,9,30,0.7),rgb(72 145 68 / 70%)),url(../images/dimage1.jpg);
    background-size: cover; /* Ensure the background image covers the entire element */
    background-position: top center; /* Center the background image */
    color: #fff; /* White text color for contrast */
    text-align: center; /* Center-align text */
}

.main-title .container {
    max-width: 800px; /* Limit the width of the container */
    margin: 0 auto;
}

.main-title h1 {
    font-size: 48px;
    font-weight: bold;
    margin: 0;
    line-height: 1.2;
    margin-left: -490px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-title h1 {
        font-size: 36px; /* Smaller font size on smaller screens */
        margin-left: 0;
    }
    .legal-advice .container {
        flex-direction: column;
        text-align: left;
    }

    .legal-text {
        margin-right: 0; /* Remove right margin on small screens */
    }

    .legal-image {
        margin-top: 0px; /* Add space between text and image on mobile */
    }

    .legal-text ul {
        padding-left: 20px; /* Add padding to align text */
    }
}



/* Conseil Fiscal Section */
.fiscal-advice {
    padding: 50px 0;
    background-color: #f9f9f9; /* Light background color for contrast */
}

.fiscal-advice .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 80%;
    margin: 0 auto;
}

.fiscal-image {
    flex: 1;
    max-width: 500px; /* Limit the width of the image */
    margin-right: 20px; /* Space between image and text */
    margin-top: -280px;
}

.fiscal-image img {
    width: 100%;
    height: auto;
    border-radius: 8px; /* Optional: rounded corners for the image */
}

.fiscal-text {
    flex: 1;
}

.fiscal-text h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #002d13; /* Dark text color */
}

.fiscal-text h3 {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #002d13; /* Dark text color */
}

.fiscal-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #555; /* Slightly lighter color for body text */
}

.fiscal-text ul {
    list-style-type: disc;
    margin-left: 20px;
}

.fiscal-text ul li {
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .fiscal-advice .container {
        flex-direction: column;
        text-align: left; /* Align text to the left on small screens */
    }

    .fiscal-text {
        margin-bottom: 20px; /* Space between text and image on mobile */
        order: 1; /* Ensure text comes before the image */
    }

    .fiscal-image {
        margin-right: 0;
        margin-bottom: 0; /* Remove margin-bottom on image */
        order: 2; /* Ensure image appears after the text */
        margin-top: 0;
    }

    .fiscal-text ul {
        padding-left: 20px; /* Add padding to align text */
    }
}

/* Conseil Financier Section */
.financial-advice {
    padding: 50px 0;
    background-color: #f9f9f9; /* Light background color for contrast */
}

.financial-advice .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 80%;
    margin: 0 auto;
}

.financial-image {
    flex: 1;
    max-width: 500px; /* Limit the width of the image */
    margin-left: 20px; /* Space between image and text */
    margin-top: -220px;
}

.financial-image img {
    width: 100%;
    height: auto;
    border-radius: 8px; /* Optional: rounded corners for the image */
}

.financial-text {
    flex: 1;
}

.financial-text h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #002d13; /* Dark text color */
}

.financial-text h3 {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #002d13; /* Dark text color */
}

.financial-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #555; /* Slightly lighter color for body text */
}

.financial-text ul {
    list-style-type: disc;
    margin-left: 20px;
}

.financial-text ul li {
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .financial-advice .container {
        flex-direction: column;
        text-align: left; /* Align text to the left on small screens */
    }

    .financial-text {
        margin-bottom: 20px; /* Space between text and image on mobile */
        order: 1; /* Ensure text comes before the image */
    }

    .financial-image {
        margin-left: 0;
        margin-bottom: 0; /* Remove margin-bottom on image */
        order: 2; /* Ensure image appears after the text */
        margin-top: 0;
    }

    .financial-text ul {
        padding-left: 20px; /* Add padding to align text */
    }
}


/* Conseil Social Section */
.social-advice {
    padding: 50px 0;
    background-color: #f9f9f9; /* Light background color for contrast */
}

.social-advice .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 80%;
    margin: 0 auto;
}

.social-image {
    flex: 1;
    max-width: 500px; /* Limit the width of the image */
    margin-right: 20px; /* Space between image and text */
    margin-top: -930px;
}

.social-image img {
    width: 100%;
    height: auto;
    border-radius: 8px; /* Optional: rounded corners for the image */
}

.social-text {
    flex: 1;
}

.social-text h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #002d13; /* Dark text color */
}

.social-text h3 {
    font-size: 22px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #002d13; /* Dark text color */
}

.social-text h4 {
    font-size: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
    color: #002d13; /* Dark text color */
}

.social-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #555; /* Slightly lighter color for body text */
}

.social-text ul {
    list-style-type: disc;
    margin-left: 20px;
}

.social-text ul li {
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .social-advice .container {
        flex-direction: column;
        text-align: left; /* Align text to the left on small screens */
    }

    .social-image {
        order: 2; /* Move the image to appear last in the container */
        margin-right: 0;
        margin-bottom: 20px; /* Space between text and image on mobile */
        margin-top: 0;
    }

    .social-text {
        order: 1; /* Ensure the text appears before the image */
        margin-left: 0;
        margin-bottom: 20px; /* Space between text and image on mobile */
    }

    .social-text ul {
        padding-left: 20px; /* Add padding to align text */
    }
}
b {
    color:#6C946F;
    font-weight: bold;
}



.admin-assistance {
    padding: 50px 0;
    background-color: #f9f9f9; /* Light background color for contrast */
}
.admin-assistance h3 {
    font-size: 22px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #002d13; /* Dark text color */
}


.admin-assistance .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 80%;
    margin: 0 auto;
}

.admin-text {
    flex: 1;
    margin-right: 20px; /* Space between text and image */
}

.admin-text h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #002d13; /* Dark text color */
}

.admin-text h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #002d13; /* Dark text color */
}

.admin-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #555; /* Slightly lighter color for body text */
}

.admin-text ul {
    list-style-type: disc;
    margin-left: 20px;
}

.admin-text ul li {
    margin-bottom: 10px;
}

.admin-image {
    flex: 1;
    max-width: 500px; /* Limit the width of the image */
    margin-top: -540px;
}

.admin-image img {
    width: 100%;
    height: auto;
    border-radius: 8px; /* Optional: rounded corners for the image */
}

/* Responsive Design */
@media (max-width: 768px) {
    .admin-assistance .container {
        flex-direction: column;
    }

    .admin-text {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .admin-image {
        max-width: 100%;
        margin-top: 0;
    }
}

.admin-assistance .container strong{
    color: #6C946F;
}