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

/* Globale Link-Regel: keine Links in Überschriften */
h1, h2, h3, h4, h5, h6, p {
    text-decoration: none !important;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

/* Header & Navigation */
.sticky-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.navbar {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo-left,
.navbar-logo-right {
    flex-shrink: 0;
}

.navbar-logo-left {
    margin-right: auto;
    padding-left: 10px;
}

.navbar-logo-right {
    margin-left: auto;
    padding-right: 10px;
}

.navbar-logo-left a,
.navbar-logo-right a {
    display: inline-block;
    text-decoration: none;
}

.navbar-logo-left img,
.navbar-logo-right img {
    height: 50px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.navbar-logo-left img:hover,
.navbar-logo-right img:hover {
    opacity: 1;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 600;
    flex-shrink: 0;
}

.logo-link {
    display: inline-block;
    text-decoration: none;
    height: 60px;
    display: flex;
    align-items: center;
}

.logo-image {
    height: 60px;
    width: auto;
    max-width: 200px;
    transition: opacity 0.3s ease;
}

.logo-link:hover .logo-image {
    opacity: 0.8;
}

.hero-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 1.5rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.nav-links {
    display: flex;
    gap: 0.8rem;
    margin-left: auto;
}

.nav-links .nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-links .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    opacity: 1;
}

/* Main Content */
main {
    margin-top: 80px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(128, 128, 128, 0.5) 0%, rgba(100, 100, 100, 0.5) 100%), 
                url('/static/squash_halle_01.jpg') center/cover no-repeat;
    color: white;
    padding: 6rem 2rem;
    text-align: center;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.squashlevels-logo {
    display: none;
}

.club-logo-left {
    display: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(244, 244, 244, 0.8));
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: white !important;
    text-decoration: none !important;
    cursor: default;
}

.hero-content p {
    font-size: 1.5rem;
    opacity: 0.95;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    color: white !important;
    text-decoration: none !important;
    cursor: default;
}

/* Section Styles */
.info-section,
.liga-section,
.gallery-section,
.registration-section {
    padding: 5rem 2rem;
    background: white;
    border-bottom: 1px solid #eee;
}

.section-content {
    max-width: 1200px;
    margin: 0 auto;
}

.info-section h2,
.liga-section h2,
.gallery-section h2,
.registration-section h2 {
    font-size: 2.5rem;
    color: #1e3c72;
    margin-bottom: 1.5rem;
    text-align: center;
}

.info-section p,
.liga-section p,
.registration-section p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1rem;
    text-align: center;
    line-height: 1.8;
}

/* About Section Content */
.about-intro {
    text-align: center;
    margin-bottom: 2rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
    align-items: center;
}

.about-text {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
    text-align: left;
}

.about-text h3,
.about-usage h3 {
    color: #1e3c72;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.about-text ul {
    list-style-position: outside;
    text-align: left;
    line-height: 1.8;
    padding-left: 2rem;
}

.about-text li {
    color: #666;
    margin-bottom: 0.8rem;
    margin-left: 0;
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Usage Section */
.about-usage-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
    align-items: center;
}

.about-image-left {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image-left img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.about-image-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image-right img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.about-usage {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
    text-align: left;
}

.about-usage p {
    text-align: left;
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.8;
}

.about-usage ul {
    list-style-position: outside;
    text-align: left;
    line-height: 1.8;
    padding-left: 2rem;
}

.about-usage li {
    color: #666;
    margin-bottom: 0.8rem;
    margin-left: 0;
}

/* Liga Section */
.liga-section {
    padding: 5rem 2rem;
    background: white;
    border-bottom: 1px solid #eee;
    min-height: 976px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.liga-section .section-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
}

.liga-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.liga-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    justify-items: center;
}

.liga-text {
    text-align: center;
}

