/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8fafc;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
        .header {
            background: #fff;
            padding: 10px 0;
            position: relative;
            z-index: 10;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo-section img {
            width: 350px;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        /* Language Selector */
        .language-selector {
            display: flex;
            border: 1px solid #2989d8;
            border-radius: 4px;
            overflow: hidden;
        }

        .lang-btn {
            padding: 0.375rem 0.75rem;
            font-size: 0.875rem;
            font-weight: 500;
            text-decoration: none;
            border: none;
            color: #2989d8;
            background: white;
            transition: all 0.2s;
            cursor: pointer;
        }

        .lang-btn.active {
            background-color: #2989d8;
            color: white;
        }

        .lang-btn:not(.active):hover {
            background-color: rgba(41, 137, 216, 0.1);
        }

        /* Engage Button */
        .engage-btn {
            background-color: #2989d8;
            color: white;
            padding: 0.5rem 1rem;
            font-size: 0.875rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 0.25rem;
            transition: background-color 0.2s;
            border: none;
            cursor: pointer;
        }

        .engage-btn:hover {
            background-color: rgba(41, 137, 216, 0.9);
        }

        /* Hamburger */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 0.5rem;
            background: none;
            border: none;
            z-index: 1100;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: #2989d8;
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 2px;
        }

        /* Hamburger Animation */
        .hamburger.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        /* Mobile Menu */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1050;
            overflow: hidden;
        }

        .mobile-menu.active {
            display: block;
        }

        .mobile-menu-content {
            position: absolute;
            top: 0;
            right: -300px;
            width: 300px;
            height: 100%;
            background: white;
            transition: right 0.3s ease;
            padding: 2rem 1rem;
            box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        }

        .mobile-menu.active .mobile-menu-content {
            right: 0;
        }

        .mobile-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #e2e8f0;
        }

        .close-btn {
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #64748b;
            padding: 0.5rem;
        }

        .mobile-menu-items {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .mobile-language-selector h3 {
            font-size: 1rem;
            color: #2989d8;
            margin-bottom: 0.5rem;
        }

        .mobile-lang-buttons {
            display: flex;
            gap: 0.5rem;
        }

        .mobile-engage .engage-btn {
            width: 100%;
            display: block;
            text-align: center;
        }

/* Responsive Header */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .logo-section img {
        width: 350px; /* smaller logo for phones */
    }

    .header-actions {
        flex-direction: column;
        gap: 0.5rem;
    }

    .language-selector {
        order: 1;
    }

    .engage-btn {
        order: 2;
        width: 100%; /* full width button on phones */
        text-align: center;
    }
}

/* Footer */
    .main-footer {
    background-color: #F5F5F5;
    color: #fff;
    }

                /* Social Media Bar */
            .social-bar {
                background-color: #0066b3;
                padding: 20px 0;
            }

            .social-content {
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 30px;
            }

            .social-text {
                color: #fff;
                font-weight: bold;
                font-size: 16px;
                letter-spacing: 1px;
            }

            .social-icons {
                display: flex;
                gap: 15px;
            }

            .social-icon {
                width: 40px;
                height: 40px;
                border: 2px solid #fff;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                color: #fff;
                text-decoration: none;
                font-size: 18px;
                transition: all 0.3s;
            }

            .social-icon:hover {
                background-color: #fff;
                color: #0066b3;
            }

/* Footer Content */
.footer-content {
  padding: 2rem 0;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-logo img {
  max-width: 100%;
  height: auto;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.link-column a {
  display: block;
  color: #84868A;
  font-weight: bold;
  font-size: 17px;
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}

.link-column a:hover {
  color: #2989d8;
}

.footer-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.adhere-btn {
  background-color: #045088;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.25rem;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s;
}

.adhere-btn:hover {
  background-color: #1c6cb2;
}

.qr-placeholder {
  width: 80px;
  height: 80px;
  background-color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  border-radius: 0.25rem;
}


/* Contact Page */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h2,
.contact-form h2 {
    color: #2989d8;
    margin-bottom: 25px;
    font-weight: bold;
}

.contact-item {
    margin-bottom: 25px;
}

.contact-item h3 {
    color: #333;
    margin-bottom: 8px;
    font-weight: bold;
}

.contact-item p {
    color: #666;
    line-height: 1.6;
}

.contact-form {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2989d8;
}

.submit-btn {
    background: #2989d8;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #1e5799;
}

/* Responsive Contact Form */
@media (max-width: 992px) {
    /* For tablets: keep 2 columns but smaller gaps if needed */
    .contact-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    /* For smaller tablets and large phones: 1 column */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .contact-content {
        display: flex;          /* switch to flex on phones */
        flex-direction: column; /* stack items vertically */
        gap: 15px;
        padding: 0 10px;
    }

    .contact-form {
        order: 1; /* appear first */
        padding: 20px;
    }

    .contact-info {
        order: 2; /* appear second */
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 13px;
        padding: 8px;
    }

    .submit-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}