:root {
            --color-gold: #b78d4b;
            --color-dark-blue: #053047;
            --color-bright-blue: #016696;
            --color-off-white: #EDEDED;
            --color-white: #FFFFFF;
            --color-shadow: #161616;
            --color-gray: #ccc;
            --font-serif: 'Playfair Display', serif;
            --font-sans: 'Montserrat', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            font-family: var(--font-sans);
            background-color: #f0f0f0;
            display: flex;
            justify-content: center;
            min-height: 100vh;
            padding-top: 96px;
            padding-bottom: 0px;
        }
        .mobile-container {
            width: 100%;
            max-width: 480px;
            background-color: #EDEDED;
            box-shadow: 0 0 20px rgba(0,0,0,0.1);
            display: flex;
            flex-direction: column;
            position: relative;
        }
        .top-bar {
            position: fixed;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            max-width: 480px;
            background-color: var(--color-gold);
            color: #053047;
            text-align: center;
            height: 38px;
            line-height: 38px;
            font-size: 18px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            z-index: 100;
            font-family: 'Vollkorn', serif;
            cursor: pointer;
        }
        .header {
            position: fixed;
            top: 38px;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            max-width: 480px;
            background-color: var(--color-off-white);
            padding: 5px 5px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #e0e0e0;
            z-index: 100;
        }
        .logo-container {
            display: flex;
            align-items: center;
            flex: 1;
        }
        .logo-icon {
            width: 40px;
            height: 52px;
            margin-right: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .logo-icon img {
            width: 40px;
            height: auto;
            object-fit: contain;
        }
        .logo-text { display: flex; flex-direction: column; }
        .logo-title {
            font-family: var(--font-serif);
            color: var(--color-dark-blue);
            font-size: 18px;
            line-height: 1.1;
            font-weight: 700;
            padding: 0px 0px;
        }

        .header-actions {
            display: flex;
            gap: 10px;
            margin-left: 1px;
            position: relative;
        }
        .icon-btn {
            width: 46px;
            height: 46px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--color-white);
            border: 1px solid var(--color-gold);
            color: var(--color-bright-blue);
            font-size: 26px;
            cursor: pointer;
            transition: all 0.2s;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            position: relative;
        }
        .icon-btn:active {
            background-color: var(--color-gold);
            color: var(--color-white);
        }
        .fab-container {
            position: absolute;
            top: 100%;
            right: 50%;
            transform: translateX(50%);
            margin-top: 40px;
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            flex-direction: row;
            visibility: hidden;
            z-index: 1000;
            width: auto;
            justify-content: center;
        }
        .fab-container.active {
            visibility: visible;
        }
        .fab-item {
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: transform 0.2s;
            text-decoration: none;
            opacity: 0;
            transform: translateY(10px);
        }
        .fab-container.active .fab-item {
            animation: fadeSlideIn 0.2s ease-out forwards;
        }
        .fab-container.active .fab-item:nth-child(1) {
            animation-delay: 0ms;
            margin-right: 0px;
        }
        .fab-container.active .fab-item:nth-child(2) {
            animation-delay: 40ms;
        }
        .fab-container.active .fab-item:nth-child(3) {
            animation-delay: 80ms;
        }
        .fab-container.active .fab-item:nth-child(4) {
            animation-delay: 120ms;
        }
        @keyframes fadeSlideIn {
            0% {
                opacity: 0;
                transform: translateY(10px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }
        @keyframes phoneWiggle {
            0%, 100% {
                transform: rotate(0deg);
            }
            50% {
                transform: rotate(7deg);
            }
        }
        .fab-item:hover {
            transform: scale(1.15);
        }
        .fab-container.active .fab-item:hover {
            transform: scale(1.15);
        }
        .fab-item.fab-phone {
            width: 80px;
            height: 80px;
            background-color: #b78d4b;
            border: 1px solid var(--color-white);
            border-radius: 50%;
            filter: drop-shadow(0 4px 8px #ffff);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .fab-item.fab-phone i {
            font-size: 40px;
            color: var(--color-white);
            filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 1));
            animation: phoneWiggle 1s ease-in-out infinite;
        }
        .fab-item.fab-messenger {
            width: 60px;
            height: 60px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            flex-direction: column;
            position: relative;
        }
        .fab-item.fab-messenger img {
            width: 60px;
            height: 60px;
            object-fit: contain;
            filter: drop-shadow(0 1px 15px rgba(1, 1, 1, 1));
            margin-top: 60px;
        }
        .fab-item img {
            filter: drop-shadow(0 1px 15px rgba(1, 1, 1, 1));
        }
        .fab-item i {
            font-size: 40px;
            color: var(--color-bright-blue);
            filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 1));
        }
        .menu-dropdown {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: linear-gradient(to right, 
                #053047 0%,
                #1a5f7a 33%,
                #337a99 66%,
                #6b99b8 100%);
            
            display: none;
            flex-direction: column;
            align-items: flex-start;
            justify-content: flex-start;
            z-index: 999;
            padding: 20px 15px;
            overflow: hidden;
        }
        .menu-dropdown.active {
            display: flex;
            animation: menuFadeIn 300ms ease-in-out forwards;
        }

        @keyframes menuFadeIn {
            0% {
                opacity: 0;
            }
            100% {
                opacity: 1;
            }
        }

        .menu-close-btn {
            align-self: flex-end;
            background-color: #b78d4b;
            border: 2px solid #ffffff;
            color: #ffffff;
            font-size: 24px;
            width: 46px;
            height: 46px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            border-radius: 4px;
            transition: all 0.2s;
            margin-right: 15px;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
            box-shadow: 0 4px 8px rgba(252, 252, 252, 0.6); 
        }
        .menu-close-btn:hover {
            background-color: var(--color-gold);
            color: var(--color-white);
        }
        .menu-links {
            display: flex;
            flex-direction: column;
            gap: 0;
            width: 100%;
            margin-left: 40px;
            flex: 1;
             overflow-y: visible;
            position: relative;
            z-index: 1;
        }
        .menu-dropdown a {
            padding: 10px 0;
            color: var(--color-white);
            border-bottom: 3px solid #b78d4b;
            text-decoration: none;
            text-align: left;
            transition: filter 200ms linear 0s;
            font-size: 18px;
            font-family: 'Vollkorn', serif;
            font-weight: 400;
        }
        .menu-dropdown a:last-of-type {
            border-bottom: none;
        }
        .menu-dropdown a:hover {
            filter: brightness(80%);
            background-color: rgba(183, 141, 75, 0.2);
        }
        .menu-languages {
            display: flex;
            gap: 30px;
            justify-content: flex-start;
            flex-wrap: wrap;
            width: 100%;
            padding: 0;
            border: none;
            margin-top: auto;
            margin-bottom: 70px;
            margin-left: 40px;
            position: relative;
            z-index: 1;
        }
        .menu-languages a {
         
          border-radius: 3px;
            background-color: #b78d4b;
            font-size: 18px;
            font-weight: 600;
            color: #ffffff;
            text-decoration: none;
            width: 45px;
            text-align: center;
            flex: 0 0 45px;
            padding: 8px 0; 
            box-shadow: 0 4px 8px rgba(252, 252, 252, 0.6); 
        }
        .menu-languages a:hover {
            background-color: var(--color-gold);
            color: var(--color-white);
            filter: none;
            
        }
        .hero {
            position: relative;
            background-image: url('per_mob.webp');
            background-size: 100vw auto;
            background-position: center;
            background-repeat: no-repeat;
            display: flex;
            flex-direction: column;
            overflow: hidden;
            min-height: 450px;
        }
        .hero-overlay {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(to bottom, 
                rgba(5, 48, 71, 0.95) 0%,
                rgba(5, 48, 71, 0.5) 50%,
                rgba(5, 48, 71, 0.05) 100%);
            z-index: 1;
        }
        .hero-content {
            position: relative;
            z-index: 2;
            padding: 0;
            text-align: center;
            color: var(--color-white);
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        .hero-title {
            font-family: 'Vollkorn', serif;
            font-size: 20px;
            font-weight: 400;
            line-height: 1.2;
            text-shadow: 1px 1px 2px var(--color-shadow);
            margin-top: 25px;
            padding: 0 5px;
            width: 100%;
        }
        .hero-title-asq{
            font-family: 'Vollkorn', serif;
            list-style-type: disc; 
            padding-left: 0px; 
            margin: -10px 0 0 0; 
            text-align: center;
            color: #f0f0f0;
            text-shadow: 3px 4px 2px var(--color-shadow);
            font-weight: 400;
            width: 100%;
            padding-right: 8px;
            padding-left: 8px;
        }
        .hero-title-asq li { 
            margin-bottom: 0px;
            list-style: none;
        }
        .hero-title-asq li:nth-child(2) {
            font-size: 18px;
            margin-bottom: 10px;
        }
        .hero-title-asq li:nth-child(3) {
            font-size: 18px;
        }
        .hero-title-asq li:nth-child(4) {
            font-size: 24px;
        }
        .hero-title-asq::before {
            content: '';
            display: block;
        }
        .hero-title-asq li::marker {
            font-size: 0.5em;
        }

        .hero-question {
            font-family: 'Vollkorn';
            font-size: 18px;
            line-height: 1.4;
            font-weight: 400;
            padding: 0 10px;
            width: 100%;
            margin-top: auto;
            margin-bottom: 10px;
            text-shadow: 1px 1px 2px var(--color-shadow);
            text-align: justify;
        }

        .questions-section {
            background-color: #EDEDED;
            padding: 10px;
            font-family: 'Vollkorn', serif;
        }
        .questions-list {
            list-style: none;
            padding: 0;
            margin: 0;
            margin-bottom: 40px;
            text-align: justify;
        }
        .questions-list li {
            color: #000000;
            margin-bottom: 10px;
            line-height: 1.4;
        }
        .questions-list li:nth-child(1) {
            font-size: 18px;
        }
        .questions-list li:nth-child(1) p {
            margin: 0 0 10px 0;
            width: 100%;
        }
        .questions-list li:nth-child(1) p:nth-child(2) {
            text-indent: 20px;
        }
        .questions-list li:nth-child(1) p:nth-child(3) {
            text-indent: 20px;
        }
        .questions-list li:nth-child(2) {
            font-size: 18px;
        }
        .questions-list li:last-child {
            margin-bottom: 0;
        }
        .questions-intro {
            font-family: var(--font-sans);
            font-size: 19px;
            color: #000000;
            margin-top: 0;
            margin-bottom: 0px;
            line-height: 1.4;
            padding: 0 10px;
            font-weight: 700;
        }
        .questions-divider {
            width: 300px;
            height: 3px;
            background-color: #b78d4b;
            margin: 0 auto 40px auto;
            border: none;
        }

       .hero-question-citi {
            font-family: 'Vollkorn';
            font-size: 18px;
            line-height: 1.4;
            font-weight: 400;
            padding: 0px 10px;
            width: 100%;
            margin-top: auto;
            margin-bottom: 10px;
            text-shadow: 2px 2px 2px var(--color-shadow);
            text-align: justify;
        }

.next-steps {
  background-color: #EDEDED;
  padding: 0 20px 20px 20px;
  font-family: 'Vollkorn', serif;
  color: #f0f0f0;
  font-size: 20px;
  font-weight: 400;
  text-shadow: 1px 1px 2px var(--color-shadow);
}

.next-steps h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 5px;
  text-align: center;
}

.next-steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 10px;
}

