.custom-select-wrapper {
    position: relative;
}

.custom-select-wrapper .checkmark {
    position: absolute !important;
    right: 40px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    color: #00B050 !important;
    font-size: 16px !important;
    font-weight: bold !important;
    pointer-events: none !important;
    display: none !important;
    z-index: 10 !important;
}

.custom-select-wrapper.has-value .checkmark {
    display: block !important;
}

.custom-select {
    position: relative;
    width: 100%;
}

.custom-select-trigger {
    padding: 4px 40px 4px 16px;
    border: 2px solid #999;
    border-radius: 28px;
    background: #FFFFFF;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 18px;
    color: #0d0d0d;
    cursor: pointer;
    transition: border-color 0.3s;
    position: relative;
}

.custom-select-trigger::after {
    content: '▼';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 10px;
    pointer-events: none;
    transition: transform 0.3s;
}

.custom-select.open .custom-select-trigger {
    border-color: #0071D1;
}

.custom-select.open .custom-select-trigger::after {
    transform: translateY(-50%) rotate(180deg);
}

.custom-options {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #FFFFFF;
    border: 2px solid #0071D1;
    border-radius: 20px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.custom-select.open .custom-options {
    display: block;
}

.custom-option {
    padding: 12px 16px;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 18px;
    color: #333;
    cursor: pointer;
    transition: color 0.2s;
}

.custom-option:first-child {
    color: #999;
}

.custom-option:hover {
    color: #0071D1;
    background: transparent;
}

.custom-option.selected {
    color: #0071D1;
}.secondary-nav .container-wide {
    padding: 0 320px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #222222;
    background-color: #FFFFFF;
}

.container-wide {
    max-width: 1920px;
    margin: 0 auto;
}

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

.secondary-nav {
    background-color: #00529B;
    padding: 0;
}

.desktop-nav {
    display: flex !important;
}

.mobile-nav {
    display: none !important;
}

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

.tab-menu {
    display: flex;
    gap: 12px;
}

.tab-link {
    padding: 8px 20px;
    border-radius: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
}

.tab-link.active {
    background: #FFFFFF;
    color: #00529B;
    border-bottom: 3px solid #FFFFFF;
}

.secondary-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.claro-link {
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.travel-link {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 600;
}

.travel-link img {
    width: 20px;
    height: 20px;
}

.search-small {
    position: relative;
    background: #FFFFFF;
    border-radius: 20px;
    display: flex;
    align-items: center;
    width: 180px;
}

.search-small input {
    width: 100%;
    padding: 6px 40px 6px 16px;
    border: none;
    border-radius: 20px;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 13px;
    color: #666;
    outline: none;
}

.search-small button {
    position: absolute;
    right: 6px;
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
}

.search-small button img {
    width: 18px;
    height: 18px;
}

.top-nav {
    background-color: #FFFFFF;
    border-bottom: 1px solid #E0E0E0;
    padding: 12px 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-content {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 0 320px;
}

.menu-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    color: #666;
    font-size: 20px;
    font-weight: 600;
}

.menu-toggle .arrow {
    font-size: 12px;
    color: #999;
}

.logo img {
    width: 77px;
    height: 24px;
}

.main-links {
    display: flex;
    gap: 0;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    text-decoration: none;
    color: #0071D1;
    font-size: 16px;
    font-weight: 600;
    border-right: 1px solid #E0E0E0;
    white-space: nowrap;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #00529B;
}

.nav-link:last-of-type {
    border-right: none;
}

.nav-link img {
    width: 20px;
    height: 20px;
}

.nav-link-highlight {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    text-decoration: none;
    color: #222;
    font-size: 16px;
    font-weight: 600;
}

.nav-link-highlight img {
    width: 24px;
    height: 24px;
}

.breadcrumb {
    padding: 16px 0 16px 320px;
}

.breadcrumb .container {
    padding: 0;
    max-width: none;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
    font-weight: 400;
}

.breadcrumb a:hover {
    color: #0071D1;
}

.breadcrumb .separator {
    color: #999;
}

.breadcrumb .current {
    color: #0071D1;
    font-weight: 600;
}

.main-content {
    padding: 48px 0;
    background: #FFFFFF;
}



article h1 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    color: #222222;
    margin-bottom: 12px;
}

article h2 {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.4;
    text-align: center;
    color: #333;
    margin-bottom: 48px;
}

.form-section {
    background: transparent;
    padding: 48px 0;
    margin-bottom: 64px;
}

.form-container {
    max-width: 900px;
    margin: 0 auto;
}

.form-container h3 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    color: #222222;
    margin-bottom: 6px;
}

