.wrapper {
    display: flex;
    flex-direction: column;
}

.wrapper .header {
    width: 100%;
    display: flex;
    background: linear-gradient(135deg, #2c5530 0%, #6aa345 100%);
    position: relative;
    padding: 80px 0;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.wrapper .header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255,255,255,0.1) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 60px 60px, 40px 40px;
    opacity: 0.4;
}

.wrapper .header::after {
    content: '';
    position: absolute;
    top: 30px;
    right: 30px;
    width: 80px;
    height: 80px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-left: none;
    border-bottom: none;
    border-radius: 0 10px 0 0;
}

.wrapper .header .header-content::before {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 30px;
    width: 80px;
    height: 80px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-right: none;
    border-top: none;
    border-radius: 0 0 0 10px;
}

.wrapper .header .header-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 40px;
    color: white !important;
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

.wrapper .header .header-content .header-heading {
    font-size: 3.8rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.1;
    color: white !important;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    max-width: 900px;
}

.wrapper .header .header-content .header-heading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 40px);
    height: calc(100% + 20px);
    background: radial-gradient(ellipse, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 10px;
    z-index: -1;
}

.wrapper .header .header-content .header-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 25px;
    opacity: 0.9;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85) !important;
    position: relative;
}

.wrapper .header .header-content .header-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
    border-radius: 1px;
}

.wrapper .header .header-subtitle {
    font-size: 1rem;
    margin: 1rem 0;
}

.select-region {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 4rem;
    text-align: center;
    gap: 2.5rem;
    margin-bottom: 20px;
}

.regionHeader{
    color: var(--fontAccent);
    font-size: 1.8rem;
}

.region {
    display: flex;
    flex-wrap: row;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 75px;
}

@media (max-width: 1025px) {
    .region {
        display: flex;
        flex-wrap: row;
        align-items: center;
        flex-wrap: wrap;
        justify-content: space-evenly;
        row-gap: 75px;
    }
}

.region-map{
    display: flex;
    justify-content: center;
    align-items: center;
}

.region-map path{
    cursor: pointer;
    transition: all 0.3s ease;
}

.region-list{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    column-gap: 25px;
    min-width: 350px;
}

.region-item{
  text-align: left;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  cursor: pointer;
  color: #000;
}

.region-item:hover i{
    background-color: #6aa345 !important;
    color: white !important;
}

.region-item i{
    font-size: 1.2rem;
    color: #fff;
    height: 30px;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #d1dbca;
    border-radius: 20px;
    padding: 5px;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .wrapper .header {
        padding: 60px 0;
    }
    
    .wrapper .header .header-content {
        padding: 0 30px;
    }
    
    .wrapper .header .header-content .header-title {
        font-size: 14px;
        letter-spacing: 1.5px;
        margin-bottom: 20px;
    }
    
    .wrapper .header .header-content .header-heading {
        font-size: 2.8rem;
        line-height: 1.2;
    }
    
    .wrapper .header::after,
    .wrapper .header .header-content::before {
        display: none;
    }
}

@media (max-width: 480px) {
    .wrapper .header {
        padding: 50px 0;
    }
    
    .wrapper .header .header-content {
        padding: 0 20px;
    }
    
    .wrapper .header .header-content .header-title {
        font-size: 12px;
        letter-spacing: 1px;
    }
    
    .wrapper .header .header-content .header-heading {
        font-size: 2.2rem;
    }
}