.header {
    margin: 0;
    width: 80%;
    display: flex;
    justify-content: space-between;
    margin-top: 48px;
    z-index: 2;
    transition: all 0.3s ease;
}

/* Стили для главной страницы */
.header--main {
    /* Стили остаются как есть */
}

.header--main .header__logo {
    max-width: 200px;
    margin-left: 30px;
}

.header--main .header__link {
    font-size: clamp(1rem, 0.833rem + 0.347vw, 1.25rem);
    color: #FFFFFF;
    font-weight: 300;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.header--main .header__link:hover {
    opacity: 0.8;
}

/* Стили для остальных страниц */
.header--other {
    background-color: #FFFFFF;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
    margin-top: 0;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.header--other .header__logo {
    max-width: 180px;
    margin-left: 30px;
}

.header--other .header__link {
    font-size: clamp(1rem, 0.833rem + 0.347vw, 1.25rem);
    color: #3D3B39;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.3s ease;
}

.header--other .header__link:hover {
    color: #2D7ED0;
}

.header__logo-link {
    display: flex;
    align-items: center;
}

.header__links {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-right: 30px;
}

/* Добавь эти стили для мобильного меню в хедере */
.mobile-menu {
    display: none; /* По умолчанию скрыто */
}

@media screen and (max-width: 1000px) {
    .header__links {
        gap: 20px;
    }
}

@media screen and (max-width: 770px) {
    .header {
        width: 100%;
    }
    
    .header--other {
        padding: 10px 0;
    }
    
    .header--other .header__logo {
        max-width: 160px;
        margin-left: 20px;
    }
}

@media screen and (max-width: 650px) {
    .header__links {
        display: none;
    }
    
    .mobile-menu {
        display: block; /* Показываем на мобилках */
        margin-right: 20px; /* Выравнивание как у header__links */
    }
    
    .header--main .header__logo,
    .header--other .header__logo {
        margin-left: 20px;
        max-width: 150px;
    }
}

/* Для очень маленьких экранов */
@media screen and (max-width: 480px) {
    .header--main .header__logo,
    .header--other .header__logo {
        max-width: 130px;
        margin-left: 15px;
    }
    
    .mobile-menu {
        margin-right: 15px;
    }
}/* Бургер-кнопка */
.burger-button {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1000;
}

.burger-button span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #FFFFFF; /* Белый по умолчанию */
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Для темного бургера на других страницах */
.burger-button--dark span {
  background-color: #3D3B39; /* Темный цвет */
}

/* Анимация бургера при открытии */
.burger-button.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.burger-button.active span:nth-child(2) {
  opacity: 0;
}

.burger-button.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Меню */
.menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 250px;
  height: 100vh;
  background: white;
  box-shadow: -2px 0 10px rgba(0,0,0,0.1);
  transition: right 0.3s ease;
  z-index: 999;
  padding: 80px 20px 20px;
}

.menu-open {
  right: 0;
}

.menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu li {
  margin-bottom: 20px;
}

.menu a {
  text-decoration: none;
  color: #333;
  font-size: 18px;
  font-weight: 500;
  transition: color 0.3s ease;
  display: block;
  padding: 10px 0;
}

.menu a:hover {
  color: #007bff;
}

/* Затемнение фона */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 998;
}@font-face {
  font-family: 'Oswald';
  src: url('/assets/Oswald-VariableFont_wght-CboGeR6W.ttf') format('truetype');
  font-weight: 100 900; 
  font-style: normal;
  font-display: swap;
}


/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}


body {
    
}


#root {

}

.page {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    font-family: 'Oswald', sans-serif;
    align-items: center;
    justify-content: space-between;
    height: 100vh;
}

.content {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
}/* main style All page */

.main {
    margin-top: -100px;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    overflow: hidden;
}


/* Input Section | 1st */

.inputSection {
    padding-top: 100px;
    width: 100%;
    min-height: 100vh; 
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #FFFFFF;
    z-index: 0;
    box-sizing: border-box; 
    background-size: cover; 
    background-position: center;
    background-repeat: no-repeat;
}

.inputSection__container {
    width: 80%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}

.inputSection__container-child {
    margin-top: 200px;
    display: flex;
    flex-direction: column;
    max-width: 710px;
    padding: 0 30px;
    height: 100%;
    justify-content: center;
}

.inputSection__title {
    font-size: clamp(1.5rem, 0.583rem + 2.848vw, 4rem);
    font-weight: 400;
    text-transform: uppercase;
    max-width: 600px;
    margin-left: 10px;
    line-height: 1.2;
}

.inputSection__paragraph {
    font-size: clamp(0.875rem, 0.163rem + 0.906vw, 1.25rem);
    font-weight: 300;
    margin-left: 10px;
    line-height: 1.5;
}

.inputSection__input_container {
    display: flex;
    padding: 10px 20px 10px 40px;
    border-radius: 5px;
    background-color: #FFFFFF;
    justify-content: space-between;
    align-items: center;
    width: 30vw;
}

.inputSection__input {
    background-color: transparent;
    border: none;
    outline: none;
    font-size: clamp(0.875rem, 0.75rem + 0.25vw, 1rem);
}

.inputSection__input::placeholder {
    font-size: clamp(0.875rem, 0.75rem + 0.25vw, 1rem);
    color: #666;
}

.inputSection__button_container {
    display: flex;
    background-color: #2D7ED0;
    gap: 20px;
    color: #FFFFFF;
    border: none;
    outline: none;
    border-radius: 3px;
    justify-content: center;
    padding: 13px 20px;
    cursor: pointer;
    align-items: center;
}

.inputSection__button_paragraph {
    font-size: clamp(0.875rem, 0.75rem + 0.25vw, 1rem);
    letter-spacing: 1px;
    margin: 0;
    font-weight: 500;
}

.inputSection__button_image {
    width: 16px;
    height: 16px;
}

.inputSection__links_container {
    display: flex;
    gap: 30px;
    margin-left: 10px;
    flex-wrap: wrap;
}

.inputSection__links_link {
    margin-top: 30px;
    font-size: clamp(0.875rem, 0.75rem + 0.25vw, 1.125rem);
    font-weight: 300;
    color: #FFFFFF;
    text-decoration: none;
    border-bottom: 2px solid currentColor;
    padding-bottom: 5px;
    line-height: 1.4;
}



/* Delivering Section | 2st */

