.contact__hero {
            background: #000000;
            min-height: 100vh;
            padding: 115px 0 64px 0;
            position: relative;
        }
        
        .contact__container {
            max-width: 1120px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .contact__title {
            font-family: "Exo 2", sans-serif;
            font-weight: 700;
            font-size: 64px;
            line-height: 64px;
            color: hsl(var(--heading-color));
            text-align: center;
            text-transform: uppercase;
            letter-spacing: -3px;
            margin-bottom: 100px;
            position: relative;
            z-index: 2;
        }
        
        .contact__content {
            display: flex;
            flex-direction: row;
            align-items: flex-start;
            gap: 40px;
        }
        
        .contact__left {
            flex: 0 0 0px;
            display: flex;
            justify-content: center;
            align-items: flex-start;
            padding-top: 200px;
        }
        
        .contact__image {
            width: 525px;
            height: 427px;
            object-fit: contain;
            display: block;
        }
        
        .contact__right {
            flex: 1;
            max-width: 578px;
            padding: 0;
            text-align: left;
        }
        
        .contact__text {
            font-family: "Exo 2", sans-serif;
            font-size: 18px;
            line-height: 36px;
            color: hsl(var(--body-color));
            margin-bottom: 16px;
        }
        
        .contact__text strong {
            font-weight: 700;
            color: #22a6ae;
        }
        
        .contact__subtitle {
            font-family: "Exo 2", sans-serif;
            font-weight: 700;
            font-size: 16px;
            line-height: 32px;
            color: hsl(var(--body-color));
            margin: 16px 0;
        }
        
        .contact__steps {
            margin: 16px 0;
            padding-left: 40px;
        }
        
        .contact__step {
            font-family: "Exo 2", sans-serif;
            font-size: 16px;
            line-height: 32px;
            color: hsl(var(--body-color));
            margin-bottom: 16px;
            position: relative;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }
        
        .contact__step::before {
            content: counter(step-counter) ".";
            counter-increment: step-counter;
            position: absolute;
            left: -24px;
            top: 0;
            font-weight: 400;
            color: hsl(var(--body-color));
        }
        
        .contact__steps {
            counter-reset: step-counter;
        }
        
        .contact__link {
            color: hsl(var(--base));
            text-decoration: none;
            font-weight: 700;
            word-break: break-all;
            overflow-wrap: break-word;
        }
        
        .contact__link:hover {
            color: hsl(var(--base-d-200));
            text-decoration: underline;
        }
        
        .contact__email {
            color: hsl(var(--base));
            font-weight: 700;
            text-decoration: none;
        }
        
        .contact__email:hover {
            color: hsl(var(--base-d-200));
            text-decoration: underline;
        }
        
        .contact__section {
            margin: 16px 0;
        }
        
        .contact__section strong {
            color: #22a6ae;
            font-weight: 700;
        }
        
        .contact__text strong {
            color: #ffffff;
            font-weight: 700;
        }
        
        @media (max-width: 855px) {
            .contact__content {
                flex-direction: column;
                align-items: center;
            }
            
            .contact__left {
                padding-top: 0;
                margin-bottom: 40px;
            }
            
            .contact__image {
                width: 100%;
                max-width: 525px;
                height: auto;
            }
            
            .contact__right {
                text-align: left;
                max-width: 100%;
            }
        }
        
        @media (max-width: 1200px) and (min-width: 856px) {
            .contact__left {
                flex: 0 0 0px;
            }
            
            .contact__image {
                width: 400px;
                height: auto;
            }
            
            .contact__right {
                flex: 1;
            }

        }
        
        @media (max-width: 768px) {
            .contact__title {
                font-size: 48px;
                line-height: 48px;
            }
            
            .contact__steps {
                padding-left: 20px;
            }
            
            .contact__step {
                padding-left: 8px;
                font-size: 15px;
                line-height: 28px;
            }
            
            .contact__step::before {
                left: -20px;
            }
        }