@charset "UTF-8";
:root {
            --mitsu-red: #DE1F26;
            --mitsu-gold: #DFB676;
            --dark-grey: #1a1a1a;
            --light-grey: #f4f4f4;
            --white: #ffffff;
            --text-color: #333333;
            --font-main: 'MMC', Verdana, Arial, Helvetica, sans-serif;
        }

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

        .faq-section {
            padding: 80px 0;
        }

        body {
            font-family: var(--font-main);
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
            background-color: var(--white);
        }

        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            margin-bottom: 1rem;
            text-transform: uppercase;
        }

        h1 { font-size: 2.5rem; line-height: 1.2; }
        h2 { font-size: 2rem; color: var(--dark-grey); margin-bottom: 0.5rem; text-align: center; }
        h3 { font-size: 1.5rem; color: var(--mitsu-gold); }
        p { margin-bottom: 1rem; }

        a { text-decoration: none; color: inherit; transition: 0.3s; }
        ul { list-style: none; }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            border: 2px solid var(--mitsu-gold);
            color: var(--dark-grey);
            font-weight: 600;
            text-transform: uppercase;
            cursor: pointer;
            background: transparent;
            transition: all 0.3s ease;
            margin: 10px 5px;
            border-radius: 0;
        }

        .btn:hover {
            background: var(--mitsu-gold);
            color: var(--white);
        }

        .btn-primary {
            background: var(--mitsu-gold);
            color: var(--white);
        }
        .btn-primary:hover {
            background: #c69f5e;
            border-color: #c69f5e;
        }

        /* --- Header & Nav --- */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 15px 0;
        }

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

        .logo img {
            max-height: 60px;
        }

        .nav-links {
            display: flex;
            gap: 20px;
        }

        .nav-links a {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--dark-grey);
        }

        .nav-links a:hover {
            color: var(--white);
        }

        .burger {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* --- Hero Section --- */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-align: center;
            overflow: hidden;
            margin-top: 0;
            background: url('/img/Headerbild_Montenegro.jpg') no-repeat center center;
            background-size: cover;
            padding-top: 60px;
        }

        .hero-video-bg {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            transform: translate(-50%, -50%);
            z-index: 0;
            filter: brightness(0.9);
            object-fit: cover;
        }

        .hero-content {
            z-index: 1;
            padding: 20px;
            animation: fadeIn Up 1s ease-out;
        }

        .hero-content h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            letter-spacing: 2px;
        }

        .hero-content h2, .registration-steps h2.text-dark {
            font-size: 1.2rem;
            color: var(--mitsu-gold);
            margin-bottom: 2rem;
            font-weight: 500;
        }

        .quote {
            font-style: italic;
            font-size: 1.1rem;
            margin: 2rem auto;
            max-width: 640px;
            border-left: 3px solid var(--mitsu-gold);
            padding-left: 15px;
        }

        /* --- Intro Section --- */
        .intro {
            padding: 80px 0;
            text-align: center;
            background: url('/img/höhenlinien.svg') no-repeat center center;
            background-size: cover;
        }

        .intro p {
            max-width: 800px;
            margin: 0 auto 1.5rem;
            font-size: 1.1rem;
        }

        /* --- Registration Steps --- */
        .registration-steps {
            background: var(--light-grey);
            padding: 60px 0;
        }

        .steps-container {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            text-align: center;
            gap: 20px;
        }

        .step {
            flex: 1;
            min-width: 250px;
            padding: 20px;
            background: var(--white);
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border-radius: 8px;
        }

        .step h3 {
            color: var(--mitsu-gold);
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        /* --- Map Section --- */
        .map-section {
            padding: 80px 0;
            background: var(--white);
        }

        .map-container {
            position: relative;
            text-align: center;
            width: 100%;
            overflow: hidden;
        }

        .map-container img {
            width: 100%;
            height: auto;
            display: block;
        }

        .stage-info {
            position: absolute;
            bottom: 40px;
            right: 40px;
            background: rgba(223, 182, 118, 0.95); /* Semi-transparent Gold */
            color: var(--white);
            padding: 40px;
            border-radius: 4px;
            text-align: left;
            max-width: 500px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.2);
            z-index: 10;
            transition: all 0.5s ease; /* Smooth transition for position changes */
        }

        /* White inset line for stage-info */
        .stage-info::after {
            content: '';
            position: absolute;
            top: 10px;
            left: 10px;
            right: 10px;
            bottom: 10px;
            border: 1px solid var(--white);
            pointer-events: none;
            opacity: 0.8;
        }

        .stage-info h3 {
            color: var(--white);
            margin-bottom: 5px;
            display: block;
            position: relative; /* Ensure text is above inset border */
            z-index: 1;
            transition: opacity 0.4s ease-in-out;
        }
        
        .stage-info h4 {
            color: var(--dark-grey);
            margin: 0 0 15px 0;
            font-size: 1.2rem;
            border-bottom: 2px solid rgba(255,255,255,0.3);
            padding-bottom: 10px;
            display: block;
            position: relative;
            z-index: 1;
            transition: opacity 0.4s ease-in-out;
        }

        .stage-info p {
            position: relative;
            z-index: 1;
            transition: opacity 0.4s ease-in-out;
        }

        .stage-nav {
            margin-top: 20px;
            font-size: 0.9rem;
            color: rgba(255,255,255,0.8);
            position: relative;
            z-index: 1;
            text-align: center;
        }

        /* --- Reasons Section --- */
        .reasons {
            padding: 80px 0;
            background: url('/img/höhenlinien.svg') no-repeat center center;
            background-size: cover;
            color: var(--text-color);
        }

        .reasons h2 { color: var(--dark-grey); }

        .reasons-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .reason-card {
            background: var(--white);
            padding: 30px;
            border: 1px solid rgba(0,0,0,0.05);
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }

        .reason-card:hover {
            transform: translateY(-5px);
            border-color: var(--mitsu-gold);
        }

        .reason-card h4 {
            color: var(--mitsu-gold);
            margin-bottom: 15px;
            font-size: 1.2rem;
        }

        .icon-line-wrapper {
            position: relative;
            text-align: center;
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .icon-line-wrapper::before {
            content: "";
            position: absolute;
            top: 50%;
            left: 0;
            width: 100%;
            height: 1px;
            background-color: var(--mitsu-gold);
            z-index: 1;
        }

        .icon-line-wrapper img {
            position: relative;
            z-index: 2;
            background-color: var(--white);
            padding: 0 15px;
        }

        /* --- Timeline Section --- */
        .timeline-section {
            padding: 80px 0;
            text-align: center;
        }

        .timeline {
            display: flex;
            justify-content: center;
            align-items: flex-start;
            flex-wrap: wrap;
            gap: 40px;
            margin-top: 50px;
        }

        .timeline-item {
            flex: 1;
            min-width: 200px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .timeline-icon {
            width: 80px;
            height: 80px;
            margin-bottom: 20px;
        }
        
        .timeline-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .timeline-item h4 { font-size: 1rem; margin-bottom: 5px; }
        .timeline-item p { font-size: 0.9rem; color: #666; }

        /* --- Ranking Table --- */
        .ranking-section {
            padding: 80px 0;
            background: var(--light-grey);
        }

        .ranking-table-wrapper {
            overflow-x: auto;
            margin-top: 30px;
            background: var(--white);
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border-radius: 8px;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            min-width: 600px;
        }

        th, td {
            padding: 15px 20px;
            text-align: left;
            border-bottom: 1px solid #eee;
        }

        th {
            background: var(--dark-grey);
            color: var(--white);
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.9rem;
        }

        tr:hover { background-color: #f9f9f9; }
        
tr td:first-child {
            font-weight: bold;
            color: var(--mitsu-red);
        }

        /* --- Gallery / Slideshow --- */
        .gallery-section {
            padding: 80px 0 0 0;
            background: var(--white);
            text-align: center;
            padding-bottom: 100px; /* Space for overlap */
        }

        .slideshow-wrapper {
            width: 100%;
            height: 70vh;
            min-height: 500px;
            position: relative;
        }

        .slideshow-track {
            display: flex;
            width: 100%;
            height: 100%;
            transition: transform 0.8s cubic-bezier(0.45, 0, 0.55, 1);
        }

        .slide {
            min-width: 100%;
            height: 100%;
            position: relative;
        }
        
        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .caption-container {
            position: absolute;
            bottom: -60px; /* Moved down to overlap */
            left: 50%;
            transform: translateX(-50%);
            background: var(--mitsu-gold);
            padding: 40px 50px;
            border-radius: 4px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.2);
            max-width: 90%;
            width: 750px;
            text-align: center;
            z-index: 10;
        }

        /* White inset line */
        .caption-container::after {
            content: '';
            position: absolute;
            top: 10px;
            left: 10px;
            right: 10px;
            bottom: 10px;
            border: 1px solid var(--white);
            pointer-events: none;
            opacity: 0.8;
        }

        .caption-container h4 {
            color: var(--white);
            font-size: 1.4rem;
            margin-bottom: 10px;
            font-weight: 700;
            letter-spacing: 1px;
            position: relative;
            transition: opacity 0.4s ease-in-out;
        }

        .caption-container p {
            margin: 0 0 20px 0;
            font-size: 1.1rem;
            color: var(--dark-grey);
            font-weight: 500;
            line-height: 1.4;
            position: relative;
            transition: opacity 0.4s ease-in-out;
        }

        .slider-dots {
            display: flex;
            justify-content: center;
            gap: 12px;
        }

        .dot {
            width: 14px;
            height: 14px;
            border: 2px solid var(--white);
            border-radius: 50%;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .dot.active {
            background-color: var(--white);
        }


        /* --- Footer --- */
        footer {
            background: var(--dark-grey);
            color: var(--white);
            padding: 60px 0 20px;
            text-align: center;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-bottom: 40px;
            text-align: left;
        }

        .footer-col {
            flex: 1;
            min-width: 250px;
            margin-bottom: 20px;
        }

        .footer-col h4 {
            color: var(--mitsu-gold);
            margin-bottom: 20px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 20px;
            font-size: 0.8rem;
            color: #888;
        }

        .footer-bottom a { color: #888; margin: 0 10px; }
        .footer-bottom a:hover { color: var(--white); }

        /* --- Forms --- */
        .signup-form {
            max-width: 800px;
            margin: 40px auto;
            background: var(--white);
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            text-align: left;
        }

        .form-row {
            display: flex;
            gap: 15px;
            margin-bottom: 15px;
        }

        .form-row input {
            flex: 1;
            margin-bottom: 0 !important;
        }

        .signup-form input[type="text"],
        .signup-form select,
        .signup-form input[type="email"] {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 1rem;
            margin-bottom: 15px;
            transition: border-color 0.3s;
            background-color: #fafafa;
        }

        .signup-form input:focus {
            outline: none;
            border-color: var(--mitsu-gold);
            background-color: var(--white);
        }

        .form-checkbox {
            margin: 20px 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .form-checkbox input[type="checkbox"] {
            width: 24px;
            height: 24px;
            cursor: pointer;
        }

        .form-checkbox label {
            font-size: 0.9rem;
            color: #666;
            cursor: pointer;
        }

        .form-checkbox a {
            color: var(--mitsu-red);
            font-weight: 600;
        }

        .form-actions {
            text-align: center;
            margin-top: 30px;
        }

        .form-actions button {
            width: 100%;
            max-width: 300px;
            border: none;
            padding: 15px;
            font-size: 1.1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
        }

        .pulsate {
            animation: pulsate 2s infinite;
        }

        @keyframes pulsate {
            0% { box-shadow: 0 0 0 0 rgba(223, 182, 118, 0.4); }
            70% { box-shadow: 0 0 0 15px rgba(223, 182, 118, 0); }
            100% { box-shadow: 0 0 0 0 rgba(223, 182, 118, 0); }
        }

        /* --- Animations --- */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        .zoom-in {
            opacity: 0;
            transform: scale(0.5);
            transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .zoom-in.active {
            opacity: 1;
            transform: scale(1);
        }

        /* --- Responsive --- */
        @media (max-width: 992px) {

            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                right: 0;
                background: var(--white);
                width: 100%;
                text-align: center;
                padding: 20px 0;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
            }
            .nav-links.active { display: flex; }
            .burger { display: block; margin-right: 20px; }
        }
        @media (max-width: 768px) {
            h1 { font-size: 2rem; }
            h2 { font-size: 1.75rem; }
            h3 { font-size: 1.35rem; }
            .hero-content h1 { font-size: 2.5rem; }

            .logo img {
                max-height: 40px;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                right: 0;
                background: var(--white);
                width: 100%;
                text-align: center;
                padding: 20px 0;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
            }
            .nav-links.active { display: flex; }
            .burger { display: block; margin-right: 20px; }
            .hero-content { padding: 0 15px; }
            
            .footer-content {
                flex-direction: column;
                text-align: center;
            }
            .footer-col { text-align: center; }

            .form-row {
                flex-direction: column;
                gap: 0;
            }
            .form-row input {
                margin-bottom: 15px !important;
            }
            .signup-form {
                padding: 25px 20px;
            }
        }

        @media (max-width: 480px) {
            h1 { font-size: 1.75rem; }
            h2 { font-size: 1.5rem; }
            h3 { font-size: 1.15rem; }
            .hero-content h1 { font-size: 2rem; }
            .hero-content h2 { font-size: 1rem; }
            .hero-content img { height: 120px !important; }
        }

        .map-scroll-track {
            position: relative;
            height: 400vh; /* Scroll distance */
            background: var(--white);
        }

        .map-sticky-container {
            position: sticky;
            top: 0;
            width: 100%;
            height: 100vh;
            overflow: hidden;
            display: flex;
            flex-direction: column; /* Ensure vertical stacking */
            align-items: center;
            justify-content: center;
        }

        .map-wrapper {
            position: relative;
            width: fit-content;
            height: fit-content;
            margin: 0 auto;
        }

        .map-image {
            width: auto;
            height: auto;
            max-width: 100%;
            max-height: 80vh; /* Leave space for headline/footer on desktop */
            display: block;
        }

        .map-svg-layer {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 5;
        }

        #markers-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .map-line {
            fill: none;
            stroke: var(--mitsu-red);
            stroke-width: 4px;
            stroke-linecap: round;
            stroke-dasharray: 1000;
            stroke-dashoffset: 1000;
            transition: stroke-dashoffset 0.5s ease-out;
        }

        .map-marker {
            position: absolute;
            width: 30px;
            height: 30px;
            background: var(--white);
            border: 3px solid var(--mitsu-gold);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            cursor: pointer;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 0.8rem;
            color: var(--dark-grey);
            transition: all 0.3s ease;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }

        .map-marker:hover, .map-marker.active {
            background: var(--mitsu-red);
            border-color: var(--white);
            color: var(--white);
            transform: translate(-50%, -50%) scale(1.2);
        }

        .map-marker-label {
            position: absolute;
            top: -25px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(255, 255, 255, 0.9);
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 0.7rem;
            white-space: nowrap;
            opacity: 0;
            color: var(--dark-grey);
            transition: opacity 0.3s;
            pointer-events: none;
        }

        .map-marker:hover .map-marker-label {
            opacity: 1;
        }

        /* Adjust stage-info to be within the sticky container */
        .stage-info {
            position: absolute;
            bottom: 40px;
            right: 40px;
            background: rgba(223, 182, 118, 0.95); /* Semi-transparent Gold */
            color: var(--white);
            padding: 40px;
            border-radius: 4px;
            text-align: left;
            max-width: 500px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.2);
            z-index: 10;
            transition: all 0.5s ease; /* Smooth transition for position changes */
        }

        /* Mobile specific positioning for stage-info */
        @media (max-width: 768px) {
            .stage-info {
                left: 20px;
                right: 20px;
                max-width: none;
                width: auto;
            }
            
            .stage-info.info-bottom {
                top: auto;
                bottom: 20px;
            }
            
            .stage-info.info-top {
                bottom: auto;
                top: 80px; /* Below header */
            }
        }

/* --- Mobile Portrait Split Screen --- */
@media (max-width: 768px) and (orientation: portrait) {
    .map-sticky-container {
        display: flex; /* Keep flex for vertical centering/stacking */
        flex-direction: column;
        justify-content: flex-start; /* Start from top */
        background: var(--light-grey);
    }

    .map-sticky-container h2 {
        margin-top: 10px;
        margin-bottom: 10px;
        font-size: 1.5rem;
        z-index: 20;
    }

    .map-wrapper {
        height: auto;
        width: 100%;
        max-height: 45vh; /* Limit map height to top half roughly */
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .map-image {
        width: auto;
        height: auto;
        max-width: 100%;
        max-height: 45vh;
        object-fit: contain;
    }

    .stage-info,
    .stage-info.info-top,
    .stage-info.info-bottom {
        position: absolute !important;
        top: auto !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        height: auto !important;
        max-height: 50vh !important;
        max-width: none !important;
        border-radius: 0;
        padding: 30px 20px;
        background: var(--mitsu-gold);
        display: flex;
        flex-direction: column;
        justify-content: center;
        box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
        transform: none !important;
        overflow-y: auto;
        z-index: 100;
    }


    /* Adjust typography for smaller space if needed */
    .stage-info h3 { font-size: 1.3rem; }
    .stage-info h4 { font-size: 1.1rem; }
    .stage-info p { font-size: 0.95rem; line-height: 1.5; }
    
    /* Ensure markers are visible on top of map */
    .map-marker { z-index: 15; }
}

/* --- Utility Classes & Extracted Styles --- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-10 { margin-top: 10px !important; }
.mt-20 { margin-top: 20px !important; }
.mt-40 { margin-top: 40px !important; }
.mb-10 { margin-bottom: 10px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px !important; }
.mb-60 { margin-bottom: 60px !important; }
.w-100 { width: 100% !important; }

.btn-menu {
    padding: 8px 20px;
    margin: 0;
    font-size: 0.8rem;
}

.btn-menu:hover {
    color: var(--white);
}

.hero-logo {
    height: 200px;
    display: block;
    margin: 0 auto 30px;
}

.video-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.video-container-full { height: 100vh; }
.video-container-break { height: 60vh; }

.video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-header-container {
    padding-top: 80px;
    padding-bottom: 40px;
}

.icon-zoom {
    width: 200px;
    height: auto;
}

.competition-dates-title {
    margin-top: 40px;
    color: var(--dark-grey);
}

.info-box-bordered {
    background: var(--white);
    border: 2px solid var(--mitsu-gold);
    padding: 40px;
    border-radius: 8px;
}

.custom-list {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    list-style-type: disc;
    padding-left: 20px;
}

.custom-list li { margin-bottom: 10px; }

.ranking-footer {
    margin-top: 20px;
    font-size: 0.9rem;
    text-align: center;
}

.link-red { color: var(--mitsu-red); }

.section-header-center {
    text-align: center;
    margin-bottom: 30px;
}

.internal-area-section {
    padding-top: 25px;
    padding-bottom: 25px;
}

.internal-hero-title-small {
    color: var(--mitsu-gold);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.internal-hero-title-large {
    font-size: 3rem;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.collapsible-content-box {
    display: none;
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: left;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-footer-section { padding: 60px 0 20px; }

.contact-footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-footer-col {
    margin-bottom: 40px;
    width: 100%;
}

.contact-footer-bottom {
    border-top: 5px solid var(--mitsu-gold);
    padding-top: 10px;
    font-size: 1rem;
    color: #666;
    text-align: center;
}

.contact-footer-link {
    color: #666;
    margin: 0 10px;
}

.text-gold { color: var(--mitsu-gold); }
.text-dark { color: var(--dark-grey); }
.font-bold { font-weight: 600; }