.deliveringSection {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.deliveringSection__container {
    width: 80%;
    justify-content: center;
    align-items: center;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    padding: 90px 0;
    overflow: hidden;
}

.deliveringSection__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.deliveringSection__text-container-right {
    grid-column: 2 / 4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.deliveringSection__text-container-left {
    background-color: #2D7ED0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.deliveringSection__title {
    text-transform: uppercase;
    color: #3D3B39;
    font-size: clamp(1.25rem, 0.325rem + 1.812vw, 2.5rem);
    font-weight: 400;
    line-height: 1.3;
    text-align: center;
}

.deliveringSection__paragraph {
    padding-left: 80px;
    padding-right: 80px;
    font-weight: 300;
    font-size: clamp(0.875rem, 0.163rem + 0.906vw, 1.25rem);
    line-height: 1.6;
    opacity: 0.8;
}

.deliveringSection__paragraph-white {
    padding: 0 40px;
    color: #FFFFFF;
    opacity: 1;
    font-size: clamp(0.875rem, 0.163rem + 0.906vw, 1.25rem);
    line-height: 1.6;
}

@media screen and (max-width: 1268px) {
    .deliveringSection__container {
        width: 95%;
    }
}

@media screen and (max-width: 768px) {
    .deliveringSection__container {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 0;
    }
    
    .deliveringSection__image {
        width: 100%;
        height: 300px;
        object-fit: cover;
    }
    
    .deliveringSection__text-container-right,
    .deliveringSection__text-container-left {
        grid-column: 1 / 2;
    }

    .deliveringSection__text-container-right {
        padding: 10px;
        padding-bottom: 40px;
    }

    .deliveringSection__title {
        margin: 0;
        font-size: clamp(1.5rem, 4vw, 2rem);
        line-height: 1.3;
        padding: 0 20px;
    }

    .deliveringSection__paragraph {
        padding-left: 20px;
        padding-right: 20px;
        font-size: clamp(1rem, 3vw, 1.125rem);
        line-height: 1.6;
        text-align: center;
    }

    .deliveringSection__paragraph-white {
        padding: 0 20px;
        margin: 0;
        padding: 30px 20px;
        width: 100%;
        font-size: clamp(1rem, 3vw, 1.125rem);
        line-height: 1.6;
        text-align: center;
    }

    .deliveringSection__text-container-left {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Mission Section | 3st */

.missionSection {
    display: flex;
    width: 100%;
}

.missionSection__video {
    width: 100%;
}

/* Innovsion Section | 4st */ 

.innovationSection {
    display: flex;
    width: 100%;
    min-height: 600px;
}

.innovationSection__left-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 60px 40px;
    width: 50%;
    background: #f8f9fa;
}

.innovationSection__right-column {
    width: 50%;
    position: relative;
}

.innovationSection__right_background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.innovationSection__text-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 30px;
}

.innovationSection__title {
    text-transform: uppercase;
    font-size: clamp(1.5rem, 2.5vw + 0.5rem, 3rem);
    color: #2D7ED0;
    font-weight: 600;
    margin: 0;
}

.innovationSection__paragraph {
    font-size: clamp(0.875rem, 1.17vw + 0.5rem, 1.25rem);
    font-weight: 300;
    line-height: 1.6;
    color: #3D3B39;
    opacity: 0.8;
    margin: 0;
}

.innovationSection__buttons-container {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.innovationSection__link {
    font-size: clamp(0.875rem, 1.17vw + 0.5rem, 1.25rem);
    color: #2D7ED0;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: opacity 0.3s ease;
}

.innovationSection__link:hover {
    opacity: 0.7;
}

.innovationSection__pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.innovationSection__pagination-counter {
    font-size: clamp(0.75rem, 1vw + 0.5rem, 1rem);
    color: #3D3B39;
    font-weight: 500;
    min-width: 60px;
    text-align: center;
}

.innovationSection__pagination-button {
    background-color: #2D7ED0;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.innovationSection__pagination-button:hover {
    background-color: #1c6cb7;
}

@media screen and (max-width: 900px) {
    .innovationSection {
        flex-direction: row;
        width: 100%;
        min-height: 500px;
    }
    
    .innovationSection__left-column {
        width: 50%;
        padding: 40px 20px;
    }

    .innovationSection__right-column {
        width: 50%;
    }
    
    .innovationSection__pagination {
        gap: 15px;
    }
}

@media screen and (max-width: 600px) {
    .innovationSection {
        flex-direction: column;
        min-height: auto;
    }
    
    .innovationSection__left-column,
    .innovationSection__right-column {
        width: 100%;
    }
    
    .innovationSection__right_background-image {
        height: 300px;
        position: relative;
    }
    
    .innovationSection__left-column {
        padding: 0;
        padding: 20px 0;
    }

    .innovationSection__pagination {
        padding-right: 20px;
    }

    .innovationSection__text-container {
        padding-left: 20px;
    }

    .innovationSection__link {
        padding-left: 20px;
    }
}

/* Commitment Section / 7st */

.commitmentSection {
    position: relative;
    width: 100%;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-image: url('/assets/lift-79-p4o4c.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 60px 0;
}

.commitmentSection::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 0;
}

.commitmentSection__container {
    width: 90%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 100px;
    position: relative;
    z-index: 1;
}

.commitmentSection__paragraph_container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.commitmentSection__title {
    text-transform: uppercase;
    font-size: clamp(1.5rem, 2.5vw + 0.5rem, 3rem);
    font-weight: 400;
    margin-bottom: 30px;
}

.commitmentSection__paragraph {
    font-size: clamp(1rem, 1.17vw + 0.5rem, 1.5rem);
    font-weight: 200;
    max-width: 600px;
    line-height: 1.6;
}

.commitmentSection__conctacts_container {
    display: flex;
    width: 100%;
    gap: 20px;
    justify-content: space-between;
}

.commitmentSection__conctacts_card {
    border: 1px solid white;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    background-color: transparent;
    transition: all 0.3s ease;
    padding: 30px 25px;
    flex: 1;
    min-width: 0;
}

.commitmentSection__conctacts_card.active {
    background-color: #2D7ED0;
}

.commitmentSection__conctacts_number {
    font-size: clamp(1.5rem, 2vw + 0.5rem, 2.5rem);
    font-weight: 300;
    margin-bottom: 15px;
}

.commitmentSection__conctacts_right-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.commitmentSection__conctacts_title {
    font-size: clamp(1rem, 1.17vw + 0.5rem, 1.25rem);
    font-weight: 500;
    text-transform: uppercase;
    margin: 0;
}

.commitmentSection__conctacts_paragraph {
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
    font-weight: 300;
    line-height: 1.4;
    margin: 0;
    opacity: 0.9;
}

/* Адаптив для планшетов */
@media screen and (max-width: 1024px) {
    .commitmentSection__container {
        gap: 80px;
    }
    
    .commitmentSection__conctacts_container {
        gap: 15px;
    }
    
    .commitmentSection__conctacts_card {
        padding: 25px 20px;
    }
}

/* Адаптив для мобильных устройств */
@media screen and (max-width: 768px) {
    .commitmentSection {
        min-height: auto;
        padding: 40px 0;
    }
    
    .commitmentSection__container {
        gap: 60px;
        width: 95%;
    }
    
    .commitmentSection__paragraph {
        max-width: 100%;
    }
    
    .commitmentSection__conctacts_container {
        flex-direction: column;
        gap: 15px;
    }
    
    .commitmentSection__conctacts_card {
        padding: 20px;
        width: 100%;
    }
    
    .commitmentSection__conctacts_card {
        flex-direction: row;
        align-items: flex-start;
        gap: 20px;
        padding: 30px 5px;
    }
    
    .commitmentSection__conctacts_number {
        margin-bottom: 0;
        min-width: 40px;
    }
}

/* Для очень маленьких экранов */
@media screen and (max-width: 480px) {
    .commitmentSection__container {
        gap: 40px;
    }
    
    .commitmentSection__conctacts_card {
        padding: 15px;
        gap: 15px;
    }
    
    .commitmentSection__title {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 1100px) {
    .commitmentSection__container {
        width: 90%;
    }
}

/* ADAPTIVE */

@media screen and (max-width: 1300px) {
    .inputSection__input_container {
        width: 100%;
    }  
}

@media screen and (max-width: 800px) {
    .inputSection__input_container {
        width: 80%;
    }  

    .inputSection__container-child {
        padding: 0;
    }

    /* Улучшения для мобильных устройств в Input Section */
    .inputSection__title {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
        line-height: 1.2;
        text-align: center;
        margin-left: 0;
    }

    .inputSection__paragraph {
        font-size: clamp(1rem, 3vw, 1.125rem);
        line-height: 1.5;
        text-align: center;
        margin-left: 0;
    }

    .inputSection__input_container {
        width: 100%;
        padding: 12px 15px 12px 20px;
    }

    .inputSection__input {
        font-size: 1rem;
    }

    .inputSection__input::placeholder {
        font-size: 1rem;
    }

    .inputSection__button_container {
        padding: 12px 15px;
    }

    .inputSection__button_paragraph {
        font-size: 1rem;
    }

    .inputSection__links_container {
        justify-content: center;
        margin-left: 0;
        gap: 20px;
    }

    .inputSection__links_link {
        font-size: clamp(0.875rem, 3vw, 1rem);
        text-align: center;
    }
}

/* Дополнительные улучшения для очень маленьких экранов */
@media screen and (max-width: 480px) {
    .inputSection__container-child {
        margin-top: 150px;
    }

    .inputSection__title {
        font-size: 1.75rem;
    }

    .inputSection__paragraph {
        font-size: 1rem;
    }

    .inputSection__links_container {
        flex-direction: column;
        gap: 15px;
    }

    .inputSection__links_link {
        margin-top: 15px;
    }

    .deliveringSection__title {
        font-size: 1.5rem;
    }

    .deliveringSection__paragraph {
        font-size: 1rem;
        padding-left: 15px;
        padding-right: 15px;
    }

    .deliveringSection__paragraph-white {
        font-size: 1rem;
        padding: 20px 15px;
    }
}
.footer {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.footer__content {
    display: flex;
    width: 80%;
    margin: 0 auto;
    align-items: flex-start;
    justify-content: space-between;
    padding: 80px 0 40px;
    gap: 40px;
}

.footer__logo {
    width: 180px;
    height: auto;
    flex-shrink: 0;
}

.footer__container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    flex: 1;
    max-width: 800px;
}

.footer__container_links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer__link {
    margin: 0;
    font-size: clamp(0.875rem, 0.75rem + 0.25vw, 1rem);
    color: #3D3B39;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.footer__link:hover {
    color: #2D7ED0;
}

.footer__link--text {
    opacity: 0.8;
    font-weight: 300;
}

.footer__bottom {
    width: 100%;
    border-top: 1px solid #e9ecef;
    padding: 30px 0;
    background-color: #fff;
}

.footer__copyright {
    text-align: center;
    margin: 0;
    font-size: clamp(0.75rem, 0.625rem + 0.25vw, 0.875rem);
    color: #6c757d;
    font-weight: 300;
}

/* Планшеты */
@media screen and (max-width: 1024px) {
    .footer__content {
        width: 90%;
        padding: 60px 0 30px;
    }
    
    .footer__container {
        gap: 30px;
    }
}

/* Маленькие планшеты */
@media screen and (max-width: 768px) {
    .footer__content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 50px;
        padding: 50px 0 30px;
    }
    
    .footer__container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
        width: 100%;
    }
    
    .footer__logo {
        width: 160px;
    }
}

/* Мобильные устройства */
@media screen and (max-width: 600px) {
    .footer__content {
        width: 95%;
        padding: 40px 0 20px;
        gap: 40px;
    }
    
    .footer__container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer__container_links {
        gap: 12px;
    }
    
    .footer__logo {
        width: 140px;
    }
    
    .footer__bottom {
        padding: 20px 0;
    }
}

/* Очень маленькие экраны */
@media screen and (max-width: 375px) {
    .footer__content {
        padding: 30px 0 15px;
        gap: 30px;
    }
    
    .footer__container {
        gap: 25px;
    }
    
    .footer__link {
        font-size: 0.875rem;
    }
}.aboutUsPage {
    min-height: 100vh;
    background: #ffffff;
    padding-bottom: 30px;
}

/* Hero Section */
.aboutUs-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 120px 10% 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 70vh;
}

.aboutUs-hero__content {
    max-width: 600px;
}

.aboutUs-hero__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #2D7ED0;
    margin-bottom: 20px;
    line-height: 1.1;
}

.aboutUs-hero__subtitle {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: #3D3B39;
    margin-bottom: 30px;
    font-weight: 300;
    opacity: 0.8;
}

.aboutUs-hero__description {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    line-height: 1.6;
    color: #3D3B39;
    opacity: 0.7;
}

.aboutUs-hero__image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.aboutUs-hero__image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    object-fit: cover;
}

/* Stats Section */
.aboutUs-stats {
    background: #2D7ED0;
    color: white;
    padding: 80px 10%;
}