.liga-card {
    background: linear-gradient(135deg, #fff5f7 0%, #f0f4ff 100%);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-top: 1.5rem;
}

.liga-image {
    text-align: center;
}

.liga-image img {
    max-width: 50%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.liga-image a:hover img {
    transform: scale(1.05);
}

/* Tables Container */
.tables-container {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
    min-height: 600px;
}

.tables-iframe {
    width: 100%;
    height: 800px;
    border: none;
    border-radius: 10px;
}

/* Gallery Section */
.gallery-section p {
    margin-bottom: 2rem;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-item {
    background: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.gallery-item p {
    padding: 1.5rem;
    text-align: center;
    color: #333;
    font-weight: 500;
    margin: 0;
}

/* Registration Section */
.registration-section {
    padding: 5rem 2rem;
    background: white;
    border-bottom: 1px solid #eee;
    min-height: 976px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.registration-section .section-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
}

.registration-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.registration-section > .section-content > p {
    text-align: center;
    margin-bottom: 2rem;
}

.registration-card {
    background: linear-gradient(135deg, #fff5f7 0%, #f0f4ff 100%);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    width: 50vw;
    aspect-ratio: 2 / 1;
    margin: 0 auto;
}

.registration-title {
    color: #1e3c72;
    font-size: 1.5rem;
    text-align: center;
    margin: 0;
    grid-column: 1 / -1;
}

.registration-content-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: flex-start;
}

.qr-code-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.registration-text {
    text-align: center;
}

.registration-text ol {
    list-style-position: inside;
    text-align: left;
    line-height: 1.8;
    padding-left: 1rem;
}

.registration-text li {
    color: #666;
    margin-bottom: 1.5rem;
    text-align: left;
}

.registration-text .btn {
    display: block;
    width: fit-content;
    margin: 1rem auto 0;
}

.registration-text h3 {
    text-align: center;
}

.registration-card h3 {
    color: #1e3c72;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    text-align: center;
}

.registration-card p {
    margin-bottom: 1rem;
}

.qr-code-large {
    max-width: 300px;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.small-text {
    font-size: 0.9rem;
    color: #666;
    margin-top: 1.5rem;
}

.registration-card h3 {
    color: #1e3c72;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.registration-card p {
    margin-bottom: 1rem;
}

.small-text {
    font-size: 0.9rem;
    color: #999;
    margin-top: 1.5rem;
}

/* Founder Section */
.founder-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%), 
                url('/static/Squashhalle_03.jpg') center/cover no-repeat;
    border-bottom: 1px solid #eee;
    min-height: 761px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.founder-section h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.founder-section p {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 2rem;
    text-align: center;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.founder-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    margin: 0 auto;
}

.founder-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    text-align: center;
}

.founder-link:hover {
    transform: translateY(-5px);
}

.founder-logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 1.5rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.founder-link h3 {
    color: #1e3c72;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.founder-link p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.founder-link .arrow {
    display: inline-block;
    font-size: 1.5rem;
    color: #667eea;
    transition: transform 0.3s ease;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.btn-secondary:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(245, 87, 108, 0.4);
}

/* Kontakt Section */
.kontakt-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-bottom: 1px solid #eee;
}

.kontakt-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.kontakt-section > .section-content > p {
    text-align: center;
    margin-bottom: 3rem;
    color: #666;
}

.kontakt-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1e3c72;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1e3c72;
    box-shadow: 0 0 5px rgba(30, 60, 114, 0.2);
}

.kontakt-form .btn {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    transition: transform 0.2s ease;
}

.kontakt-form .btn:hover {
    transform: translateY(-2px);
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 5px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-message.success {
    display: block;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    display: block;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Footer */
footer {
    background: #1e3c72;
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.impressum {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.impressum h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.impressum p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

.impressum a {
    color: #fff;
    text-decoration: none;
}

.impressum a:hover {
    text-decoration: underline;
}

.footer-link {
    color: white;
    text-decoration: none;
    transition: text-decoration 0.3s ease;
}

.footer-link:hover {
    text-decoration: underline;
}

/* Impressum Page */
.impressum-section {
    padding: 5rem 2rem;
    background: white;
    min-height: calc(100vh - 80px);
}

.impressum-content {
    max-width: 800px;
    margin: 0 auto;
}

.impressum-content h2 {
    color: #1e3c72;
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.impressum-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.impressum-content a {
    color: #1e3c72;
    text-decoration: none;
}

.impressum-content a:hover {
    text-decoration: underline;
}

/* Datenschutz Page */
.datenschutz-section {
    padding: 5rem 2rem;
    background: white;
    min-height: calc(100vh - 80px);
}

.datenschutz-content {
    max-width: 800px;
    margin: 0 auto;
}

.datenschutz-content h2 {
    color: #1e3c72;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.datenschutz-content h3 {
    color: #1e3c72;
    font-size: 1.2rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.datenschutz-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
    text-align: justify;
}

.datenschutz-content a {
    color: #1e3c72;
    text-decoration: none;
}

.datenschutz-content a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .navbar {
        padding: 0 1.5rem;
        gap: 1.5rem;
    }

    .navbar-logo-left img,
    .navbar-logo-right img {
        height: 45px;
    }

    .logo-image {
        height: 50px;
        max-width: 160px;
    }

    .hero-logo {
        max-width: 170px;
        margin-bottom: 1.2rem;
    }

    .nav-links {
        gap: 0.5rem;
    }

    .nav-links .nav-link {
        padding: 0.4rem 0.6rem;
        font-size: 0.85rem;
    }

    .club-logo-left img {
        width: 80px;
    }

    .squashlevels-logo img {
        width: 50px;
    }

    .hero {
        padding: 4rem 1.5rem;
        min-height: calc(100vh - 70px);
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .info-section,
    .liga-section,
    .registration-section,
    .founder-section {
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .sticky-header {
        padding: 0.75rem 0;
    }

    .navbar {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }

    .navbar-logo-left,
    .navbar-logo-right {
        display: none;
    }

    .logo h1 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }

    .logo-image {
        height: 45px;
        max-width: 140px;
    }

    .hero-logo {
        max-width: 150px;
        margin-bottom: 1rem;
    }

    .nav-links {
        gap: 0.4rem;
        flex-wrap: wrap;
        justify-content: center;
        margin-left: 0;
    }

    .nav-links .nav-link {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
        border-radius: 3px;
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    main {
        margin-top: 140px;
    }

    /* Hero Section Mobile */
    .hero {
        min-height: auto;
        padding: 2rem 1rem;
        padding-top: 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .club-logo-left {
        top: 0.5rem;
        left: 0.5rem;
    }

    .club-logo-left img {
        width: 70px;
    }

    .squashlevels-logo {
        top: 0.5rem;
        right: 0.5rem;
    }

    .squashlevels-logo img {
        width: 45px;
    }

    .hero-content h1 {
        font-size: 1.6rem;
        margin-bottom: 0.5rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .hero::after {
        height: 60px;
    }

    /* Section Styling Mobile */
    .info-section,
    .liga-section,
    .registration-section,
    .founder-section {
        padding: 2rem 1rem;
    }

    .section-content {
        padding: 0;
    }

    .info-section h2,
    .liga-section h2,
    .registration-section h2,
    .founder-section h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .info-section p,
    .liga-section p,
    .registration-section p,
    .founder-section p {
        font-size: 0.95rem;
    }

    /* About Section Mobile */
    .about-intro {
        margin-bottom: 1.5rem;
    }

    .about-intro p {
        font-size: 0.95rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 1.5rem 0;
    }

    .about-text h3 {
        font-size: 1.1rem;
    }

    .about-text ul {
        text-align: left;
        padding-left: 1rem;
    }

    .about-text li {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }

    .about-usage-section {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 1.5rem 0;
    }

    .about-usage {
        padding: 1rem;
        background: #f9f9f9;
    }

    .about-usage h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .about-usage p {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
        line-height: 1.6;
    }

    /* Liga Section Mobile */
    .liga-content {
        flex-direction: column;
    }

    .liga-card {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }

    .liga-card h3 {
        font-size: 1.2rem;
    }

    .liga-card p {
        font-size: 0.9rem;
    }

    /* Registration Section Mobile */
    .registration-card {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }

    .registration-content-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .qr-code-large {
        max-width: 120px;
    }

    .registration-card h3 {
        font-size: 1.2rem;
    }

    .registration-card p {
        font-size: 0.9rem;
    }

    /* Founder Section Mobile */
    .founder-section {
        background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    }

    .founder-card {
        padding: 1.5rem;
        max-width: 100%;
    }

    .founder-logo {
        max-width: 100px;
        margin-bottom: 1rem;
    }

    .founder-link h3 {
        font-size: 1.1rem;
    }

    .founder-link p {
        font-size: 0.85rem;
    }

    /* Kontakt Section Mobile */
    .kontakt-section {
        padding: 3rem 1rem;
    }

    .kontakt-section h2 {
        font-size: 1.3rem;
    }

    .kontakt-form {
        padding: 1.5rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.7rem;
        font-size: 1rem;
        min-height: 44px;
    }

    .kontakt-form .btn {
        padding: 0.8rem;
        font-size: 0.9rem;
        min-height: 44px;
        min-width: 44px;
    }

    /* Buttons Mobile */
    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
        min-height: 44px;
    }

    /* Footer Mobile */
    footer {
        padding: 1.5rem 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .sticky-header {
        padding: 0.5rem 0;
    }

    .navbar {
        gap: 0.7rem;
        padding: 0 0.5rem;
    }

    .logo h1 {
        font-size: 1.1rem;
        margin-bottom: 0.3rem;
    }

    .logo-image {
        height: 50px;
        max-width: 150px;
    }

    .nav-links {
        gap: 0.3rem;
    }

    .nav-links .nav-link {
        padding: 0.3rem 0.5rem;
        font-size: 0.7rem;
    }

    main {
        margin-top: 130px;
    }

    .hero {
        padding: 1.5rem 0.5rem;
    }

    .club-logo-left {
        top: 0.3rem;
        left: 0.3rem;
    }

    .club-logo-left img {
        width: 60px;
    }

    .squashlevels-logo {
        top: 0.3rem;
        right: 0.3rem;
    }

    .squashlevels-logo img {
        width: 40px;
    }

    .hero-logo {
        max-width: 100px;
        margin-bottom: 0.8rem;
    }

    .hero-content h1 {
        font-size: 1.3rem;
        margin-bottom: 0.3rem;
    }

    .hero-content p {
        font-size: 0.85rem;
    }

    .hero-content .btn {
        margin-top: 1rem !important;
    }

    .info-section,
    .liga-section,
    .registration-section,
    .founder-section {
        padding: 1.5rem 0.75rem;
    }

    .info-section h2,
    .liga-section h2,
    .registration-section h2,
    .founder-section h2 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .about-text h3,
    .about-usage h3,
    .liga-card h3,
    .registration-card h3,
    .founder-link h3 {
        font-size: 1rem;
    }

    .about-text li {
        font-size: 0.85rem;
    }

    .registration-card {
        padding: 1rem;
    }

    .qr-code-large {
        max-width: 100px;
    }

    .founder-logo {
        max-width: 80px;
    }
}