.section-title-appeals {
    font-family: var(--font-sans);
    font-size: 19px;
    color: #000000;
    margin-top: 0;
    margin-bottom: 10px;
    line-height: 1.4;
    padding: 0 10px;
    font-weight: 700;
    text-align: center;
}

.section-title-appeals-1 {
    font-family: var(--font-sans);
    font-size: 19px; 
    color: #000000;
    margin-top: 15px;
    margin-bottom: 10px;
    line-height: 1.4;
    padding: 0 10px;
    font-weight: 700;
    text-align: center;
}

.next-steps-grid-appeals {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 10px;
}

.next-steps-step {
  display: flex;
  width: 100%;
  justify-content: center;
}

.next-steps-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3px 5px;
  background-color: #b78d4b;
  border: 1px solid #b78d4b;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15), 0 4px 12px rgba(0,0,0,0.12);
  width: 100%;
}

.next-steps-item:hover {
  background-color: #a67a3d;
  border-color: #a67a3d;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2), 0 12px 24px rgba(0,0,0,0.18);
  transform: translateY(-2px);
}

.next-steps-item-text {
  font-family: 'Vollkorn', serif;
  font-size: 18px;
  font-weight: 400;
  color: #053047;
  text-align: left;
  flex: 1;
  text-shadow: 1px 1px #0530473d;
}

