body {
    margin: 0;
    font-family: Arial, sans-serif;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
    }
    h1, h2 {
        font-size: 1.5rem;
    }
}

/* Logo styling */
.site-logo {
    max-width: 300px;
    margin-bottom: 10px;
}
.site-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.region-select {
    display: grid;
    gap: 15px;
    margin-top: 10px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.region-select select {
    padding: 12px;
    font-size: 16px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 100%;
    min-width: 0;
    flex: 1 1 auto;
}

.page-background {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.fullscreen-bg {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    box-sizing: border-box;
    min-height: 100vh;
    position: relative;
}

.bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.ctkm-form,
.success-message {
    position: relative;
    z-index: 1;
}

.success-message {
    padding: 30px 25px;
    font-size: 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 90%;
    margin: 0 auto;
    color: #000;
    text-align: center;
}

.success-message strong {
    color: #af2332;
    font-weight: bold;
    font-size: 20px;
    display: block;
    margin: 12px 0;
}

.success-message p:nth-child(4) {
    color: #004085;
    font-weight: 600;
    font-size: 17px;
    text-transform: uppercase;
}



.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 8px 0;
    transition: all 0.3s ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.sticky-header .site-branding,
.sticky-header .site-navigation {
    margin-top: 5px;
}

.custom-logo-link img {
    max-height: 60px;
    width: auto;
    height: auto;
}
