/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    margin: 0;
}

.main-nav {
    width: 100%; /* Adjust to the desired height (e.g., full viewport) */
    display: flex; /* Enable flexbox */
    align-items: center; /* Center items vertically */
    justify-content: center; /* Center items horizontally */
    background-color: #f9f9f9; /* Optional: Add a background color */
    background-color: #16171E; /* Navy Blue */
}


.site-wrapper {
    text-align: center;
    padding: 20px;
    color: white;
    width: 70%;
}

.seo-pagetitle {
    font-family: 'Source Sans Pro', Arial, sans-serif; /* Clean, modern font */
    font-weight: 400; /* Slightly bold */
    font-size: 1.2rem; /* Dynamic font size for headlines */
    line-height: 1.4; /* Adjust line height for better readability */
    color: #ffffff; /* Dark text for good contrast */
  }

  .global-navbar {
    background-color: #ffffff;
    padding: 30px 0;
    text-align: center;
    box-sizing: border-box;
    position: relative;  /* Ensure it's positioned relative to apply the shadow */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);  /* Adding a visible shadow */
    z-index: 10;  /* Ensure it's on top of other elements */
    height: auto;  /* Ensure the height is enough for the shadow to be visible */
}


.logo-wrapper img {
    max-width: 300px;
    height: auto;
}

.usa-selector {
    padding: 40px 20px;
    background-color: rgba(0, 0, 0, 0.348); /* Dark transparent layer */
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.444), rgba(0, 0, 0, 0.438)), 
        url("./src/img/499-business-valuations-united-states.webp");
    background-blend-mode: overlay;
    background-size: cover;
    background-position: center;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
    color: #ffffff;
}

.grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.col-1, .col-2, .col-3 {
    flex: 1;
    min-width: 330px;
    background-color: #f2f2f2;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.region-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: #111111;
    margin-bottom: 15px;
    border-bottom: 2px solid #25427F;
    padding-bottom: 5px;
}

.countries {
    list-style-type: none;
    padding: 0;
}

.countries li {
    margin-bottom: 10px;
}

.countries a {
    text-decoration: none;
    color: #111111;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 1.1rem;
}

.countries a:hover {
    color: #0066cc;
    text-decoration: underline;
}

/* Footer Styling */
.footer-navbar {
    background-color: #16171E;
    color: white;
    text-align: center;
    padding: 15px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .site-wrapper {
        text-align: center;
        padding: 20px;
        color: white;
        width: 85%;
    }
    .grid {
        flex-direction: column;
        align-items: center;
    }

    .col-1, .col-2, .col-3 {
        max-width: 90%;
    }

    h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 380px) {
    .grid {
        flex-direction: column;
        align-items: center;
    }

    .col-1, .col-2, .col-3 {
        min-width: 280px;
    }

    h2 {
        font-size: 1.8rem;
    }
    .logo-wrapper img {
        max-width: 250px;
        height: auto;
    }
}