.form-description {
    font-size: 13px;
    line-height: 1.5;
    color: #666;
    margin-bottom: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.form-group {
    position: relative;
}

.form-group input.valid::after {
    content: '✔';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #00B050;
    font-size: 20px;
    font-weight: bold;
}

.form-group.has-checkmark input {
    padding-right: 45px;
}

.form-group .checkmark {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #00B050;
    font-size: 12px;
    font-weight: bold;
    pointer-events: none;
    display: none;
}

.form-group.valid .checkmark {
    display: block;
}

.form-group.half-width {
    max-width: 440px;
}

.form-group label {
    position: absolute;
    top: -9px;
    left: 16px;
    background: #FAFAFA;
    padding: 0 6px;
    color: #222;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
    z-index: 1;
    transition: color 0.2s;
}

.form-group:has(input:focus) label {
    color: #0071D1;
}

.form-group:has(.custom-select.open) label {
    color: #0071D1;
}

.form-group input {
    width: 100%;
    padding: 5px 16px;
    border: 2px solid #999;
    border-radius: 28px;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 20px;
    color: #0d0d0d;
    outline: none;
    background: #FFFFFF;
    transition: border-color 0.2s;
}

.form-group input:focus {
    border-color: #0071D1;
}

.form-group input.input-valid {
    border-color: #00B050 !important;
}

.form-group input.input-error {
    border-color: #FF0000 !important;
}

.form-group input::placeholder {
    color: #999;
    font-size: 20px;
}

.select-wrapper {
    position: relative;
}

.select-wrapper select {
    width: 100%;
    padding: 14px 40px 14px 16px;
    border: 2px solid #CCC;
    border-radius: 20px;
    background: #FFFFFF;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 14px;
    color: #666;
    outline: none;
    appearance: none;
    cursor: pointer;
    transition: border-color 0.3s;
}

.select-wrapper select:focus {
    border-color: #0071D1;
}

.select-wrapper select option {
    background: #FFFFFF !important;
    color: #333;
    padding: 10px;
}

.select-wrapper select option:first-child {
    color: #999;
}

.select-wrapper select option:hover {
    background: #FFFFFF !important;
    color: #0071D1 !important;
}

.select-wrapper select option:checked {
    background: #FFFFFF !important;
    color: #0071D1 !important;
}

.select-wrapper select option:hover {
    background-color: transparent !important;
}

.select-wrapper select:focus option:checked {
    background: linear-gradient(#FFFFFF, #FFFFFF) !important;
    background-color: #FFFFFF !important;
}

.select-wrapper::after {
    content: '▼';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 10px;
    pointer-events: none;
}
/*
.btn-submit {
    padding: 14px 64px;
    background: #D0D0D0;
    border: 1px solid #D0D0D0;
    border-radius: 24px;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #666;
    cursor: not-allowed;
    transition: all 0.3s;
    display: block;
    margin: 32px auto 0;
}
*/
.btn-submit.active {
    background: #7b1fa2;
    border-color: #7b1fa2;
    color: #FFFFFF;
    cursor: pointer;
}

.btn-submit.active:hover {
    background: #6a1b9a;
    border-color: #6a1b9a;
}

.packages-title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    color: #222222;
    margin-bottom: 48px;
}

.package-card {
    background: #FFFFFF;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.08);
    border-radius: 4px;
    margin-bottom: 32px;
    overflow: hidden;
}

.card-header {
    position: relative;
    padding: 16px 20px;
    border-bottom: 1px solid #F0F0F0;
}

.card-header.collapsible {
    cursor: pointer;
    user-select: none;
}

.card-header.collapsible:hover {
    background-color: #F9F9F9;
}

.card-header h4 {
    font-size: 16px;
    font-weight: 700;
    color: #222222;
}

.card-header::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 8px 0 8px;
    border-color: #0071D1 transparent transparent transparent;
    transition: transform 0.3s ease;
}