.aboutUs-stats__container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.aboutUs-stats__item {
    text-align: center;
}

.aboutUs-stats__number {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 10px;
}

.aboutUs-stats__label {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    opacity: 0.9;
    font-weight: 300;
}

/* Tabs Section */
.aboutUs-tabs {
    padding: 80px 10%;
    background: #ffffff;
}

.aboutUs-tabs__container {
    max-width: 1200px;
    margin: 0 auto;
}

.aboutUs-tabs__header {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
    border-bottom: 2px solid #e9ecef;
    flex-wrap: wrap;
}

.aboutUs-tabs__button {
    background: none;
    border: none;
    padding: 20px 40px;
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: #6c757d;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    font-weight: 500;
}

.aboutUs-tabs__button:hover {
    color: #2D7ED0;
}

.aboutUs-tabs__button.active {
    color: #2D7ED0;
    border-bottom-color: #2D7ED0;
}

.aboutUs-tabs__content {
    min-height: 400px;
}

.aboutUs-tabs__panel h2 {
    font-size: clamp(2rem, 3vw, 2.5rem);
    color: #3D3B39;
    margin-bottom: 30px;
    text-align: center;
}

.aboutUs-tabs__panel p {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 30px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Timeline */
.timeline {
    display: grid;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.timeline__item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 30px;
    align-items: start;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.timeline__item:hover {
    transform: translateY(-2px);
}

.timeline__year {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2D7ED0;
}

.timeline__event {
    font-size: 1.1rem;
    color: #3D3B39;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.value-card {
    padding: 40px 30px;
    background: #f8f9fa;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card h3 {
    font-size: 1.5rem;
    color: #2D7ED0;
    margin-bottom: 15px;
}

.value-card p {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.5;
    margin: 0;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.team-card {
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-card__image {
    height: 450px;
    overflow: hidden;
    position: relative;
}

.team-card__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card .image-placeholder {
    display: none;
}

.team-card__info {
    padding: 30px;
}

.team-card h3 {
    font-size: 1.5rem;
    color: #3D3B39;
    margin-bottom: 10px;
}

.team-card__position {
    font-size: 1.1rem;
    color: #2D7ED0;
    font-weight: 600;
    margin-bottom: 5px;
}

.team-card__experience {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 15px;
}

.team-card__description {
    font-size: 1rem;
    color: #3D3B39;
    line-height: 1.5;
    margin: 0;
}

/* CTA Section */
.aboutUs-cta {
    background: linear-gradient(135deg, #2D7ED0, #1c6cb7);
    color: white;
    padding: 80px 10%;
    text-align: center;
}

.aboutUs-cta__container {
    max-width: 800px;
    margin: 0 auto;
}

.aboutUs-cta__title {
    font-size: clamp(2rem, 3vw, 2.5rem);
    margin-bottom: 20px;
}

.aboutUs-cta__description {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.aboutUs-cta__buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.aboutUs-cta__button {
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.aboutUs-cta__button--primary {
    background: white;
    color: #2D7ED0;
}

.aboutUs-cta__button--primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    text-decoration: none;
    color: #2D7ED0;
}

.aboutUs-cta__button--secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.aboutUs-cta__button--secondary:hover {
    background: white;
    color: #2D7ED0;
    transform: translateY(-2px);
    text-decoration: none;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .aboutUs-hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        padding: 100px 5% 60px;
        align-items: center;
        justify-content: center;
    }

    .aboutUs-stats__container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .aboutUs-hero {
        padding: 120px 5% 40px;
        min-height: auto;
    }

    .aboutUs-stats {
        padding: 60px 5%;
    }

    .aboutUs-tabs {
        padding: 60px 5%;
    }

    .aboutUs-tabs__header {
        flex-direction: column;
        align-items: center;
    }

    .aboutUs-tabs__button {
        width: 100%;
        max-width: 300px;
        margin-bottom: 10px;
    }

    .timeline__item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 15px;
    }

    .aboutUs-cta {
        padding: 60px 5%;
    }

    .aboutUs-cta__buttons {
        flex-direction: column;
        align-items: center;
    }

    .aboutUs-cta__button {
        width: 100%;
        max-width: 300px;
    }
}

@media screen and (max-width: 480px) {
    .aboutUs-hero {
        padding: 100px 20px 40px;
    }

    .aboutUs-stats__container {
        grid-template-columns: 1fr;
    }

    .team-card__image {
        height: 200px;
    }
}

/* Support for 2K+ screens */
@media screen and (min-width: 2000px) {
    .aboutUs-hero,
    .aboutUs-stats,
    .aboutUs-tabs,
    .aboutUs-cta {
        padding-left: 20%;
        padding-right: 20%;
    }
}.contactUsPage {
    min-height: 100vh;
    background: #ffffff;
    width: 100%;
}

/* Hero Section */
.contactUs-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 120px 10% 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 60vh;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.contactUs-hero__content {
    max-width: 600px;
}

.contactUs-hero__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #2D7ED0;
    margin-bottom: 20px;
    line-height: 1.1;
}

.contactUs-hero__subtitle {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: #3D3B39;
    margin-bottom: 30px;
    font-weight: 300;
    opacity: 0.8;
}

.contactUs-hero__description {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    line-height: 1.6;
    color: #3D3B39;
    opacity: 0.7;
}

.contactUs-hero__image {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
}

.contactUs-hero__image img {
    width: 100%;
    max-width: 500px;
    height: 400px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    object-fit: cover;
}

/* Contact Methods */
.contactUs-methods {
    padding: 80px 10%;
    background: #ffffff;
}

.contactUs-methods__container {
    max-width: 1200px;
    margin: 0 auto;
}

.contactUs-methods__title {
    font-size: clamp(2rem, 3vw, 2.5rem);
    color: #3D3B39;
    text-align: center;
    margin-bottom: 60px;
}

.contactUs-methods__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.contact-method {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-method:hover {
    transform: translateY(-5px);
    border-color: #2D7ED0;
    text-decoration: none;
    color: inherit;
}

.contact-method__icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-method__title {
    font-size: 1.5rem;
    color: #2D7ED0;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-method__details {
    font-size: 1.2rem;
    color: #3D3B39;
    margin-bottom: 10px;
    font-weight: 500;
}

.contact-method__description {
    font-size: 1rem;
    color: #6c757d;
    margin: 0;
}

/* Contact Form & Info */
.contactUs-main {
    padding: 80px 10%;
    background: #f8f9fa;
}

.contactUs-main__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

/* Contact Form */
.contactUs-form {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contactUs-form__title {
    font-size: 2rem;
    color: #3D3B39;
    margin-bottom: 40px;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 1rem;
    color: #3D3B39;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-input,
.form-textarea {
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #2D7ED0;
    background: white;
    box-shadow: 0 0 0 3px rgba(45, 126, 208, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    background: #2D7ED0;
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.form-submit:hover {
    background: #1c6cb7;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(45, 126, 208, 0.3);
}

/* Contact Info */
.contactUs-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contactUs-info__title {
    font-size: 2rem;
    color: #3D3B39;
    margin-bottom: 30px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.info-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 1.3rem;
    color: #2D7ED0;
    margin-bottom: 8px;
    font-weight: 600;
}

.info-content p {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.5;
    margin: 0;
}

/* FAQ Section */
.contact-faq {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.contact-faq__title {
    font-size: 1.5rem;
    color: #3D3B39;
    margin-bottom: 25px;
    font-weight: 600;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 25px;
}

.faq-item {
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}

.faq-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.faq-question {
    font-size: 1.1rem;
    color: #3D3B39;
    margin-bottom: 10px;
    font-weight: 500;
}

.faq-answer {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.5;
    margin: 0;
}

.faq-link {
    color: #2D7ED0;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.faq-link:hover {
    color: #1c6cb7;
    text-decoration: underline;
}

/* CTA Section */
.contactUs-cta {
    background: linear-gradient(135deg, #2D7ED0, #1c6cb7);
    color: white;
    padding: 80px 10%;
    text-align: center;
}

.contactUs-cta__container {
    max-width: 800px;
    margin: 0 auto;
}

.contactUs-cta__title {
    font-size: clamp(2rem, 3vw, 2.5rem);
    margin-bottom: 20px;
}

.contactUs-cta__description {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.contactUs-cta__buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.contactUs-cta__button {
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.contactUs-cta__button--primary {
    background: white;
    color: #2D7ED0;
}

.contactUs-cta__button--primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    text-decoration: none;
    color: #2D7ED0;
}

.contactUs-cta__button--secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.contactUs-cta__button--secondary:hover {
    background: white;
    color: #2D7ED0;
    transform: translateY(-2px);
    text-decoration: none;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .contactUs-hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        padding: 100px 5% 60px;
    }

    .contactUs-methods__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contactUs-main__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contactUs-hero__image img {
        max-width: 400px;
        height: 300px;
    }
}

@media screen and (max-width: 768px) {
    .contactUs-hero {
        padding: 120px 5% 40px;
        min-height: auto;
    }

    .contactUs-methods,
    .contactUs-main {
        padding: 60px 5%;
    }

    .contactUs-methods__grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contactUs-form {
        padding: 30px 25px;
    }

    .contactUs-cta {
        padding: 60px 5%;
    }

    .contactUs-cta__buttons {
        flex-direction: column;
        align-items: center;
    }

    .contactUs-cta__button {
        width: 100%;
        max-width: 300px;
    }

    .contactUs-hero__image img {
        max-width: 100%;
        height: 250px;
    }
}

@media screen and (max-width: 480px) {
    .contactUs-hero {
        padding: 100px 20px 40px;
    }

    .contactUs-methods,
    .contactUs-main,
    .contactUs-cta {
        padding: 40px 20px;
    }

    .info-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

/* Support for 2K+ screens */
@media screen and (min-width: 2000px) {
    .contactUs-hero,
    .contactUs-methods,
    .contactUs-main,
    .contactUs-cta {
        padding-left: 20%;
        padding-right: 20%;
    }
}.cookiePolicyPage {
    min-height: 100vh;
    background: #ffffff;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

/* Hero Section */
.cookiePolicy-hero {
    background: linear-gradient(135deg, #2D7ED0 0%, #1c6cb7 100%);
    color: white;
    padding: 120px 5% 80px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.cookiePolicy-hero__content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookiePolicy-hero__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
}

.cookiePolicy-hero__subtitle {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    margin-bottom: 30px;
    font-weight: 300;
    opacity: 0.9;
}

.cookiePolicy-hero__description {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    line-height: 1.6;
    opacity: 0.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Quick Summary */
.cookiePolicy-summary {
    padding: 80px 5%;
    background: #f8f9fa;
    width: 100%;
    box-sizing: border-box;
}

.cookiePolicy-summary__container {
    max-width: 1200px;
    margin: 0 auto;
}

.cookiePolicy-summary__title {
    font-size: clamp(2rem, 3vw, 2.5rem);
    color: #3D3B39;
    text-align: center;
    margin-bottom: 60px;
}

.summary-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.summary-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.summary-card:hover {
    transform: translateY(-5px);
}

.summary-card__icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.summary-card h3 {
    font-size: 1.5rem;
    color: #2D7ED0;
    margin-bottom: 15px;
    font-weight: 600;
}

.summary-card p {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.5;
    margin: 0;
}

/* Main Content */
.cookiePolicy-content {
    padding: 80px 5%;
    background: white;
    width: 100%;
    box-sizing: border-box;
}

.cookiePolicy-content__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    width: 100%;
    box-sizing: border-box;
}

/* Navigation Sidebar */
.policy-nav {
    position: sticky;
    top: 100px;
    align-self: start;
    width: 100%;
}

.policy-nav__title {
    font-size: 1.25rem;
    color: #3D3B39;
    margin-bottom: 20px;
    font-weight: 600;
}

.policy-nav__list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.policy-nav__item {
    margin-bottom: 10px;
    width: 100%;
}

.policy-nav__link {
    background: none;
    border: none;
    text-align: left;
    padding: 12px 16px;
    width: 100%;
    font-size: 1rem;
    color: #6c757d;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: inherit;
    position: relative;
    box-sizing: border-box;
    display: block;
}

.policy-nav__link:hover {
    background: #f8f9fa;
    color: #2D7ED0;
    transform: translateX(5px);
}

.policy-nav__link.active {
    background: #2D7ED0;
    color: white;
}

.policy-nav__link.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 60%;
    background: white;
    border-radius: 0 2px 2px 0;
}

/* Policy Content */
.policy-content {
    min-height: 600px;
    width: 100%;
    box-sizing: border-box;
}

.policy-section {
    margin-bottom: 60px;
    scroll-margin-top: 100px;
    width: 100%;
    box-sizing: border-box;
}

.policy-section__title {
    font-size: 1.75rem;
    color: #3D3B39;
    margin-bottom: 20px;
    font-weight: 600;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.policy-section__content {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #6c757d;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}

.policy-section__content p {
    margin-bottom: 20px;
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
    box-sizing: border-box;
}

.policy-section__content ul {
    margin: 20px 0;
    padding-left: 20px;
    max-width: 100%;
    box-sizing: border-box;
}

.policy-section__content li {
    margin-bottom: 8px;
    line-height: 1.6;
    overflow-wrap: break-word;
    word-break: break-word;
    box-sizing: border-box;
}

.policy-section__content a {
    word-break: break-all;
    box-sizing: border-box;
}

.policy-section__content strong {
    word-break: break-word;
    box-sizing: border-box;
}

/* Cookie Types Table */
.cookie-types {
    margin: 80px 0;
    width: 100%;
    box-sizing: border-box;
}

.cookie-types__title {
    font-size: 1.75rem;
    color: #3D3B39;
    margin-bottom: 30px;
    font-weight: 600;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.cookie-types__table {
    border: 1px solid #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    background: white;
    width: 100%;
    box-sizing: border-box;
    table-layout: fixed;
}

.table-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    background: #2D7ED0;
    color: white;
    font-weight: 600;
    width: 100%;
    box-sizing: border-box;
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    border-bottom: 1px solid #e9ecef;
    width: 100%;
    box-sizing: border-box;
}

.table-row:last-child {
    border-bottom: none;
}

.table-cell {
    padding: 15px;
    border-right: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
    min-width: 0;
    word-break: break-word;
}

.table-row .table-cell:last-child,
.table-header .table-cell:last-child {
    border-right: none;
}

.table-row:nth-child(even) {
    background: #f8f9fa;
}

/* Browser Instructions */
.browser-instructions {
    margin: 80px 0;
    width: 100%;
    box-sizing: border-box;
}

.browser-instructions__title {
    font-size: 1.75rem;
    color: #3D3B39;
    margin-bottom: 30px;
    font-weight: 600;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.browser-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
}

.browser-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #2D7ED0;
    width: 100%;
    box-sizing: border-box;
}

.browser-card h3 {
    font-size: 1.2rem;
    color: #2D7ED0;
    margin-bottom: 10px;
    font-weight: 600;
    max-width: 100%;
    box-sizing: border-box;
}

.browser-card p {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.5;
    margin: 0;
    max-width: 100%;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-break: break-word;
}

/* Action Section */
.cookiePolicy-actions {
    padding: 80px 5%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    width: 100%;
    box-sizing: border-box;
}

.cookiePolicy-actions__container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.actions-title {
    font-size: clamp(2rem, 3vw, 2.5rem);
    color: #3D3B39;
    margin-bottom: 20px;
    max-width: 100%;
    box-sizing: border-box;
}

.actions-description {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-break: break-word;
}

.actions-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 500px;
    margin: 0 auto;
    box-sizing: border-box;
}

.action-button {
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-sizing: border-box;
    flex: 1;
    min-width: 140px;
    text-align: center;
}

.action-button--primary {
    background: #2D7ED0;
    color: white;
}

.action-button--primary:hover {
    background: #1c6cb7;
    transform: translateY(-2px);
    text-decoration: none;
    color: white;
}

.action-button--secondary {
    background: white;
    color: #2D7ED0;
    border: 2px solid #2D7ED0;
}

.action-button--secondary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    text-decoration: none;
    color: #2D7ED0;
}

.action-button--link {
    background: transparent;
    color: #2D7ED0;
    text-decoration: underline;
    border: none;
}

.action-button--link:hover {
    color: #1c6cb7;
    text-decoration: none;
}

/* Contact Section */
.cookiePolicy-contact {
    padding: 80px 5%;
    background: #2D7ED0;
    color: white;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.cookiePolicy-contact__container {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.cookiePolicy-contact__title {
    font-size: clamp(2rem, 3vw, 2.5rem);
    margin-bottom: 20px;
    max-width: 100%;
    box-sizing: border-box;
}

.cookiePolicy-contact__description {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-break: break-word;
}

.cookiePolicy-contact__buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 500px;
    margin: 0 auto;
    box-sizing: border-box;
}

.contact-button {
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-sizing: border-box;
    flex: 1;
    min-width: 140px;
    text-align: center;
}

.contact-button--primary {
    background: white;
    color: #2D7ED0;
}

.contact-button--primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    text-decoration: none;
    color: #2D7ED0;
}

.contact-button--secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.contact-button--secondary:hover {
    background: white;
    color: #2D7ED0;
    transform: translateY(-2px);
    text-decoration: none;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .cookiePolicy-content__container {
        grid-template-columns: 250px 1fr;
        gap: 30px;
    }

    .summary-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .browser-cards {
        grid-template-columns: 1fr;
    }

    .table-cell {
        padding: 12px 10px;
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 768px) {
    .cookiePolicy-hero,
    .cookiePolicy-summary,
    .cookiePolicy-content,
    .cookiePolicy-actions,
    .cookiePolicy-contact {
        padding: 60px 20px;
    }

    .cookiePolicy-content__container {
        grid-template-columns: 1fr;
        gap: 30px;
        width: 100%;
        max-width: 100%;
    }

    .policy-nav {
        position: static;
    }

    .policy-nav__list {
        display: flex;
        overflow-x: auto;
        gap: 8px;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .policy-nav__list::-webkit-scrollbar {
        display: none;
    }

    .policy-nav__item {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .policy-nav__link {
        white-space: nowrap;
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    .summary-cards {
        grid-template-columns: 1fr;
    }

    .table-header,
    .table-row {
        grid-template-columns: 1fr;
    }

    .table-cell {
        border-right: none;
        border-bottom: 1px solid #e9ecef;
        padding: 12px;
    }

    .table-cell:last-child {
        border-bottom: none;
    }

    .table-header .table-cell {
        background: #2D7ED0;
        color: white;
        font-weight: 600;
        border-bottom: 1px solid #1c6cb7;
    }

    .actions-buttons,
    .cookiePolicy-contact__buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .action-button,
    .contact-button {
        width: 100%;
        max-width: 280px;
        flex: none;
    }

    .summary-card {
        padding: 25px 20px;
    }

    .browser-card {
        padding: 20px;
    }

    .cookie-types__table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .cookiePolicy-content * {
    min-width: 0 !important;
}

    .table-header,
    .table-row {
        display: table;
        width: 100%;
    }

    .table-cell {
        display: table-cell;
        padding: 12px 8px;
        white-space: nowrap;
        min-width: 150px;
    }

    /* ФИКС ДЛЯ POLICY-SECTION */
    .policy-section {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0;
        margin: 0 0 40px 0;
    }

    .policy-section__content {
        font-size: 1rem;
        line-height: 1.6;
        padding: 0;
        width: 100%;
        max-width: 100%;
    }

    .policy-section__content p,
    .policy-section__content ul,
    .policy-section__content li {
        max-width: 100%;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .cookiePolicy-content {
        padding: 60px 20px;
        width: 100%;
        box-sizing: border-box;
    }

    .policy-content {
        width: 100%;
        max-width: 100%;
    }

}

@media screen and (max-width: 480px) {
    .cookiePolicy-hero,
    .cookiePolicy-summary,
    .cookiePolicy-content,
    .cookiePolicy-actions,
    .cookiePolicy-contact {
        padding: 40px 15px;
    }

    .cookiePolicy-hero {
        padding-top: 120px;
    }

    .summary-card {
        padding: 20px 15px;
    }

    .browser-card {
        padding: 15px;
    }

    .policy-section {
        scroll-margin-top: 100px;
        width: 100%;
    }

    .actions-buttons,
    .cookiePolicy-contact__buttons {
        max-width: 100%;
    }

    .cookiePolicy-content {
        padding: 40px 15px;
    }

    .policy-section__content {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

/* Support for 2K+ screens */
@media screen and (min-width: 2000px) {
    .cookiePolicy-hero,
    .cookiePolicy-summary,
    .cookiePolicy-content,
    .cookiePolicy-actions,
    .cookiePolicy-contact {
        padding-left: 15%;
        padding-right: 15%;
    }
}

/* Ensure no horizontal scroll */
.cookiePolicyPage * {
    max-width: 100%;
    box-sizing: border-box;
}

/* Specific fix for table on mobile */
@media screen and (max-width: 768px) {
    .cookie-types__table {
        margin: 0;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
}

/* Emergency fixes for content overflow */
.policy-section__content * {
    max-width: 100%;
    box-sizing: border-box;
}

.policy-section__content img,
.policy-section__content table,
.policy-section__content pre,
.policy-section__content code {
    max-width: 100%;
    height: auto;
}

/* Notification */
.cookie-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: #2D7ED0;
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 300px;
    animation: slideIn 0.3s ease;
}

.cookie-notification button {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Preferences Modal */
.preferences-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preferences-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.preferences-modal__content {
    background: white;
    border-radius: 15px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    z-index: 10001;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.preferences-modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e9ecef;
}

.preferences-modal__header h2 {
    margin: 0;
    color: #3D3B39;
    font-size: 1.5rem;
}

.preferences-modal__close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #6c757d;
    padding: 5px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preferences-modal__close:hover {
    background: #f8f9fa;
    color: #3D3B39;
}

/* Preferences List */
.preferences-list {
    margin-bottom: 30px;
}

.preference-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid #f8f9fa;
}

.preference-item:last-child {
    border-bottom: none;
}

.preference-info h3 {
    margin: 0 0 8px 0;
    color: #3D3B39;
    font-size: 1.1rem;
}

.preference-info p {
    margin: 0 0 5px 0;
    color: #6c757d;
    font-size: 0.9rem;
}

.preference-info small {
    color: #8a94a6;
    font-size: 0.8rem;
}

.preference-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 24px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background-color: #2D7ED0;
}

input:checked + .toggle-slider:before {
    transform: translateX(26px);
}

input:disabled + .toggle-slider {
    background-color: #e9ecef;
    cursor: not-allowed;
}

.toggle-status {
    font-size: 0.8rem;
    color: #6c757d;
    font-weight: 500;
}

/* Modal Footer */
.preferences-modal__footer {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.preferences-button {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.preferences-button--primary {
    background: #2D7ED0;
    color: white;
}

.preferences-button--primary:hover {
    background: #1c6cb7;
}

.preferences-button--secondary {
    background: #6c757d;
    color: white;
}

.preferences-button--secondary:hover {
    background: #5a6268;
}

/* Status Badges */
.status-badge {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-enabled {
    background: #d4edda;
    color: #155724;
}

.status-disabled {
    background: #f8d7da;
    color: #721c24;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .cookie-notification {
        top: 80px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .preferences-modal__content {
        margin: 20px;
        padding: 20px;
    }
    
    .preference-item {
        flex-direction: column;
        gap: 15px;
    }
    
    .preference-toggle {
        align-self: flex-end;
    }
    
    .preferences-modal__footer {
        flex-direction: column;
    }
}.faqPage {
    min-height: 100vh;
    background: #ffffff;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.faqPage * {
    min-width: 0;
}

/* Hero Section */
.faq-hero {
    background: linear-gradient(135deg, #2D7ED0 0%, #1c6cb7 100%);
    color: white;
    padding: 120px 5% 80px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.faq-hero__content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-hero__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
}

.faq-hero__subtitle {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    margin-bottom: 30px;
    font-weight: 300;
    opacity: 0.9;
}

.faq-hero__description {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 40px;
}

/* Search Bar */
.faq-search {
    max-width: 600px;
    margin: 0 auto;
}

.search-container {
    position: relative;
    margin-bottom: 10px;
}

.search-input {
    width: 100%;
    padding: 18px 50px 18px 25px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.search-input:focus {
    outline: none;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.search-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: #6c757d;
}

.search-results__count {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    margin: 0;
}

/* Popular Questions */
.popular-questions {
    padding: 80px 5%;
    background: #f8f9fa;
    width: 100%;
    box-sizing: border-box;
}

.popular-questions__container {
    max-width: 1200px;
    margin: 0 auto;
}

.popular-questions__title {
    font-size: clamp(2rem, 3vw, 2.5rem);
    color: #3D3B39;
    text-align: center;
    margin-bottom: 60px;
}

.popular-questions__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.popular-question-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border-left: 4px solid #2D7ED0;
}

.popular-question-card:hover {
    transform: translateY(-5px);
}

.popular-question__title {
    font-size: 1.3rem;
    color: #3D3B39;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.popular-question__answer {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.5;
    margin-bottom: 20px;
}

.popular-question__link {
    background: none;
    border: none;
    color: #2D7ED0;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
    font-size: 0.9rem;
}

.popular-question__link:hover {
    color: #1c6cb7;
    text-decoration: none;
}

/* Quick Help */
.quick-help {
    padding: 80px 5%;
    background: white;
    width: 100%;
    box-sizing: border-box;
}

.quick-help__container {
    max-width: 1200px;
    margin: 0 auto;
}

.quick-help__title {
    font-size: clamp(2rem, 3vw, 2.5rem);
    color: #3D3B39;
    text-align: center;
    margin-bottom: 60px;
}

.quick-help__actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.help-action {
    text-align: center;
    padding: 40px 30px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.help-action:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.help-action__icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.help-action h3 {
    font-size: 1.5rem;
    color: #2D7ED0;
    margin-bottom: 15px;
    font-weight: 600;
}

.help-action p {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.5;
    margin-bottom: 25px;
}

.help-action__button {
    padding: 12px 25px;
    border: 2px solid #2D7ED0;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    background: #2D7ED0;
    color: white;
}

.help-action__button:hover {
    background: #1c6cb7;
    border-color: #1c6cb7;
    transform: translateY(-2px);
    text-decoration: none;
    color: white;
}

/* Main FAQ Content */
.faq-content {
    padding: 80px 5%;
    background: #f8f9fa;
    width: 100%;
    box-sizing: border-box;
}

.faq-content__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
}

/* Categories Navigation */
.faq-categories {
    position: sticky;
    top: 100px;
    align-self: start;
}

.faq-categories__title {
    font-size: 1.25rem;
    color: #3D3B39;
    margin-bottom: 20px;
    font-weight: 600;
}

.faq-categories__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-category {
    background: white;
    border: none;
    padding: 15px 20px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
    font-family: inherit;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.faq-category:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-category.active {
    background: #2D7ED0;
    color: white;
    box-shadow: 0 5px 15px rgba(45, 126, 208, 0.3);
}

.faq-category__icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.faq-category__title {
    flex: 1;
    font-weight: 500;
}

.faq-category__count {
    background: rgba(255,255,255,0.2);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.faq-category.active .faq-category__count {
    background: rgba(255,255,255,0.3);
}

/* Questions Area */
.faq-questions {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    min-height: 500px;
}

.category-header {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}

.category-title {
    font-size: 2rem;
    color: #3D3B39;
    margin-bottom: 10px;
    font-weight: 600;
}

.category-description {
    color: #6c757d;
    margin: 0;
}

/* FAQ Items */
.faq-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border: 1px solid #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #2D7ED0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-item__question {
    background: none;
    border: none;
    padding: 25px 30px;
    width: 100%;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #3D3B39;
    transition: background-color 0.3s ease;
    font-family: inherit;
}

.faq-item__question:hover {
    background: #f8f9fa;
}

.faq-item__icon {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
    color: #6c757d;
}

.faq-item__icon.open {
    transform: rotate(180deg);
}

.faq-item__answer {
    padding: 0 30px 25px;
    border-top: 1px solid #e9ecef;
}

.faq-item__answer p {
    margin: 0;
    color: #6c757d;
    line-height: 1.6;
    font-size: 1rem;
}

/* Search View */
.search-view__title {
    font-size: 1.75rem;
    color: #3D3B39;
    margin-bottom: 30px;
    font-weight: 600;
}

.search-questions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.no-results {
    text-align: center;
    padding: 60px 40px;
}

.no-results__icon {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-results h3 {
    font-size: 1.5rem;
    color: #3D3B39;
    margin-bottom: 15px;
}

.no-results p {
    color: #6c757d;
    margin-bottom: 25px;
}

.no-results__button {
    background: #2D7ED0;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.no-results__button:hover {
    background: #1c6cb7;
    transform: translateY(-2px);
}

/* Contact CTA */
.faq-cta {
    padding: 80px 5%;
    background: linear-gradient(135deg, #1a3d7c 0%, #2D7ED0 100%);
    color: white;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.faq-cta__container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-cta__title {
    font-size: clamp(2rem, 3vw, 2.5rem);
    margin-bottom: 20px;
}

.faq-cta__description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.faq-cta__actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button--primary {
    background: white;
    color: #2D7ED0;
}

.cta-button--primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    text-decoration: none;
    color: #2D7ED0;
}

.cta-button--secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button--secondary:hover {
    background: white;
    color: #2D7ED0;
    transform: translateY(-2px);
    text-decoration: none;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .faq-content__container {
        grid-template-columns: 250px 1fr;
        gap: 40px;
    }

    .popular-questions__grid,
    .quick-help__actions {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .faq-hero,
    .popular-questions,
    .quick-help,
    .faq-content,
    .faq-cta {
        padding: 60px 20px;
    }

    .faq-content__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-categories {
        position: static;
    }

    .faq-categories__list {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 10px;
        gap: 15px;
    }

    .faq-category {
        flex-shrink: 0;
        white-space: nowrap;
    }

    .faq-questions {
        padding: 30px 25px;
    }

    .faq-item__question {
        padding: 20px 25px;
        font-size: 1rem;
    }

    .faq-item__answer {
        padding: 0 25px 20px;
    }

    .help-action {
        padding: 30px 20px;
    }

    .faq-cta__actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
    }
}

@media screen and (max-width: 480px) {
    .faq-hero,
    .popular-questions,
    .quick-help,
    .faq-content,
    .faq-cta {
        padding: 40px 15px;
    }

    .faq-hero {
        padding-top: 120px;
    }

    .popular-question-card,
    .help-action {
        padding: 25px 20px;
    }

    .faq-questions {
        padding: 25px 20px;
    }

    .faq-item__question {
        padding: 18px 20px;
    }

    .faq-item__answer {
        padding: 0 20px 18px;
    }
}.privacyPolicyPage {
    min-height: 100vh;
    background: #ffffff;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.privacyPolicyPage * {
    min-width: 0;
}

/* Hero Section */
.privacyPolicy-hero {
    background: linear-gradient(135deg, #1a3d7c 0%, #2D7ED0 100%);
    color: white;
    padding: 120px 5% 80px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.privacyPolicy-hero__content {
    max-width: 1200px;
    margin: 0 auto;
}

.privacyPolicy-hero__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
}

.privacyPolicy-hero__subtitle {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    margin-bottom: 30px;
    font-weight: 300;
    opacity: 0.9;
}

.privacyPolicy-hero__description {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    line-height: 1.6;
    opacity: 0.8;
    max-width: 800px;
    margin: 0 auto 30px;
}

.privacyPolicy-hero__meta {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.meta-item {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Quick Actions */
.privacyPolicy-actions {
    padding: 80px 5%;
    background: #f8f9fa;
    width: 100%;
    box-sizing: border-box;
}

.privacyPolicy-actions__container {
    max-width: 1200px;
    margin: 0 auto;
}

.privacyPolicy-actions__title {
    font-size: clamp(2rem, 3vw, 2.5rem);
    color: #3D3B39;
    text-align: center;
    margin-bottom: 60px;
}

.privacy-actions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.privacy-action-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.privacy-action-card:hover {
    transform: translateY(-5px);
}

.action-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.privacy-action-card h3 {
    font-size: 1.5rem;
    color: #2D7ED0;
    margin-bottom: 15px;
    font-weight: 600;
}

.privacy-action-card p {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.5;
    margin-bottom: 25px;
}

.privacy-action-button {
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-sizing: border-box;
    width: 100%;
    text-align: center;
}

.privacy-action-button {
    background: #2D7ED0;
    color: white;
}

.privacy-action-button:hover {
    background: #1c6cb7;
    transform: translateY(-2px);
    text-decoration: none;
    color: white;
}

.privacy-action-button--secondary {
    background: #6c757d;
    color: white;
}

.privacy-action-button--secondary:hover {
    background: #5a6268;
    color: white;
}

.privacy-action-button--link {
    background: transparent;
    color: #2D7ED0;
    text-decoration: underline;
    border: none;
}

.privacy-action-button--link:hover {
    color: #1c6cb7;
    text-decoration: none;
}

/* Main Content */
.privacyPolicy-content {
    padding: 80px 5%;
    background: white;
    width: 100%;
    box-sizing: border-box;
}

.privacyPolicy-content__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    width: 100%;
    box-sizing: border-box;
}

/* Navigation Sidebar */
.privacy-policy-nav {
    position: sticky;
    top: 100px;
    align-self: start;
    width: 100%;
}

.privacy-policy-nav__title {
    font-size: 1.25rem;
    color: #3D3B39;
    margin-bottom: 20px;
    font-weight: 600;
}

.privacy-policy-nav__list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.privacy-policy-nav__item {
    margin-bottom: 10px;
    width: 100%;
}

.privacy-policy-nav__link {
    background: none;
    border: none;
    text-align: left;
    padding: 12px 20px;
    width: 100%;
    font-size: 1rem;
    color: #6c757d;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: inherit;
    position: relative;
    box-sizing: border-box;
    display: block;
}

.privacy-policy-nav__link:hover {
    background: #f8f9fa;
    color: #2D7ED0;
    transform: translateX(5px);
}

.privacy-policy-nav__link.active {
    background: #2D7ED0;
    color: white;
}

.privacy-policy-nav__link.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 60%;
    background: white;
    border-radius: 0 2px 2px 0;
}

/* Policy Content */
.privacy-policy-content {
    min-height: 600px;
    width: 100%;
    box-sizing: border-box;
}

.privacy-policy-section {
    margin-bottom: 60px;
    scroll-margin-top: 100px;
    width: 100%;
    box-sizing: border-box;
}

.privacy-policy-section__title {
    font-size: 1.75rem;
    color: #3D3B39;
    margin-bottom: 20px;
    font-weight: 600;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.privacy-policy-section__content {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #6c757d;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}

.privacy-policy-section__content p {
    margin-bottom: 20px;
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
    box-sizing: border-box;
}

.privacy-policy-section__content ul {
    margin: 20px 0;
    padding-left: 20px;
    max-width: 100%;
    box-sizing: border-box;
}

.privacy-policy-section__content li {
    margin-bottom: 8px;
    line-height: 1.6;
    overflow-wrap: break-word;
    word-break: break-word;
    box-sizing: border-box;
}

/* Data Retention Table */
.data-retention {
    margin: 80px 0;
    width: 100%;
    box-sizing: border-box;
}

.data-retention__title {
    font-size: 1.75rem;
    color: #3D3B39;
    margin-bottom: 30px;
    font-weight: 600;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.data-retention__table {
    border: 1px solid #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    background: white;
    width: 100%;
    box-sizing: border-box;
}

.retention-table-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: #2D7ED0;
    color: white;
    font-weight: 600;
    width: 100%;
    box-sizing: border-box;
}

.retention-table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid #e9ecef;
    width: 100%;
    box-sizing: border-box;
}

.retention-table-row:last-child {
    border-bottom: none;
}

.retention-table-cell {
    padding: 15px;
    border-right: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
    min-width: 0;
    word-break: break-word;
}

.retention-table-row .retention-table-cell:last-child,
.retention-table-header .retention-table-cell:last-child {
    border-right: none;
}

.retention-table-row:nth-child(even) {
    background: #f8f9fa;
}

/* International Transfers */
.international-transfers {
    margin: 80px 0;
    width: 100%;
    box-sizing: border-box;
}

.international-transfers__title {
    font-size: 1.75rem;
    color: #3D3B39;
    margin-bottom: 20px;
    font-weight: 600;
}

.transfer-safeguards {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-top: 20px;
    border-left: 4px solid #2D7ED0;
}

.transfer-safeguards h4 {
    color: #2D7ED0;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

/* Compliance Section */
.compliance-section {
    padding: 80px 5%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    width: 100%;
    box-sizing: border-box;
}

.compliance-section__container {
    max-width: 1200px;
    margin: 0 auto;
}

.compliance-section__title {
    font-size: clamp(2rem, 3vw, 2.5rem);
    color: #3D3B39;
    text-align: center;
    margin-bottom: 60px;
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.compliance-item {
    background: white;
    padding: 40px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.compliance-item:hover {
    transform: translateY(-5px);
}

.compliance-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.compliance-item h3 {
    font-size: 1.3rem;
    color: #2D7ED0;
    margin-bottom: 15px;
    font-weight: 600;
}

.compliance-item p {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.5;
    margin: 0;
}

/* Contact Section */
.privacyPolicy-contact {
    padding: 80px 5%;
    background: #1a3d7c;
    color: white;
    width: 100%;
    box-sizing: border-box;
}

.privacyPolicy-contact__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.privacyPolicy-contact__title {
    font-size: clamp(2rem, 3vw, 2.5rem);
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-item strong {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-item a {
    color: #2D7ED0;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-item span {
    line-height: 1.5;
}

.privacyPolicy-contact__actions h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-action-button {
    padding: 15px 25px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-sizing: border-box;
    text-align: center;
}

.contact-action-button--primary {
    background: white;
    color: #1a3d7c;
}

.contact-action-button--primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    text-decoration: none;
    color: #1a3d7c;
}

.contact-action-button--secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.contact-action-button--secondary:hover {
    background: white;
    color: #1a3d7c;
    transform: translateY(-2px);
    text-decoration: none;
}

.contact-action-button--link {
    background: transparent;
    color: white;
    text-decoration: underline;
    border: none;
}

.contact-action-button--link:hover {
    color: #2D7ED0;
    text-decoration: none;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .privacyPolicy-content__container {
        grid-template-columns: 250px 1fr;
        gap: 40px;
    }

    .privacy-actions-grid,
    .compliance-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .privacyPolicy-contact__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media screen and (max-width: 768px) {
    .privacyPolicy-hero,
    .privacyPolicy-actions,
    .privacyPolicy-content,
    .compliance-section,
    .privacyPolicy-contact {
        padding: 60px 20px;
    }

    .privacyPolicy-content__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .privacy-policy-nav {
        position: static;
    }

    .privacy-policy-nav__list {
        display: flex;
        overflow-x: auto;
        gap: 10px;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .privacy-policy-nav__list::-webkit-scrollbar {
        display: none;
    }

    .privacy-policy-nav__item {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .privacy-policy-nav__link {
        white-space: nowrap;
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    .privacy-actions-grid,
    .compliance-grid {
        grid-template-columns: 1fr;
    }

    .retention-table-header,
    .retention-table-row {
        grid-template-columns: 1fr;
    }

    .retention-table-cell {
        border-right: none;
        border-bottom: 1px solid #e9ecef;
        padding: 12px;
    }

    .retention-table-cell:last-child {
        border-bottom: none;
    }

    .retention-table-header .retention-table-cell {
        background: #2D7ED0;
        color: white;
        font-weight: 600;
        border-bottom: 1px solid #1c6cb7;
    }

    .privacy-action-card,
    .compliance-item {
        padding: 30px 20px;
    }
}

@media screen and (max-width: 480px) {
    .privacyPolicy-hero,
    .privacyPolicy-actions,
    .privacyPolicy-content,
    .compliance-section,
    .privacyPolicy-contact {
        padding: 40px 15px;
    }

    .privacyPolicy-hero {
        padding-top: 120px;
    }

    .privacyPolicy-hero__meta {
        flex-direction: column;
        gap: 10px;
    }

    .privacy-action-card,
    .compliance-item {
        padding: 25px 15px;
    }

    .contact-actions {
        gap: 10px;
    }

    .contact-action-button {
        width: 100%;
    }
}.sendParcelPage {
    min-height: 100vh;
    background: #ffffff;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.sendParcelPage * {
    min-width: 0;
}

/* Hero Section */
.send-parcel-hero {
    background: linear-gradient(135deg, #2D7ED0 0%, #1c6cb7 100%);
    color: white;
    padding: 120px 5% 80px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.send-parcel-hero__content {
    max-width: 800px;
    margin: 0 auto;
}

.send-parcel-hero__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
}

.send-parcel-hero__subtitle {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    margin-bottom: 30px;
    font-weight: 300;
    opacity: 0.9;
}

.send-parcel-hero__description {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    line-height: 1.6;
    opacity: 0.8;
}

/* Main Form */
.send-parcel-form {
    padding: 80px 5%;
    background: #f8f9fa;
    width: 100%;
    box-sizing: border-box;
}

.send-parcel-form__container {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    overflow: hidden;
}

/* Step Indicator */
.step-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.step-item {
    display: flex;
    align-items: center;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e9ecef;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.step-number.active {
    background: #2D7ED0;
    color: white;
}

.step-label {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 10px;
    font-size: 0.8rem;
    color: #6c757d;
    white-space: nowrap;
    font-weight: 500;
}

.step-connector {
    width: 100px;
    height: 2px;
    background: #e9ecef;
    margin: 0 20px;
}

/* Form Steps */
.parcel-form {
    padding: 0;
}

.form-step {
    padding: 40px;
}

.form-step__title {
    font-size: 2rem;
    color: #3D3B39;
    margin-bottom: 40px;
    font-weight: 600;
    text-align: center;
}

/* Package Type Selection */
.package-type-selection {
    margin-bottom: 40px;
}

.package-type-selection h3 {
    font-size: 1.3rem;
    color: #3D3B39;
    margin-bottom: 20px;
    font-weight: 600;
}

.package-type-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.package-type-card {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.package-type-card:hover {
    border-color: #2D7ED0;
    transform: translateY(-2px);
}

.package-type-input {
    display: none;
}

.package-type-input:checked + .package-type-content {
    color: #2D7ED0;
}

.package-type-input:checked ~ .package-type-card {
    border-color: #2D7ED0;
    background: #f8f9fa;
}

.package-type-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.package-type-icon {
    font-size: 2rem;
}

.package-type-name {
    font-weight: 600;
    font-size: 1rem;
}

.package-type-weight {
    font-size: 0.8rem;
    color: #6c757d;
}

/* Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    color: #3D3B39;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-group input,
.form-group select {
    padding: 12px 15px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #2D7ED0;
    box-shadow: 0 0 0 3px rgba(45, 126, 208, 0.1);
}

.dimensions-inputs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

/* Address Sections */
.address-sections {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.address-section {
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 4px solid #2D7ED0;
}

.address-section h3 {
    font-size: 1.3rem;
    color: #3D3B39;
    margin-bottom: 25px;
    font-weight: 600;
}

/* Shipping Options */
.shipping-options,
.insurance-options {
    margin-bottom: 40px;
}

.shipping-options h3,
.insurance-options h3 {
    font-size: 1.3rem;
    color: #3D3B39;
    margin-bottom: 20px;
    font-weight: 600;
}

.shipping-options-grid,
.insurance-options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.shipping-option-card,
.insurance-option-card {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.shipping-option-card:hover,
.insurance-option-card:hover {
    border-color: #2D7ED0;
    transform: translateY(-2px);
}

.shipping-option-card input,
.insurance-option-card input {
    display: none;
}

.shipping-option-card input:checked + .shipping-option-content,
.insurance-option-card input:checked + .insurance-option-content {
    color: #2D7ED0;
}

.shipping-option-card input:checked ~ .shipping-option-card,
.insurance-option-card input:checked ~ .insurance-option-card {
    border-color: #2D7ED0;
    background: #f8f9fa;
}

.shipping-option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.shipping-option-name,
.insurance-option-name {
    font-weight: 600;
    font-size: 1rem;
}

.shipping-option-price,
.insurance-option-price {
    font-weight: 600;
    color: #2D7ED0;
}

.shipping-option-time {
    font-size: 0.9rem;
    color: #6c757d;
}

.insurance-option-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Additional Services */
.additional-services {
    margin-bottom: 40px;
}

.additional-services h3 {
    font-size: 1.3rem;
    color: #3D3B39;
    margin-bottom: 20px;
    font-weight: 600;
}

.service-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-option:hover {
    border-color: #2D7ED0;
    background: #f8f9fa;
}

.service-option input {
    margin: 0;
}

.service-option-text {
    font-weight: 500;
}

/* Price Summary */
.price-summary {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.price-summary h3 {
    font-size: 1.3rem;
    color: #3D3B39;
    margin-bottom: 20px;
    font-weight: 600;
}

.price-breakdown {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    padding-bottom: 8px;
    border-bottom: 1px solid #e9ecef;
}

.price-total {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    font-size: 1.2rem;
    color: #2D7ED0;
    padding-top: 10px;
    margin-top: 10px;
    border-top: 2px solid #e9ecef;
}

/* Payment Methods */
.payment-methods {
    margin-bottom: 40px;
}

.payment-methods h3 {
    font-size: 1.3rem;
    color: #3D3B39;
    margin-bottom: 20px;
    font-weight: 600;
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-option:hover {
    border-color: #2D7ED0;
}

.payment-option input {
    margin: 0;
}

.payment-option-content {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.payment-icon {
    font-size: 1.2rem;
}

.credit-card-form {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 40px;
}

/* Final Summary */
.final-summary {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.final-summary h3 {
    font-size: 1.3rem;
    color: #3D3B39;
    margin-bottom: 20px;
    font-weight: 600;
}

.summary-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding-bottom: 8px;
    border-bottom: 1px solid #e9ecef;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    font-size: 1.2rem;
    color: #2D7ED0;
    padding-top: 10px;
    margin-top: 10px;
    border-top: 2px solid #e9ecef;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 40px;
}

.form-button {
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    min-width: 150px;
}

.form-button--primary {
    background: #2D7ED0;
    color: white;
}

.form-button--primary:hover:not(:disabled) {
    background: #1c6cb7;
    transform: translateY(-2px);
}

.form-button--secondary {
    background: #6c757d;
    color: white;
}

.form-button--secondary:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

.form-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Success Step */
.success-step {
    padding: 60px 40px;
    text-align: center;
}

.success-content {
    max-width: 500px;
    margin: 0 auto;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.success-title {
    font-size: 2rem;
    color: #3D3B39;
    margin-bottom: 15px;
    font-weight: 600;
}

.success-message {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 30px;
}

.tracking-info {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
    border-left: 4px solid #28a745;
}

.tracking-number {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.tracking-number span {
    font-family: monospace;
    background: white;
    padding: 8px 15px;
    border-radius: 6px;
    border: 1px solid #e9ecef;
    color: #2D7ED0;
    font-weight: 600;
}

.tracking-instruction {
    color: #6c757d;
    margin: 0;
    font-size: 0.9rem;
}

.success-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.success-button {
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    min-width: 160px;
}

.success-button--primary {
    background: #2D7ED0;
    color: white;
}

.success-button--primary:hover {
    background: #1c6cb7;
    transform: translateY(-2px);
}

.success-button--secondary {
    background: #6c757d;
    color: white;
}

.success-button--secondary:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

/* Support Section */
.shipping-support {
    padding: 80px 5%;
    background: white;
    width: 100%;
    box-sizing: border-box;
}

.shipping-support__container {
    max-width: 1200px;
    margin: 0 auto;
}

.shipping-support__title {
    font-size: clamp(2rem, 3vw, 2.5rem);
    color: #3D3B39;
    text-align: center;
    margin-bottom: 60px;
}

.support-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.support-option {
    text-align: center;
    padding: 40px 30px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.support-option:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.support-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.support-option h3 {
    font-size: 1.5rem;
    color: #2D7ED0;
    margin-bottom: 15px;
    font-weight: 600;
}

.support-option p {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.5;
    margin-bottom: 25px;
}

.support-link {
    padding: 10px 20px;
    border: 2px solid #2D7ED0;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    background: #2D7ED0;
    color: white;
    display: inline-block;
}

.support-link:hover {
    background: #1c6cb7;
    border-color: #1c6cb7;
    transform: translateY(-2px);
    text-decoration: none;
    color: white;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .package-type-grid,
    .shipping-options-grid,
    .insurance-options-grid {
        grid-template-columns: 1fr;
    }

    .support-options {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media screen and (max-width: 768px) {
    .send-parcel-hero,
    .send-parcel-form,
    .shipping-support {
        padding: 60px 20px;
    }

    .form-step {
        padding: 30px 25px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .step-indicator {
        padding: 30px 20px;
    }

    .step-connector {
        width: 50px;
    }

    .step-label {
        font-size: 0.7rem;
    }

    .address-section {
        padding: 25px 20px;
    }

    .form-actions {
        flex-direction: column;
    }

    .form-button {
        width: 100%;
    }

    .success-actions {
        flex-direction: column;
    }

    .success-button {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .send-parcel-hero,
    .send-parcel-form,
    .shipping-support {
        padding: 40px 15px;
    }

    .send-parcel-hero {
        padding-top: 120px;
    }

    .form-step {
        padding: 25px 20px;
    }

    .step-indicator {
        padding: 25px 15px;
    }

    .step-connector {
        width: 30px;
        margin: 0 10px;
    }

    .package-type-card,
    .shipping-option-card,
    .insurance-option-card {
        padding: 15px;
    }

    .address-section {
        padding: 20px 15px;
    }

    .support-option {
        padding: 30px 20px;
    }
}

.package-type-card.selected {
    border-color: #2D7ED0;
    background: #f0f7ff;
}

.package-type-card.selected .package-type-content {
    color: #2D7ED0;
}

/* Form Layout with Cart */
.form-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    min-height: 600px;
}

.parcel-form {
    padding: 0;
}

/* Cart Sidebar */
.cart-sidebar {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    height: fit-content;
    position: sticky;
    top: 20px;
    border: 1px solid #e9ecef;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #2D7ED0;
}

.cart-header h3 {
    margin: 0;
    color: #3D3B39;
    font-size: 1.3rem;
}

.cart-total {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2D7ED0;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
    max-height: 300px;
    overflow-y: auto;
}

.cart-item {
    background: white;
    padding: 15px;
    border-radius: 8px;
    border-left: 3px solid #2D7ED0;
}

.cart-item-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 5px;
}

.cart-item-name {
    font-weight: 600;
    color: #3D3B39;
    font-size: 0.9rem;
    flex: 1;
    margin-right: 10px;
}

.cart-item-price {
    font-weight: 700;
    color: #2D7ED0;
    font-size: 0.9rem;
}

.cart-item-description {
    font-size: 0.8rem;
    color: #6c757d;
    font-style: italic;
}

.cart-delivery-info {
    background: white;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #e9ecef;
}

.delivery-route {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.route-from, .route-to {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.route-from strong, .route-to strong {
    color: #3D3B39;
    font-size: 0.8rem;
}

.cart-footer {
    border-top: 2px solid #e9ecef;
    padding-top: 15px;
}

.cart-subtotal, .cart-tax, .cart-grand-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.cart-subtotal, .cart-tax {
    font-size: 0.9rem;
    color: #6c757d;
}

.cart-grand-total {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2D7ED0;
    padding-top: 10px;
    border-top: 1px solid #e9ecef;
    margin-top: 10px;
}

/* Additional Services Grid */
.service-options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.service-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.service-option:hover {
    border-color: #2D7ED0;
    transform: translateY(-1px);
}

.service-option input[type="checkbox"]:checked + .service-option-content {
    color: #2D7ED0;
}

.service-option input[type="checkbox"]:checked ~ .service-option {
    border-color: #2D7ED0;
    background: #f0f7ff;
}

.service-option-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.service-option-name {
    font-weight: 500;
    font-size: 0.9rem;
}

.service-option-price {
    font-weight: 600;
    color: #2D7ED0;
    font-size: 0.9rem;
}

/* Insurance Options Update */
.insurance-option-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.insurance-option-coverage {
    font-size: 0.8rem;
    color: #6c757d;
    font-style: italic;
}

/* Package Type Price */
.package-type-price {
    font-size: 0.8rem;
    color: #2D7ED0;
    font-weight: 600;
    margin-top: 5px;
}

/* Responsive Design Updates */
@media screen and (max-width: 1024px) {
    .form-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cart-sidebar {
        position: static;
        order: -1;
    }
    
    .service-options-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .form-layout {
        gap: 20px;
    }
    
    .cart-sidebar {
        padding: 20px;
    }
    
    .cart-header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .cart-sidebar {
        padding: 15px;
    }
    
    .cart-item {
        padding: 12px;
    }
}.TrackingPackagePage {
    min-height: 100vh;
    background: #f8f9fa;
}

/* Hero Section */
.tracking-hero {
    background: linear-gradient(135deg, #2D7ED0 0%, #1c6cb7 100%);
    color: white;
    padding: 80px 5% 60px;
    text-align: center;
}

.tracking-hero__container {
    max-width: 800px;
    margin: 0 auto;
}

.tracking-hero__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 15px;
}

.tracking-hero__subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

/* Search Section */
.tracking-search {
    display: flex;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.tracking-search__input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-family: inherit;
}

.tracking-search__input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.tracking-search__button {
    padding: 15px 30px;
    background: #ff6b35;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.tracking-search__button:hover:not(:disabled) {
    background: #e55a2b;
    transform: translateY(-2px);
}

.tracking-search__button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Loading State */
.tracking-loading {
    text-align: center;
    padding: 60px 20px;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #2D7ED0;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Results Section */
.tracking-results {
    padding: 40px 5%;
}

.tracking-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Two Column Layout */
.tracking-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.tracking-left {
    position: sticky;
    top: 20px;
}

.tracking-right {
    min-height: 600px;
}

/* Package Overview */
.package-overview {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.package-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e9ecef;
}

.package-tracking-number {
    display: flex;
    align-items: center;
    gap: 20px;
}

.package-tracking-number h2 {
    margin: 0;
    color: #3D3B39;
    font-size: 1.5rem;
}

.status-badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    color: white;
}

.status-in_transit { 
    background: #007bff; 
}

/* Package Info Grid */
.package-info-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #2D7ED0;
}

.info-card h3 {
    margin: 0 0 15px 0;
    color: #3D3B39;
    font-size: 1.1rem;
}

.info-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.info-details div {
    display: flex;
    justify-content: space-between;
}

.info-details strong {
    color: #3D3B39;
}

/* Tracking Timeline */
.tracking-timeline {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    height: fit-content;
    max-height: 80vh;
    overflow-y: auto;
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e9ecef;
}

.timeline-header h3 {
    margin: 0;
    color: #3D3B39;
    font-size: 1.3rem;
}

.timeline-stats {
    display: flex;
    gap: 15px;
}

.stat-item {
    background: #f8f9fa;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #6c757d;
}

.stat-item strong {
    color: #2D7ED0;
}

.timeline {
    position: relative;
}

.timeline-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    transition: transform 0.2s ease;
}

.timeline-item:hover {
    transform: translateX(5px);
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline-dot {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    z-index: 2;
    transition: transform 0.2s ease;
}

.timeline-item:hover .timeline-dot {
    transform: scale(1.1);
}

.timeline-line {
    flex: 1;
    width: 3px;
    background: #e9ecef;
    margin: 5px 0;
}

.timeline-content {
    flex: 1;
    padding: 5px 0;
}

.timeline-date {
    font-weight: 600;
    color: #2D7ED0;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.timeline-event {
    font-size: 1rem;
    color: #3D3B39;
    margin-bottom: 5px;
}

.timeline-status {
    font-size: 0.8rem;
    color: #6c757d;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Not Found State */
.tracking-not-found {
    padding: 60px 20px;
    text-align: center;
}

.not-found-content {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.not-found-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.not-found-content h3 {
    color: #dc3545;
    margin-bottom: 15px;
}

.not-found-content p {
    color: #6c757d;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .tracking-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .tracking-left {
        position: static;
    }
    
    .tracking-timeline {
        max-height: none;
    }
}

@media (max-width: 768px) {
    .tracking-search {
        flex-direction: column;
    }
    
    .package-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .timeline-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .timeline-stats {
        width: 100%;
        justify-content: space-between;
    }
    
    .timeline-item {
        gap: 15px;
    }
    
    .timeline-dot {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .tracking-hero {
        padding: 60px 20px 40px;
    }
    
    .package-overview,
    .tracking-timeline {
        padding: 20px;
    }
    
    .info-details div {
        flex-direction: column;
        gap: 2px;
    }
    
    .package-info-grid {
        gap: 15px;
    }
}

/* Progress Status Styles */
.progress-status {
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
}

.progress-status.normal {
    background: #d4edda;
    color: #155724;
}

.progress-status.delayed {
    background: #f8d7da;
    color: #721c24;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

.progress-stat.delayed {
    color: #dc3545;
    background: #f8d7da;
}

.progress-stat.delayed strong {
    color: #dc3545;
}

