* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    text-decoration: none;
    border: none;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background-color: #f5f5f5;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 7%;
    background-color: white;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    transition: all 0.3s ease;
}

.navbar.sticky {
    padding: 15px 7%;
    background: rgba(3, 144, 10, 0.95);
    border-bottom: rgba(3, 144, 10, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 10001;
}

.navbar img {
    height: 2.5rem;
    width: auto;
}

.navbar-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(7, 98, 11, 0.95);
    white-space: nowrap;
}

.navbar-logo span {
    color: rgba(3, 144, 10, 0.95);
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.navbar-nav a {
    color: rgba(3, 144, 10, 0.95);
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.navbar-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: rgba(3, 144, 10, 0.95);
    transition: width 0.3s ease;
}

.navbar-nav a:hover::after {
    width: 100%;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 10001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: rgba(3, 144, 10, 0.95);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(45deg) translate(-7px, -8px);
}

/* Content Section */
.content-section {
    margin-top: 100px;
    padding: 40px 7%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.left-section {
    background-color: white;
    padding: 30px;
    border: 2px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.image-box {
    border: 2px solid rgba(3, 144, 10, 0.95);
    padding: 20px;
    margin-bottom: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-box h3 {
    color: rgba(3, 144, 10, 0.95);
    font-size: 18px;
    margin-bottom: 15px;
    text-align: center;
}

.image-box img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.description-box {
    border: 2px solid rgba(3, 144, 10, 0.95);
    padding: 25px;
    background-color: white;
    border-radius: 8px;
    min-height: 150px;
}

.description-box h3 {
    color: rgba(3, 144, 10, 0.95);
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
}

.description-box p {
    color: #555;
    line-height: 1.8;
    font-size: 15px;
}

.right-section {
    display: flex;
    flex-direction: column;
    height: fit-content;
    transform: translateY(5rem);
}

.registration-box {
    border: 2px solid rgba(3, 144, 10, 0.95);
    padding: 30px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    height: 70%;
}

.registration-box h3 {
    color: rgba(3, 144, 10, 0.95);
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 600;
    text-align: center;
}

.registration-link {
    display: block;
    background-color: rgba(3, 144, 10, 0.95);
    color: white;
    text-align: center;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.registration-link:hover {
    background-color: rgba(7, 98, 11, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(3, 144, 10, 0.3);
}

.info-list {
    margin-top: 20px;
    padding-left: 20px;
}

.info-list li {
    color: #555;
    margin-bottom: 10px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }

    .navbar-nav {
        position: absolute !important;
        top: 100% !important;
        right: -100% !important;
        background-color: white !important;
        flex-direction: column !important;
        width: 60% !important;
        padding: 15px 0 !important;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2) !important;
        transition: right 0.3s ease-in-out !important;
        display: flex !important;
        align-items: flex-start !important;
        border-radius: 0 0 0 10px;
    }

    .navbar-nav.active {
        right: 0 !important;
    }

    .navbar-nav a {
        padding: 12px 25px !important;
        width: 100% !important;
        text-align: left !important;
        color: #333 !important;
        border-bottom: 1px solid #eee;
    }

    .navbar-nav a:hover {
        background-color: #f5f5f5;
        color: rgba(3, 144, 10, 0.95) !important;
    }

    .hamburger-menu {
        display: flex;
    }

    .navbar.sticky .hamburger-line {
        background-color: white;
    }

    .content-section {
        margin-top: 80px;
        padding: 20px 5%;
    }

    .right-section {
        transform: translateY(0);
    }

    .left-section,
    .registration-box {
        padding: 20px;
    }

    .image-box {
        min-height: 200px;
        padding: 15px;
    }

    .description-box {
        padding: 20px;
        min-height: 120px;
    }

    .description-box h3,
    .registration-box h3 {
        font-size: 18px;
    }

    .registration-link {
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* Tablet Portrait */
@media (max-width: 1024px) and (min-width: 769px) {
    .content-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .content-section {
        padding: 30px 5%;
    }

    .right-section {
        transform: translateY(2rem);
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    .navbar {
        padding: 10px 5%;
    }

    .navbar-logo {
        font-size: 1.2rem;
    }

    .navbar img {
        height: 2rem;
    }

    .content-section {
        margin-top: 70px;
        padding: 15px 4%;
    }

    .left-section,
    .registration-box {
        padding: 15px;
    }

    .image-box {
        min-height: 150px;
    }

    .description-box h3 {
        font-size: 16px;
    }

    .description-box p {
        font-size: 14px;
    }

    .registration-box h3 {
        font-size: 16px;
    }

    .registration-link {
        padding: 10px 15px;
        font-size: 13px;
    }

    .info-list li {
        font-size: 14px;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .navbar-logo {
        font-size: 1rem;
    }

    .content-section {
        padding: 10px 3%;
    }

    .left-section,
    .registration-box {
        padding: 12px;
    }

    .description-box h3,
    .registration-box h3 {
        font-size: 15px;
    }
}