.next-steps-item.no-link {
  cursor: default;
}

.next-steps-item.no-link:hover {
  background-color: #b78d4b;
  border-color: #b78d4b;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15), 0 4px 12px rgba(0,0,0,0.12);
  transform: none;
}

.next-steps .highlight {
  color: #b78d4b;
  font-weight: 700;
  font-size: 16px;
}

.mess-intro {
  font-family: 'Vollkorn', serif;
  font-size: 19px;
  color: #000000;
  margin-top: 0;
  margin-bottom: 20px;
  line-height: 1.4;
  padding: 0 10px;
  font-weight: 700;
  background-color: #EDEDED;
  text-align: center;
}

.next-steps-after {
  background: linear-gradient(to bottom, rgba(5, 48, 71, 0.95) 20%, rgba(5, 48, 71, 0.75) 70%, rgba(5, 48, 71, 0.5) 100%);
  padding: 20px 10px;
  font-family: 'Vollkorn', serif;
  color: #ffffff;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 1);
}

.next-steps-after-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
  line-height: 1.3;
  color: var(--color-white);
  text-shadow: 1px 1px 2px var(--color-shadow);
}

.next-steps-after-subtitle {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 25px;
  text-align: left;
  line-height: 1.3;
  color: var(--color-white);
  text-shadow: 1px 1px 2px var(--color-shadow);
}