.package-card.collapsed .card-header::after {
    transform: translateY(-50%) rotate(180deg);
}

.card-body {
    display: flex;
    padding: 24px;
    gap: 32px;
    max-height: 2000px;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.package-card.collapsed .card-body {
    max-height: 0;
    padding: 0;
}

.package-card.collapsed .card-header {
    border-bottom: none;
}

.card-image {
    width: 320px;
    flex-shrink: 0;
}

.card-image img {
    width: 100%;
    height: auto;
    display: block;
}

.card-content {
    flex: 1;
}

.package-list {
    list-style: none;
    padding: 0;
}

.package-list li {
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    padding-left: 16px;
    position: relative;
}

.package-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #0071D1;
    font-weight: 700;
}

.package-list a {
    color: #0071D1;
    text-decoration: none;
    font-weight: 700;
}

.package-list a:hover {
    text-decoration: underline;
}

.package-list strong {
    font-weight: 700;
}

.footer {
    background: #F0F5FF;
    padding: 40px 0 0;
}

.footer-content {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 170px 32px 170px;
    display: grid;
    grid-template-columns: auto 1fr 1fr auto;
    gap: 40px;
    border-bottom: 1px solid #D0D0D0;
    align-items: start;
    justify-content: center;
}

.footer-column-app {
    position: relative;
    padding-left: 40px;
}

.footer-column-app::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #D0D0D0;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-column-logo {
    gap: 12px;
}

.footer-column-links {
    position: relative;
    padding-left: 40px;
}

.footer-column-links::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #D0D0D0;
}

.footer-logo {
    width: 84px;
    height: auto;
}

.footer-tabs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}

.footer-tab {
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid #D0D0D0;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
    display: inline-block;
}

.footer-tab.active {
    background: transparent;
    color: #0071D1;
    border-color: #0071D1;
}

.footer-tab:not(.active) {
    background: #FFFFFF;
    color: #666;
}

.footer-nav-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 170px;
}

.nav-column {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.nav-column a {
    color: #0071D1;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.nav-column a:hover {
    text-decoration: underline;
}

.footer-title {
    font-size: 14px;
    font-weight: 600;
    color: #222222;
    margin-bottom: 8px;
    white-space: nowrap;
    text-align: center;
}

.app-badges {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
}

.app-badges a img {
    width: 82.28px;
    height: 24px;
    flex-shrink: 0;
}

.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #D0D0D0;
}

.footer-social p {
    font-size: 14px;
    font-weight: 600;
    color: #222222;
    white-space: nowrap;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a img {
    width: 32px;
    height: 32px;
    border-radius: 0;
}

.footer-badges {
    max-width: 1920px;
    margin: 0 auto;
    padding: 24px 320px;
    display: flex;
    justify-content: space-between;
    background: #FFFFFF;
}

.footer-badges > div {
    display: flex;
    flex-direction: row;
    gap: 23px;
    align-items: center;
}

.footer-badges p {
    font-size: 13px;
    color: #666;
    white-space: nowrap;
}

.payment-badges,
.cert-badges {
    display: flex;
    gap: 16px;
    align-items: center;
}

.payment-badges img {
    height: 28px;
    width: auto;
}

.cert-badges img {
    height: 32px;
    width: auto;
}

.footer-bottom {
    max-width: 1920px;
    margin: 0 auto;
    padding: 16px 170px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #00529B;
}

.footer-bottom p {
    font-size: 12px;
    color: #FFFFFF;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    font-size: 12px;
    color: #FFFFFF;
    text-decoration: none;
}

.footer-legal a:hover {
    text-decoration: underline;
}

.feedback-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    padding: 14px 28px;
    background: #0071D1;
    color: #FFFFFF;
    border: none;
    border-radius: 6px;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s;
    z-index: 1000;
}

