* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            background-color: #faf8f5;
            color: #333;
            margin: 0;
        }

/* Navigation Styles */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background-color: #faf8f5;
            z-index: 1000;
            padding: 15px 2rem;
            border-bottom: 6px solid;
            border-image: linear-gradient(90deg, #ff6b6b, #feca57, #73f592,#54a0ff, #8651f1) 1;
        }

        .nav_container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 900;
            color: #5d4037;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .nav_links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        /* Hide mobile register link on desktop */
        .nav_links .mobile_register {
            display: none;
        }

        .nav_links a {
            text-decoration: none;
            color: #5d4037;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            transition: color 0.3s ease;
        }

        .nav_links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            width: 0;
            height: 2px;
            background-color: #b8574d;
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav_links a:hover::after {
            width: 100%;
        }

        .nav_links a:hover {
            color: #b8574d;
        }

        .nav_register_btn {
            background-color: #b8574d;
            color: white;
            border: none;
            padding: 12px 24px;
            font-size: 0.9rem;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .nav_register_btn:hover {
            background-color: #a04a41;
            transform: translateY(-2px);
        }

        /* Mobile Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: #5d4037;
            transition: all 0.3s ease;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        /* Tablet/Medium screen adjustments */
        @media (max-width: 1037px) and (min-width: 769px) {
            .navbar {
                padding: 15px 1.5rem;
            }

            .nav_links {
                gap: 1.5rem;
            }

            .nav_links a {
                font-size: 0.9rem;
            }

            .nav_register_btn {
                padding: 10px 20px;
                font-size: 0.8rem;
            }

            .logo {
                font-size: 1.3rem;
            }
        }

        /* Mobile Styles for Nav */
        @media (max-width: 768px) {
            .nav_links {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background-color: #faf8f5;
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 2rem;
                transition: left 0.3s ease;
                gap: 1.5rem;
            }

            .nav_links.active {
                left: 0;
            }

            .nav_links a {
                font-size: 1.2rem;
                padding: 1rem;
            }

            .nav_register_btn {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            /* Show register as nav link on mobile only */
            .nav_links .mobile_register {
                display: block;
                color: #b8574d;
                font-weight: 700;
            }
        }

        /* Add padding to body to account for fixed nav */
        body {
            padding-top: 80px;
        }

        .hero_container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 2rem;
        }

        header {
            text-align: center;
            margin-bottom: 40px;
        }

        header p {
            color: #5d4037;
            font-weight: bold;
            font-size: 14px;
            letter-spacing: 2px;
            display: inline-block;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        h1 {
            font-size: 3.5rem;
            font-weight: 900;
            color: #5d4037;
            text-transform: uppercase;
            letter-spacing: 3px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
            margin-bottom: 10px;
        }

        .hero_section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
            margin-top: 40px;
        }

        .hero_section section {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-bottom: 2rem;
        }

        .hero_section p {
            font-size: 1.2rem;
            line-height: 1.6;
            color: #5d4037;
        }

        .hero_section p:first-child {
            font-size: 1.4rem;
            font-weight: 600;
            color: #8d6e63;
        }

        button {
            background-color: #b8574d;
            color: white;
            border: none;
            padding: 18px 36px;
            font-size: 1.1rem;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            align-self: flex-start;
        }

        button:hover {
            background-color: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(184, 87, 77, 0.4);
        }

        button:active {
            transform: translateY(0);
        }

        .hero_image {
            width: 100%;
            max-width: 500px;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .cta_btn:hover, .nav_register_btn:hover {
            background-color: #668e7e;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(210, 206, 206, 0.4);
        }

        .about_section {
            padding: 4rem 2rem;
            background-color: #b8574d;
        }

        .about_section header {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 900;
            color: white;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 20px;
        }

        .about_section > p {
            text-align: center;
            font-size: 1.3rem;
            line-height: 1.6;
            color: white;
            margin-bottom: 50px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .about_cards_container {
            display: grid;
            grid-template-columns: 1.25fr 1fr;
            grid-template-rows: auto auto;
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .about_card_wide, .about_card_narrow {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            display: flex;
            flex-direction: column;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        /* Special background for wide cards */
        .about_card_wide {
            background-color: #fff5d4;
        }

        .about_card_wide:hover, .about_card_narrow:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        /* First row cards have same height */
        .about_card_wide:nth-child(1),
        .about_card_narrow:nth-child(2) {
            align-self: stretch;
        }

        /* Second row cards have same height */
        .about_card_narrow:nth-child(3),
        .about_card_wide:nth-child(4) {
            align-self: stretch;
        }

        /* Rearrange grid items - Friendly Competition and Get Inspired are wide */
        .about_card_wide:nth-child(1) { grid-column: 1; grid-row: 1; }
        .about_card_narrow:nth-child(2) { grid-column: 2; grid-row: 1; }
        .about_card_narrow:nth-child(3) { grid-column: 1; grid-row: 2; }
        .about_card_wide:nth-child(4) { grid-column: 2; grid-row: 2; }

        /* Header with icon and title on same line */
        .card_header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }

        .about_card_wide img, .about_card_narrow img {
            min-width: 60px;
            min-height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: bold;
            margin: 0;
        }

        .about_card_wide h3, .about_card_narrow h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: #5d4037;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin: 0;
            flex-grow: 1;
        }

        .about_card_wide p, .about_card_narrow p {
            font-size: 1rem;
            line-height: 1.6;
            color: #6d4c41;
            flex-grow: 1;
            text-align: left;
        }

        /* Mobile Styles */
        @media (max-width: 768px) {
            .hero_container {
                padding: 20px 2rem;
            }

            header {
                margin-bottom: 30px;
            }

            header p {
                font-size: 12px;
                padding: 10px 20px;
                letter-spacing: 1px;
            }

            h1 {
                font-size: 2.5rem;
                letter-spacing: 2px;
            }

            .hero_section {
                grid-template-columns: 1fr;
                gap: 30px;
                margin-top: 30px;
            }

            /* Image comes first on mobile, right after header */
            .hero_image {
                order: -1;
                margin: 0 auto;
            }

            .hero_section p {
                font-size: 1.1rem;
                text-align: center;
            }

            .hero_section p:first-child {
                font-size: 1.3rem;
            }

            button {
                align-self: center;
                padding: 16px 32px;
                font-size: 1rem;
            }

            .about_section {
                padding: 4rem 2rem;
            }

            .about_section header {
                font-size: 2rem;
                letter-spacing: 1px;
            }

            .about_section > p {
                font-size: 1.1rem;
                margin-bottom: 40px;
            }

            .about_cards_container {
                grid-template-columns: 1fr;
                grid-template-rows: auto;
                gap: 20px;
            }

            .about_card_wide, .about_card_narrow {
                padding: 25px;
                align-self: auto;
            }

            /* Reset grid positioning for mobile */
            .about_card_wide:nth-child(1) { grid-column: 1; grid-row: 1; }
            .about_card_narrow:nth-child(2) { grid-column: 1; grid-row: 2; }
            .about_card_narrow:nth-child(3) { grid-column: 1; grid-row: 3; background-color: #fff5d4;}
            .about_card_wide:nth-child(4) { grid-column: 1; grid-row: 4; background-color: white;}

            .about_card_wide h3, .about_card_narrow h3 {
                font-size: 1.2rem;
            }
        }

        @media (max-width: 480px) {
            h1 {
                font-size: 2rem;
            }

            .hero_section p {
                font-size: 1rem;
            }

            .hero_section p:first-child {
                font-size: 1.2rem;
            }

            .about_section header {
                font-size: 1.8rem;
            }

            .about_section > p {
                font-size: 1rem;
            }

            .about_card_wide, .about_card_narrow {
                padding: 20px;
            }
        }

        /* Team Section */

        .team_section {
            background-color: #f1faf8;
            padding: 2rem;
            border-bottom: 1rem solid;
            border-image: linear-gradient(-90deg, #ff6b6b, #feca57, #73f592,#54a0ff, #8651f1) 1;
        }

        .host_section {
            background-color: white;
            border-radius: 10px;
            max-width: 1200px;
            margin: 0 auto;
            margin-top: 2rem;
            padding-top: 2rem;
        }

        .host_section h2 {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 900;
            color: #5d4037;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .team_section h3 {
            text-align: center;
            font-size: 2rem;
            font-weight: 900;
            color: #5d4037;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin: 0 0 40px 0;
            padding-top: 40px;
        }

        .host_cards {
            display: flex;
            justify-content: center;
            max-width: 1200px;
            margin: 0 auto 60px auto;
            padding: 40px;
            border-radius: 10px;
        }

        .host_card {
            background-color: transparent;
            padding: 10px;
            border-radius: 10px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            flex: 1;
            max-width: 300px;
        }

        .host_card img {
            max-width: 175px;
            max-height: 175px;
            background-color: #f4d03f;
            border-radius: 8px;
            margin-bottom: 20px;
            flex-shrink: 0;
        }

        .host_name {
            font-size: 1.3rem;
            font-weight: 700;
            color: #5d4037;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
        }

        .host_title {
            font-size: 1rem;
            font-weight: 500;
            color: #8d6e63;
            margin-bottom: 15px;
            font-style: italic;
        }

        .host_card p {
            font-size: 0.95rem;
            line-height: 1.6;
            color: #6d4c41;
        }

        .squash_teams {
            display: flex;
            justify-content: center;
            gap: 10px;
            max-width: 1200px;
            margin: 2rem auto;
        }

        .squash_card {
            background-color: transparent;
            padding: 20px;
            border-radius: 10px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            min-width: 150px;
        }

        .squash_card img {
            min-width: 125px;
            min-height: 125px;
            max-width: 125px;
            max-height: 125px;
            background-color: #f4d03f;
            border-radius: 8px;
            margin-bottom: 15px;
            flex-shrink: 0;
        }

        .team_name {
            font-size: 1.1rem;
            font-weight: 700;
            color: #5d4037;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 5px;
        }

        .team_number {
            font-size: 0.9rem;
            font-weight: 500;
            color: #8d6e63;
            letter-spacing: 1px;
        }

    .registration_announcement {
            display: block;
            max-width: 750px;
            margin: 0 auto;
            background-color: rgba(255, 255, 255, 0.938);
            padding: 1.5rem;
            border-radius: 10px;
            text-align: center;
            font-size: 1rem;
            font-weight: 600;
            color: #5d4037;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            line-height: 1.8;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 120px;
        }

        /* Mobile Styles for Host Section */
        @media (max-width: 768px) {
            .host_section {
                padding: 40px 2rem;
            }

            .host_section h2 {
                font-size: 2rem;
                letter-spacing: 1px;
            }

            .host_section h3 {
                font-size: 1.6rem;
                letter-spacing: 1px;
                margin: 40px 0 30px 0;
            }

            .host_cards {
                flex-direction: column;
                gap: 20px;
                margin-bottom: 40px;
                padding: 30px;
            }

            .host_card {
                max-width: none;
                padding: 25px;
            }

            .squash_teams {
                display: grid;
                grid-template-columns: 1fr 1fr;
                grid-template-rows: repeat(3, auto);
                gap: 15px;
                justify-items: center;
            }

            .squash_card {
                min-width: auto;
                width: 100%;
                padding: 15px;
            }

            .squash_card img {
                width: 60px;
                height: 60px;
            }

            .team_name {
                font-size: 1rem;
            }

            .team_number {
                font-size: 0.8rem;
            }
        }

        @media (max-width: 480px) {
            .host_section h2 {
                font-size: 1.8rem;
            }

            .team_section h3 {
                font-size: 1.4rem;
            }

            .host_section {
                padding: 20px;
            }
        }

                /* Schedule Section */
        .schedule_section {
            padding: 4rem 2rem;
            background-color: transparent;
        }

        .schedule_section h3 {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 900;
            color: #5d4037;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 50px;
        }

        .schedule_section ul {
            list-style: none;
            max-width: 1200px;
            margin: 0 auto;
        }

        .schedule_section li {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 40px;
            gap: 30px;
            border-top: 1px solid #ccc;
            padding-top: 30px;
        }

        .schedule_left {
            display: flex;
            flex-direction: column;
            align-items: start;
            gap: 20px;
            flex-shrink: 0;
            min-width: 350px;
        }

        .schedule_section span {
            font-size: 0.9rem;
            font-weight: 600;
            color: #5d4037;
            text-transform: uppercase;
            letter-spacing: 1px;
            white-space: nowrap;
        }

        .schedule_content {
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .schedule_content h4 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #5d4037;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin: 0;
        }

        .schedule_content p {
            font-size: 1rem;
            line-height: 1.6;
            color: #6d4c41;
            margin: 0;
        }

        .schedule_icons {
            display: flex;
            gap: 10px;
        }

        .schedule_icons img {
            width: 60px;
            height: 60px;
            background-color: #f4d03f;
            border-radius: 50%;
            flex-shrink: 0;
        }

        /* Mobile Styles for Schedule */
        @media (max-width: 768px) {
            .schedule_section {
                padding: 40px 2rem;
            }

            .schedule_section h3 {
                font-size: 2rem;
                letter-spacing: 1px;
                margin-bottom: 40px;
            }

            .schedule_section li {
                flex-direction: column;
                align-items: center;
                gap: 20px;
                margin-bottom: 30px;
            }

            .schedule_left {
                align-items: center;
                gap: 15px;
            }

            .schedule_section span {
                font-size: 0.8rem;
            }

            .schedule_icons {
                align-self: center;
                gap: 8px;
            }

            .schedule_icons img {
                width: 50px;
                height: 50px;
            }

            .schedule_content {
                text-align: start;
            }

            .schedule_content h4 {
                font-size: 1.3rem;
            }

            .schedule_content p {
                font-size: 0.95rem;
            }
        }

        @media (max-width: 480px) {
            .schedule_section h3 {
                font-size: 1.8rem;
            }

            .schedule_content h4 {
                font-size: 1.2rem;
            }

            .schedule_icons img {
                width: 45px;
                height: 45px;
            }
        }

        /* FAQ Section */
        .faq_section {
            padding: 4rem 2rem;
            background-color: #fff5d4;
        }

        .faq_section h3 {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 900;
            color: #5d4037;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 50px;
        }

        .faq_section ul {
            list-style: none;
            max-width: 800px;
            margin: 0 auto;
        }

        .faq_card {
            background-color: white;
            margin-bottom: 20px;
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 25px 30px;
            font-size: 1.2rem;
            font-weight: 700;
            color: #5d4037;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .question:hover {
            background-color: #f8f8f8;
        }

        .collapse_button {
            background: none;
            border: none;
            outline: 1px solid #b8574d;
            border-radius: 4px;
            font-size: 1.2rem;
            font-weight: bold;
            color: #d08177;
            cursor: pointer;
            transition: transform 0.3s ease;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .collapse_button::before {
            content: '▼';
        }

        .faq_card.active .collapse_button {
            transform: rotate(180deg);
        }

        .answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            padding: 0 30px;
            font-size: 1rem;
            line-height: 1.6;
            color: #6d4c41;
        }

        .faq_card.active .answer {
            max-height: 200px;
            padding: 1rem 30px 25px 30px;
        }

        /* Mobile Styles for FAQ */
        @media (max-width: 768px) {
            .faq_section {
                padding: 40px 2rem;
            }

            .faq_section h3 {
                font-size: 2rem;
                letter-spacing: 1px;
                margin-bottom: 40px;
            }

            .question {
                padding: 20px 25px;
                font-size: 1.1rem;
            }

            .faq_card.active .answer {
                padding: 1rem 25px 20px 25px;
            }
        }

        @media (max-width: 480px) {
            .faq_section h3 {
                font-size: 1.8rem;
            }

            .question {
                padding: 18px 20px;
                font-size: 1rem;
            }

            .faq_card.active .answer {
                padding: 1rem 20px 18px 20px;
            }
        }

             /* Registration Section */
        .registration_section {
            padding: 4rem 2rem;
            background-color: #b8574d;
        }

        .registration_section h3 {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 900;
            color: #ffffff;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 50px;
        }

        .registration_form {
            max-width: 700px;
            margin: 0 auto;
            background-color: white;
            padding: 40px;
            border-radius: 10px;
        }

        .form_section {
            margin-bottom: 40px;
        }

        .form_section h4 {
            font-size: 1.3rem;
            font-weight: 700;
            color: #5d4037;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #f4d03f;
        }

        .form_group {
            margin-bottom: 20px;
        }

        .form_group label {
            display: block;
            font-size: 1rem;
            font-weight: 600;
            color: #5d4037;
            margin-bottom: 8px;
        }

        .form_group input,
        .form_group select,
        .form_group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
            font-family: inherit;
        }

        .form_group input:focus,
        .form_group select:focus,
        .form_group textarea:focus {
            outline: none;
            border-color: #b8574d;
        }

        .radio_group {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .radio_label {
            display: flex;
            align-items: center;
            gap: 12px;
            cursor: pointer;
            padding: 15px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .radio_label:hover {
            border-color: #b8574d;
            background-color: #f8f8f8;
        }

        .radio_label input[type="radio"] {
            width: auto;
            margin: 0;
        }

        .radio_label input[type="radio"]:checked + span {
            font-weight: 600;
            color: #b8574d;
        }

        .radio_label input[type="radio"]:checked {
            accent-color: #b8574d;
        }

        .conditional_section {
            animation: fadeIn 0.3s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .submit_btn {
            background-color: #b8574d;
            color: white;
            border: none;
            padding: 18px 36px;
            font-size: 1.1rem;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            margin-top: 20px;
        }

        .submit_btn:hover {
            background-color: #a04a41;
            transform: translateY(-2px);
        }

        .submit_btn:disabled {
            background-color: #ccc;
            cursor: not-allowed;
            transform: none;
        }

        .success_message {
            background-color: #d4edda;
            color: #155724;
            padding: 20px;
            border-radius: 8px;
            border: 1px solid #c3e6cb;
            margin-top: 20px;
            text-align: center;
        }

        .success_message h4 {
            margin-bottom: 10px;
            font-size: 1.2rem;
        }

        .success_message p {
            margin: 0;
            line-height: 1.5;
        }

        /* Mobile Styles for Registration */
        @media (max-width: 768px) {
            .registration_section {
                padding: 40px 2rem;
            }

            .registration_section h3 {
                font-size: 2rem;
                letter-spacing: 1px;
                margin-bottom: 40px;
            }

            .registration_form {
                padding: 30px 25px;
            }

            .form_section h4 {
                font-size: 1.2rem;
            }

            .radio_label {
                padding: 12px;
            }

            .submit_btn {
                padding: 16px 32px;
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .registration_section h3 {
                font-size: 1.8rem;
            }

            .registration_form {
                padding: 25px 20px;
            }

            .form_section h4 {
                font-size: 1.1rem;
            }
        }