.next-steps-after-list {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.next-steps-after-list div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.next-steps-after-list div img {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 2px;
}


        .contacts-header {
            background-color: #EDEDED;
            padding: 20px 10px;
            text-align: center;
        }
        .contacts-header h2 {
            font-family: 'Vollkorn', serif;
            font-size: 20px;
            font-weight: 700;
            color: #000000;
            margin: 0;
        }

        .contacts {
            position: relative;
            overflow: hidden;
            background-image: url('contact_mob.webp');
            background-repeat: no-repeat;
            background-position: center top;
            background-size: 100% auto;
        }

        .contacts-bg {
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, 
                rgba(5, 48, 71, 0.95) 0%,
                rgba(5, 48, 71, 0.75) 50%,
                rgba(5, 48, 71, 0.2) 100%);
            opacity: 0.8;
            z-index: 0;
        }

        .contacts::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            width: 100%;
            height: 300px;
            background-color: rgba(255, 255, 255, 0);
            z-index: 1;
        }
        .contacts-wrapper {
            position: relative;
            z-index: 1;
        }

        .contacts-left {
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .contact-guarantee {
            font-family: 'Vollkorn', serif;
            font-size: 18px;
            font-weight: 400;
            line-height: 1.3;
            text-shadow: 1px 1px 2px var(--color-shadow);
            color: var(--color-white);
            text-align: center;
            background-color: transparent;
            padding: 10px 5px 0px 5px;
            border-radius: 0;
            margin-bottom: 10px;
            margin-left: 0px;
            margin-right: 0px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 24px;
            color: #000000;
            margin-bottom: 12px;
            padding-bottom: 10px;
            cursor: pointer;
            
        }
        .contact-item:last-of-type {
            margin-bottom: 0;
        }

        @keyframes ring {
            0% {
                box-shadow: 0 0 0 0 rgba(183, 141, 75, 0.7);
            }
            50% {
                box-shadow: 0 0 0 10px rgba(183, 141, 75, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(183, 141, 75, 0);
            }
        }
        .contact-item i.fa-phone {
            width: 42px;
            height: 42px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #b78d4b;
            border: 1px solid #ffffff;
            border-radius: 50%;
            color: var(--color-white);
            font-size: 20px;
            text-shadow: none;
            flex-shrink: 0;
            margin-left: 10px;
            animation: ring 2s infinite;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            
        }
        .contact-item img {
            width: 42px;
            height: 42px;
            object-fit: contain;
            flex-shrink: 0;
            cursor: pointer;
        }
        .contact-item i:not(.fa-phone) {
            width: 24px;
            text-align: center;
            color: var(--color-dark-blue);
            font-size: 18px;
            text-shadow: 1px 1px 0px var(--color-gold);
        }
        .contact-item a {
            color: var(--color-white);
            text-decoration: none;
            text-shadow: 2px 2px 2px #000000;
            font-weight: 700;
            transition: all 0.3s;
            display: inline-block;
             letter-spacing: 2px; 
        }
        .contact-item a:hover {
            color: var(--color-gold);
            transform: translateY(-2px);
        }
        .contact-item-messenger {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 16px;
            color: #000000;
            margin-bottom: 12px;
            flex-wrap: wrap;
            position: relative;
        }
        .messenger-icon {
            width: 52px;
            height: 52px;
            object-fit: contain;
            flex-shrink: 0;
            padding-left: 10px;
            cursor: pointer;
        }
        .messenger-icon:first-child {
            padding-left: 10px;
        }
        .contact-item-messenger a {
            color: var(--color-white);
            text-decoration: none;
            text-shadow: 2px 2px 2px #000000;
            font-weight: 700;
            transition: all 0.3s;
            display: inline-block;
            width: 100%;
            padding-left: 10px;
            cursor: pointer;
        }
        .contact-item-messenger a:hover {
            color: var(--color-gold);
            transform: translateY(-2px);
        }
        .contact-form {
            margin-top: 0;
            margin-bottom: 0px;
            padding: 15px;
            background-color: transparent;
            border: none;
        }
        .contact-form p {
            font-family: 'Vollkorn', serif;
            font-size: 16px;
            font-weight: 400;
            margin-bottom: 10px;
            color: var(--color-white);
            text-shadow: 1px 1px 2px var(--color-shadow);
        }
        .contact-form input {
            width: 100%;
            padding: 10px;
            font-size: 14px;
            border: 1px solid #ccc;
            margin-bottom: 10px;
            font-family: var(--font-sans);
            background-color: rgba(255, 255, 255, 0.6);
            color: #333;
        }
        .contact-form input::placeholder {
            color: #555;
        }
        .contact-form button {
            width: 100%;
            padding: 10px;
            background-color: var(--color-gold);
            color: #053047;
            border: none;
            font-size: 14px;
            font-weight: 700;
            cursor: pointer;
            text-transform: uppercase;
            transition: background 0.3s;
        }
        .contact-form button:hover {
            background-color: var(--color-bright-blue);
        }
        .contact-address {
            font-family: 'Vollkorn', serif;
            font-size: 16px;
            font-weight: 700;
            line-height: 1.2;
            color: var(--color-white);
            text-align: center;
            text-shadow: 1px 1px 2px #000000;
            background-color: transparent;
            padding: 0px 5px 15px 5px;
            border-radius: 0;
            margin-bottom: 0;
            margin-left: 0px;
            margin-right: 0px;
        }
        .contact-address i {
            color: var(--color-white);
            margin-right: 8px;
            font-size: 16px;
            text-shadow: -1px -1px 0px #000000, 1px -1px 0px #000000, -1px 1px 0px #000000, 1px 1px 0px #000000;
        }
        .visit-section {
            background-color: var(--color-white);
            padding: 5px;
            font-family: var(--font-sans);
            color: #000000;
        }
        .visit-title {
            text-align: center;
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 15px;
            color: #000000;
        }
        .contact-map {
            width: 100%;
            height: 250px;
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
            background-color: #f0f0f0;
            -webkit-mask-image: -webkit-radial-gradient(white, black);
        }
        .contact-map iframe {
            width: 100%;
            height: 100%;
            border: none;
            display: block;
            -webkit-transform: translateZ(0);
        }

        .footer {
            background-color: var(--color-dark-blue);
            color: var(--color-white);
            text-align: center;
            padding: 15px 20px;
            font-size: 12px;
            line-height: 1.6;
            margin-bottom: 60px;
        }
        .footer a {
            color: var(--color-gold);
            text-decoration: none;
        }
        .footer a:hover {
            text-decoration: underline;
        }

        .bottom-nav {
            position: fixed;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            max-width: 480px;
            display: flex;
            background-color: var(--color-dark-blue);
            z-index: 100;
        }
        .nav-btn {
            flex: 1;
            padding: 10px 5px;
            background-color: var(--color-dark-blue);
            border: none;
            text-align: center;
            text-decoration: none;
            text-transform: uppercase;
            font-weight: 700;
            font-size: 15px;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 5px;
            transition: background 0.3s;
            font-family: var(--font-serif);
            will-change: transform;
            height: 60px;
        }
        .nav-btn:hover { background-color: #01527a; }
        .nav-btn-main {
            background: linear-gradient(90deg, 
                #b78d4b 0%, 
                #d4a574 25%,
                #b78d4b 50%,
                #d4a574 75%,
                #b78d4b 100%);
            background-size: 200% 100%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientFlow 1s linear infinite;
            display: block;
        }
        @keyframes gradientFlow {
            0% {
                background-position: 0% center;
            }
            50% {
                background-position: 100% center;
            }
            100% {
                background-position: 0% center;
            }
        }
        .nav-btn-main sup {
            font-size: 0.7em;
            vertical-align: super;
        }
        .nav-btn-note {
            font-size: 12px;
            color: #b78d4b;
            font-weight: 600;
            font-family: 'Montserrat', sans-serif;
        }

    .mobile-container-temp {
    width: 100%;
    max-width: 480px;
    background-color: var(--color-white);
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    position: relative;
}

.hero-temp {
    position: relative;
    background-image: url('temp_mob.webp');
    background-size: 100vw auto;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 450px;
}

.hero-title-asq-temp {
    font-family: 'Vollkorn', serif;
    list-style-type: disc; 
    padding-left: 0px; 
    margin: -10px 0 0 0; 
    text-align: center;
    color: #f0f0f0;
    text-shadow: 1px 1px 2px var(--color-shadow);
    font-weight: 400;
    width: 100%;
    padding-right: 8px;
    padding-left: 8px;
}

.hero-title-asq-temp li { 
    margin-bottom: 15px;
    list-style: none;
}

.hero-title-asq-temp li:nth-child(2) {
    font-size: 17px;
}

.hero-title-asq-temp li:nth-child(3) {
    font-size: 22px;
}

.hero-title-asq-temp li:nth-child(4) {
    font-size: 18px;
}

.hero-question-temp {
    font-family: var(--font-sans);
    font-size: 18px;
    line-height: 1.4;
    font-weight: 400;
    padding: 0 20px;
    width: 100%;
    margin-top: auto;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px var(--color-shadow);
}

.questions-section-temp {
    background-color: #EDEDED;
    padding: 20px 10px 0 10px;
    font-family: 'Vollkorn', serif;
}

.questions-list-temp {
    list-style-type: disc;
    padding-left: 20px;
    margin: 0;
    margin-bottom: 40px;
}

.questions-list-temp li {
    font-size: 18px;
    color: #000000;
    margin-bottom: 10px;
    line-height: 1.4;
}

.questions-list-temp li:last-child {
    margin-bottom: 0;
}

.questions-intro-temp {
    font-family: var(--font-sans);
    font-size: 19px;
    color: #000000;
    margin-top: 0;
    margin-bottom: 10px;
    line-height: 1.4;
    padding: 0 10px;
    font-weight: 700;
}

.next-steps-temp {
    background-color: #EDEDED;
    padding: 0 0 40px 0;
    font-family: 'Vollkorn', serif;
    color: #f0f0f0;
    font-size: 16px;
    font-weight: 400;
    text-shadow: 1px 1px 2px var(--color-shadow);
}

.next-steps-grid-temp {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
    padding: 0 10px;
    align-items: center;
}

.next-steps-row {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.next-steps-row.space-between {
    justify-content: space-between;
}

.next-steps-row.left {
    justify-content: flex-start;
}

.next-steps-item-temp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 3px 5px;
    background-color: #b78d4b;
    border: 1px solid #b78d4b;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15), 0 4px 12px rgba(0,0,0,0.12);
}

.next-steps-item-temp:hover {
    background-color: #a67a3d;
    border-color: #a67a3d;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2), 0 12px 24px rgba(0,0,0,0.18);
    transform: translateY(-2px);
}

.next-steps-item-text-temp {
    font-family: 'Vollkorn', serif;
    font-size: 18px;
    font-weight: 400;
    color: #161616;
    text-align: center;
    text-shadow: 1px 1px #0530473d;
    white-space: normal;
    line-height: 1.3;
    padding: 0px;
}

.next-steps-item-temp.no-link {
    cursor: default;
}

.next-steps-item-temp.no-link:hover {
    background-color: #b78d4b;
    border-color: #b78d4b;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15), 0 4px 12px rgba(0,0,0,0.12);
    transform: none;
}

.logo-ampersand { 
    color: var(--color-gold); 
    font-style: italic; 
}

.logo-subtitle {
    font-family: var(--font-sans);
    color: var(--color-gold);
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
    font-weight: 600;
}

.hero-desc {
    font-family: var(--font-sans);
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 0px;
    font-weight: 400;
    padding: 0 20px;
    width: 100%;
}

.next-steps-index {
  background-color: #fafafa;
  padding: 0 20px 20px 20px;
  font-family: 'Vollkorn', serif;
  color: #f0f0f0;
  font-size: 20px;
  font-weight: 400;
  text-shadow: 1px 1px 2px var(--color-shadow);
}

.nav-btn-index {
            flex: 1;
            padding: 10px 5px;
            background-color: var(--color-dark-blue);
            border: none;
            text-align: center;
            text-decoration: none;
            text-transform: uppercase;
            font-weight: 700;
            font-size: 14px;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 5px;
            transition: background 0.3s;
            font-family: var(--font-serif);
            will-change: transform;
            height: 60px;
        }

.nav-btn-main-index {
            background: linear-gradient(90deg, 
                #b78d4b 0%, 
                #d4a574 25%,
                #b78d4b 50%,
                #d4a574 75%,
                #b78d4b 100%);
            background-size: 200% 100%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientFlow 1s ease-in-out infinite;
            display: block;
        }

.hero-index {
    position: relative;
    background-image: url('wroclaw_mob.webp');
    background-size: 100vw auto;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 450px;
}

.hero-content-index {
    position: relative;
    z-index: 2;
    padding: 0;
    text-align: center;
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    height: 100%;
}


.hero-title-asq-index{
            font-family: 'Vollkorn', serif;
            list-style-type: disc; 
            font-size: 20px;
            padding-left: 0px; 
            margin: -10px 0 0 0; 
            text-align: center;
            color: #f0f0f0;
            text-shadow: 1px 1px 2px var(--color-shadow);
            font-weight: 400;
            width: 100%;
        }

.hero-title-asq li-index { 
            margin-bottom: 5px;
            list-style: none;
        }

.questions-list li:nth-child(1) p:not(:first-child) {
    text-indent: 20px;
}

 
.hero-EU {
    position: relative;
    background-image: url('EU.webp');
    background-size: 100vw auto;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 450px;
}
 
.questions-divider-EU {
    width: 300px;
    height: 3px;
    background-color: #b78d4b;
    margin: 0 auto 20px auto;
    border: none;
}
 
.next-steps-after-EU {
    background: linear-gradient(to bottom, rgba(5, 48, 71, 0.95) 20%, rgba(5, 48, 71, 0.75) 70%, rgba(5, 48, 71, 0.5) 100%);
    padding: 20px 10px;
    font-family: 'Vollkorn', serif;
    color: #ffffff;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 1);
    margin-top: 20px;
}

        .hero-citi {
            position: relative;
            background-image: url('city_mob.webp');
            background-size: 100vw auto;
            background-position: center;
            background-repeat: no-repeat;
            display: flex;
            flex-direction: column;
            overflow: hidden;
            min-height: 450px;
        }

        .questions-list li:nth-child(1) p:nth-child(4) {
    text-indent: 20px;
}
.hero-appeals {
    position: relative;
    background-image: url('appil_mob.webp');
    background-size: 100vw auto;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 450px;
}

.hero-title-asq-appeals {
    font-family: 'Vollkorn', serif;
    list-style-type: disc; 
    padding-left: 0px; 
    margin: 25px 0 0 0;
    text-align: center;
    color: #f0f0f0;
    text-shadow: 3px 4px 2px var(--color-shadow);
    font-weight: 400;
    width: 100%;
    padding-right: 8px;
    padding-left: 8px;
}

.hero-title-asq-appeals li {
    margin-bottom: 0px;
    list-style: none;
}

.hero-title-asq-appeals li:nth-child(1) {
    font-size: 18px;
    margin-bottom: 10px;
}

.hero-title-asq-appeals li:nth-child(2) {
    font-size: 18px;
}

.hero-title-asq-appeals li:nth-child(3) {
    font-size: 22px;
    margin-top: 20px;
}

.hero-title-asq-appeals li::marker {
    font-size: 0.5em;
}


.section-title {
    font-family: var(--font-sans);
    font-size: 19px;
    color: #000000;
    margin-top: 0;
    margin-bottom: 10px;
    line-height: 1.4;
    padding: 0 10px;
    font-weight: 700;
    text-align: center;
}

.questions-intro-appeals {
    font-family: var(--font-sans);
    font-size: 19px;
    color: #000000;
    line-height: 1.4;
    padding: 0 10px;
    font-weight: 700;
    text-align: center;
}

.questions-list li:nth-child(1) p-appeals {
    margin: 0 0 10px 0;
    width: 100%;
    text-indent: 20px;
}

.questions-divider-1 {
    width: 300px;
    border: none;
    border-top: 3px solid #b78d4b;
    margin: 0 auto 20px auto;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.questions-divider-2 {
    width: 300px;
    border: none;
    border-top: 3px solid #b78d4b;
    margin: 0 auto 20px auto;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.questions-divider-info {
    width: 300px;
    border: none;
    border-top: 3px solid #b78d4b;
    margin: 0 auto 20px auto;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    text-align: center;
}

.next-steps-appeals {
  background-color: #EDEDED;
  padding: 0 20px 30px 20px;
  font-family: 'Vollkorn', serif;
  color: #f0f0f0;
  font-size: 20px;
  font-weight: 400;
  text-shadow: 1px 1px 2px var(--color-shadow);
}

.consultation-info {
  background-color: #b78d4b;
  padding: 15px 10px;
  font-family: 'Vollkorn', serif;
  text-indent: 20px;
  border: 3px solid #ffffff;
}

.consultation-info p {
  color: #000000;
  margin: 0;
  font-size: 17px;
  line-height: 1.4;
  text-align: justify;
}

.consultation-info + .section-title {
    margin-top: 40px;
}

.additional-info {
  background-color: #EDEDED;
  padding: 0px 15px 10px 15px;
  font-family: 'Vollkorn', serif;
}

.additional-info p {
  color: #000000;
  margin: 0 0 10px 0;
  width: 100%;
  text-indent: 20px;
  font-size: 18px;
  line-height: 1.4;
  text-align: justify;
}

.additional-info p span {
  font-size: 19px;
  text-align: center;
}

.additional-info p:has(span) {
    text-indent: 0;
    text-align: center;
    font-weight: bold;
}

.next-steps-after-appeals {
  background: linear-gradient(to bottom, rgba(5, 48, 71, 0.95) 20%, rgba(5, 48, 71, 0.75) 70%, rgba(5, 48, 71, 0.5) 100%);
  padding: 20px 10px;
  font-family: 'Vollkorn', serif;
  color: #ffffff;
}

.next-steps-after-title-appeals {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
  line-height: 1.3;
  color: var(--color-white);
  text-shadow: 1px 1px 2px var(--color-shadow);
}

.next-steps-after-list-appeals {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
  text-align: justify;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.next-steps-after-list-appeals div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.next-steps-after-list-appeals div img {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 2px;
}

.next-steps-after-appeals p {
  margin-top: 15px;
  font-size: 24px;
  font-weight: 400;
  text-align: center;
  color: var(--color-white);
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 1);
}