.feedback-btn:hover {
    background: #00529B;
    transform: translateY(-2px);
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1200px) {
    .secondary-nav .container-wide {
        padding: 0 40px;
    }
    
    .nav-content {
        padding: 12px 40px;
    }
    
    .breadcrumb .container {
        padding: 0 40px;
    }
    
    .footer-content,
    .footer-badges,
    .footer-bottom {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media (max-width: 992px) {
    .nav-content {
        padding: 12px 20px;
    }
    
    .secondary-nav .container-wide {
        padding: 0 20px;
    }
    
    .container {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .container,
    .container-wide {
        padding: 0 16px;
        max-width: 100%;
    }
    
    .desktop-nav {
        display: none !important;
    }
    
    .mobile-nav {
        display: flex !important;
    }
    
    .secondary-nav {
        height: 45px;
        background-color: #FFFFFF;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
    }
    
    .secondary-nav .container-wide {
        padding: 0;
    }
    
    .mobile-nav.secondary-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 45px;
        padding: 0 12px;
    }
    
    .mobile-nav .menu-toggle {
        display: flex;
        align-items: center;
        gap: 4px;
        padding: 6px 12px;
        border: 1px solid #0071D1;
        border-radius: 6px;
        font-size: 13px;
        font-weight: 600;
        color: #0071D1;
        cursor: pointer;
        background: #FFFFFF;
    }
    
    .mobile-nav .menu-toggle .arrow {
        font-size: 10px;
        color: #0071D1;
    }
    
    .mobile-nav .logo {
        position: static;
        transform: none;
        padding: 0 15px;
    }
    
    .mobile-nav .logo img {
        width: 60px;
        height: auto;
    }
    
    .mobile-nav .search-small {
        width: 140px;
        margin-left: auto;
        background: transparent !important;
        border-radius: 0 !important;
    }
    
    .mobile-nav .search-small input {
        font-size: 12px;
        padding: 5px 32px 5px 12px;
        background: transparent !important;
        border: none !important;
    }
    
    .mobile-nav .search-small button img {
        width: 16px;
        height: 16px;
    }
    
    .top-nav {
        padding: 0;
        border-bottom: none;
        box-shadow: none;
    }
    
    .nav-content {
        padding: 0;
    }
    
    .top-nav .logo,
    .top-nav .menu-toggle {
        display: none;
    }
    
    .main-links {
        display: flex;
        width: 100%;
        justify-content: space-around;
        align-items: center;
        padding: 10px 0;
    }
    
    .nav-link,
    .nav-link-highlight {
        padding: 6px 8px;
        border-right: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0;
    }
    
    .nav-link span,
    .nav-link-highlight span {
        display: none;
    }
    
    .nav-link img {
        width: 24px;
        height: 24px;
    }
    
    .nav-link-highlight img {
        width: 28px;
        height: 28px;
    }
    
    .breadcrumb {
        display: block;
        padding: 12px 0 12px 16px;
    }
    
    .breadcrumb .container {
        padding: 0;
        font-size: 11px;
    }
    
    .main-content {
        padding: 24px 0;
    }
    
    article h1 {
        font-size: 20px;
        line-height: 1.3;
        padding: 0 16px;
        margin-bottom: 12px;
        text-align: left;
    }
    
    article h2 {
        font-size: 14px;
        line-height: 1.4;
        padding: 0 16px;
        margin-bottom: 24px;
        text-align: left;
    }
    
    .form-section {
        padding: 24px 0;
        margin-bottom: 24px;
    }
    
    .form-container {
        padding: 0 16px;
        max-width: 100%;
    }
    
    .form-container h3 {
        font-size: 14px;
        margin-bottom: 4px;
    }
    
    .form-description {
        font-size: 12px;
        margin-bottom: 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 16px;
    }
    
    .form-group label {
        font-size: 12px;
        line-height: 18px;
    }
    
    .form-group input {
        font-size: 14px;
        padding: 12px 16px;
    }
    
    .custom-select-trigger {
        font-size: 14px;
        padding: 12px 40px 12px 16px;
    }
    
    .custom-option {
        font-size: 14px;
        padding: 10px 16px;
    }
    
    .btn-submit {
        width: 100%;
        max-width: 100%;
        padding: 12px 32px;
        font-size: 14px;
        margin: 24px 0 0;
    }
    
    .packages-title {
        font-size: 16px;
        line-height: 1.3;
        padding: 0 16px;
        margin-bottom: 24px;
        text-align: left;
    }
    
    .package-card {
        margin-bottom: 16px;
        border-radius: 8px;
    }
    
    .card-header {
        padding: 12px 16px;
    }
    
    .card-header h4 {
        font-size: 14px;
    }
    
    .card-header::after {
        border-width: 10px 6px 0 6px;
        right: 12px;
    }
    
    .card-body {
        flex-direction: column;
        padding: 20px 16px;
        gap: 16px;
    }
    
    .card-image {
        width: 100%;
        max-width: 240px;
        margin: 0 auto;
    }
    
    .card-content {
        width: 100%;
    }
    
    .package-list {
        padding: 0;
    }
    
    .package-list li {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 12px;
        padding-left: 12px;
    }
    
    .package-list li::before {
        font-size: 12px;
    }
    
    .package-list a {
        font-size: 13px;
    }
    
    .footer {
        padding-top: 24px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        padding: 20px 16px;
        gap: 20px;
    }
    
    .footer-column-logo {
        gap: 12px;
    }
    
    .footer-logo {
        width: 70px;
    }
    
    .footer-tabs {
        flex-direction: row;
        gap: 8px;
    }
    
    .footer-tab {
        font-size: 10px;
        padding: 5px 12px;
    }
    
    .footer-column-links::before,
    .footer-column-app::before {
        display: none;
    }
    
    .footer-column-links,
    .footer-column-app {
        padding-left: 0;
    }
    
    .footer-nav-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    
    .nav-column {
        gap: 16px;
    }
    
    .nav-column a {
        font-size: 12px;
    }
    
    .footer-title {
        font-size: 12px;
        margin-bottom: 8px;
        text-align: left;
    }
    
    .app-badges {
        flex-direction: row;
        justify-content: flex-start;
        gap: 8px;
    }
    
    .app-badges a img {
        width: 100px;
        height: auto;
    }
    
    .footer-social {
        justify-content: flex-start;
        padding-top: 12px;
        margin-top: 12px;
        gap: 12px;
    }
    
    .footer-social p {
        font-size: 12px;
    }
    
    .social-links {
        gap: 10px;
    }
    
    .social-links a img {
        width: 28px;
        height: 28px;
    }
    
    .footer-badges {
        flex-direction: column;
        padding: 16px;
        gap: 16px;
        align-items: flex-start;
    }
    
    .footer-badges > div {
        flex-direction: row;
        gap: 10px;
        align-items: center;
        flex-wrap: wrap;
    }
    
    .footer-badges p {
        font-size: 11px;
        width: 100%;
    }
    
    .payment-badges,
    .cert-badges {
        gap: 10px;
    }
    
    .payment-badges img {
        height: 20px;
    }
    
    .cert-badges img {
        height: 24px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        padding: 16px;
        text-align: center;
    }
    
    .footer-bottom p {
        font-size: 10px;
        line-height: 1.4;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 8px;
    }
    
    .footer-legal a {
        font-size: 10px;
    }
    
    .feedback-btn {
        bottom: 16px;
        right: 16px;
        padding: 10px 20px;
        font-size: 12px;
    }
}

@media (max-width: 428px) {
    article h1 {
        font-size: 18px;
    }
    
    article h2 {
        font-size: 13px;
    }
    
    .form-group input,
    .custom-select-trigger {
        font-size: 13px;
    }
    
    .package-list li {
        font-size: 12px;
    }
}

@media (max-width: 375px) {
    .container,
    .container-wide {
        padding: 0 12px;
    }
    
    article h1 {
        font-size: 17px;
        padding: 0 12px;
    }
    
    article h2 {
        font-size: 12px;
        padding: 0 12px;
    }
    
    .form-container {
        padding: 0 12px;
    }
    
    .form-group input,
    .custom-select-trigger {
        font-size: 12px;
        padding: 10px 14px;
    }
    
    .custom-select-trigger {
        padding: 10px 36px 10px 14px;
    }
    
    .btn-submit {
        padding: 10px 24px;
        font-size: 13px;
    }
    
    .packages-title {
        font-size: 15px;
        padding: 0 12px;
    }
    
    .package-list li {
        font-size: 11px;
    }
    
    .card-image {
        max-width: 200px;
    }
    
    .nav-column a {
        font-size: 11px;
    }
    
    .app-badges a img {
        width: 90px;
    }
}
