
html {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    height: 100%;
}

*,
::before,
::after {
    box-sizing: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
}

.list-reset {
    margin: 0;
    padding: 0;
    list-style: none;
}

.btn-reset {
    padding: 0;
    border: none;
    background-color: transparent;
    cursor: pointer;
}

.flex {
    display: flex;
}

main {
            flex: 1;
        }

body {
    width: 100%;
    /*max-width: 1920px;*/
    min-width: 320px;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    background-color: rgba(245, 247, 250, 1);
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    height: 80px;
    border-bottom-right-radius: 32px;
    border-bottom-left-radius: 32px;
    border-bottom: 1px solid #FFFFFF;
    box-shadow: 0 5px 40px 0 rgba(0, 0, 0, 0.1);
}

.header {
    background: linear-gradient(135deg, rgba(0, 91, 255, 1) 0%, #3498db 100%);
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    margin-bottom: 30px;
    position: relative;
    width: 100%;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header__logo-icon {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: rgba(0, 91, 255, 1);
    font-size: 18px;
}

.header__logo-text {
    color: white;
    font-size: 22px;
    font-weight: 700;
}

.header__nav {
    display: flex;
    gap: 30px;
}

.header__nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.header__nav-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.15);
}

.header__nav-link:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.header__nav-link:hover:after {
    width: 70%;
}

.header__nav-link.active {
    color: white;
    background: rgba(255, 255, 255, 0.2);
}

.header__nav-link.active:after {
    width: 70%;
}

.header__user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header__user-name {
    color: white;
    font-weight: 500;
}

.header__user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.entrance {
    display: flex;
    align-items: center;
}

.header__link-login {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.header__link-login:hover {
    background: rgba(255, 255, 255, 0.15);
}

.header__link-login_entrance {
    margin: 0;
    font-weight: 500;
    font-size: 16px;
}

h1 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 40px;
    font-size: 32px;
    font-weight: 700;
    padding-bottom: 20px;
    border-bottom: 3px solid #005bff;
    position: relative;
}

h1:after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #005bff, #3498db);
    border-radius: 3px;
}

.personal-data {
    margin: 0 auto;
}

.personal-data-top {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    padding: 30px;
    background: #fff;
}

.personal-data-photo-container {
    position: relative;
    display: inline-block;
}

.personal-data-photo {
    display: block;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.personal-data-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 91, 255, 0.3);
}

.personal-data-photo-container:hover .photo-overlay {
    opacity: 1;
}

.personal-data-btn {
    padding: 12px 24px;
    background: transparent;
    color: #64748b;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.personal-data-btn:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    color: #475569;
    transform: translateY(-1px);
}

.personal-data-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: flex;
    gap: 25px;
}

.form-group {
    flex: 1;
    margin-bottom: 20px;
    width: 100%;
}

label {
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 16px;
}

.form-input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e3e8f0;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    background: #fafbfc;
}

.form-input:focus {
    outline: none;
    border-color: #005bff;
    box-shadow: 0 0 0 3px rgba(0, 91, 255, 0.1);
    background: white;
    transform: translateY(-2px);
}

.form-input::placeholder {
    color: #a0aec0;
}

.form-submit {
    display: block;
    margin: 30px auto 0;
    padding: 18px 50px;
    background: linear-gradient(135deg, #005bff, #3498db);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 91, 255, 0.3);
}

.form-submit:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #004ecc, #2980b9);
}


@media (max-height: 700px) {
    .container {
        padding: 4px;
    }

    .content {
        padding: 8px;
        border-radius: 6px;
    }

    h1 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .personal-data-top {
        padding: 8px;
        margin-bottom: 10px;
    }

    .personal-data-photo {
        width: 50px;
        height: 50px;
    }

    .form-input {
        padding: 6px 8px;
        height: 28px;
        font-size: 11px;
    }

    .form-submit {
        padding: 8px;
        height: 32px;
        font-size: 11px;
    }

    label {
        font-size: 10px;
    }

    .personal-data-btn {
        padding: 4px 8px;
        font-size: 10px;
    }
}

/* Для iPhone SE и других маленьких устройств */
@media (max-height: 600px) {
    .personal-data-photo {
        width: 40px;
        height: 40px;
    }

    .form-group {
        margin-bottom: 6px;
    }

    .personal-data-form {
        gap: 6px;
    }

    .form-input {
        height: 26px;
        font-size: 10px;
    }

    .personal-data-form {
        gap: 4px;
    }
}


.garage_container_top {

    max-width: 1200px;
    gap: 30px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 20px;
    align-items: flex-start;
    border-left: 4px solid #3498db;
}

.garage_detail_wrap_btn {
    display: flex;
    width: 25%;
}

.garage_img {
    flex: 0 0 200px;
    width: 250px;
    height: 100%;
    min-height: 200px;
    border-radius: 16px;
    object-fit: cover;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.garage_img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 91, 255, 0.3);
}

.garage_img img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.garage_list {
    flex: 1;
    text-align: left;
}

.garage_list ul{
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 15px;
    padding: 0;
}

.garage_list li {
    flex: 0 0 calc(50% - 15px);
}

.garage_list_item {
    font-size: 14px;
    color: #2c3e50;
    margin-bottom: 5px;
}

.garage_list p {
    margin: 0;
    color: #34495e;
}

.garage_btn {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin-top: auto;
    height: 100%;
}

 .garage_form_wrap {
     margin-bottom: 15px;
 }

 .garage_detail_btn {
     width: 25%;
     margin-right: 5px;
     padding: 12px 24px;
     background: transparent;
     color: #64748b;
     border: 2px solid #e2e8f0;
     border-radius: 8px;
     font-weight: 500;
     font-size: 14px;
     cursor: pointer;
     transition: all 0.3s ease;
 }

/*
.button {
    display: inline-block;
    padding: 13px 25px;
    border: 1px solid #005bff;
    border-radius: 10px;
    white-space: nowrap;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    color: white;
    background-color: #005bff;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.button:hover {
    background-color: #1a3cb7;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
*/
.garage_container_bottom {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin-top: 20px;
    border-left: 4px solid #3498db;
}

.form-group {
    margin-bottom: 15px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #2c3e50;
}

.form-input {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    font-family: sans-serif;
}

.form-input:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 5px rgba(52, 152, 219, 0.3);
}
/*
.personal_data_btn {
    display: inline-block;
    padding: 13px 25px;
    border: 1px solid #005bff;
    border-radius: 10px;
    white-space: nowrap;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    color: white;
    background-color: #005bff;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}
*/
.personal_data_btn:hover {
    background-color: #1a3cb7;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .content {
        min-width: unset;
        padding: 15px;
    }

    .container {
        padding: 10px;
    }

    h1 {
        font-size: 24px;
    }

    .garage_container_top {
        flex-direction: column;
        text-align: left;
        align-items: center;
    }

    .garage_list ul {
        flex-direction: column;
    }

    .garage_btn {
        width: 100%;
        margin-top: 20px;
    }

}

.orders-container {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #3498db;
}

.car-item {
    background: white;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.car-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.car-icon {
    width: 40px;
    height: 40px;
    background: #005bff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.car-info h3 {
    color: #2c3e50;
    margin-bottom: 5px;
    font-size: 18px;
}

.car-info p {
    color: #7f8c8d;
    font-size: 14px;
    margin: 0;
}

.orders-list {
    list-style: none;
    padding-left: 55px;
}

.order-item {
    margin-bottom: 12px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 3px solid #3498db;
    transition: all 0.3s ease;
}

.order-item:hover {
    background: #e3f2fd;
    transform: translateX(5px);
}

.order-link {
    text-decoration: none;
    color: #2c3e50;
    display: block;
    font-weight: 500;
}

.order-date {
    color: #7f8c8d;
    font-size: 12px;
    margin-top: 5px;
}

.order-status {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    margin-left: 10px;
}

.status-completed {
    background: #d4edda;
    color: #155724;
}

.status-progress {
    background: #fff3cd;
    color: #856404;
}

.status-cancelled {
    background: #f8d7da;
    color: #721c24;
}

.no-orders {
    text-align: center;
    color: #7f8c8d;
    padding: 40px;
    font-style: italic;
}


@media (max-width: 768px) {
    .cc_navigation_container {
        display: none;
    }

    .content {
        min-width: unset;
        padding: 15px;
    }

    .container {
        padding: 10px;
    }

    h1 {
        font-size: 24px;
    }

    .car-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .orders-list {
        padding-left: 0;
    }

    .order-item {
        padding: 10px;
    }
}

h2 {
    color: #34495e;
    margin: 25px 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
    font-size: 20px;
}

.form-section {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #3498db;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #2c3e50;
}

input, select, textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    font-family: "Montserrat", sans-serif;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 5px rgba(52, 152, 219, 0.3);
}

.radio-group, .checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
}

.radio-label {
    display: flex;
    align-items: center;
    font-weight: normal;
    cursor: pointer;
}

.radio-label input {
    width: auto;
    margin-right: 8px;
}

.button {
    display: inline-block;
    width: 250px;
    padding: 13px 25px;
    border: 1px solid rgba(0, 91, 255, 1);
    border-radius: 10px;
    white-space: nowrap;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    color: white;
    background: linear-gradient(135deg, rgba(0, 91, 255, 1) 0%, #3498db 100%);
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.button:focus {
    outline: none;
    background-color: #1a3cb7;
}

.button:hover {
    outline: none;
    background-color: #1a3cb7;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.button:active {
    outline: none;
    background-color: #0f2980;
}

.button-calculate {
    display: block;
    margin: 25px auto;
    width: 250px;
    padding: 15px;
}

.button-submit {
    display: block;
    margin: 25px auto;
    width: 250px;
    padding: 15px;
    background: linear-gradient(135deg, #005bff, #3498db);
    border: none;
}

.required {
    color: #e74c3c;
}

 .garage_detail_btn {
     background: #FFFFFF;
     color: #004ecc;
     font-weight: 400;
 }

@media (max-width: 368px) {
    .orders-container {
        padding: 10px;
        border-radius: 6px;
    }

    .car-item {
        padding: 12px;
        margin-bottom: 12px;
    }

    .car-header {
        gap: 8px;
        margin-bottom: 10px;
        padding-bottom: 10px;
    }

    .car-icon {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .car-info h3 {
        font-size: 14px;
    }

    .car-info p {
        font-size: 11px;
    }

    .orders-list {
        padding-left: 36px;
    }

    .order-item {
        padding: 8px;
        margin-bottom: 6px;
    }

    .order-link {
        font-size: 13px;
    }

    .order-date {
        font-size: 10px;
    }

    .form_title {
    }

    margin: 0;
}

/*
@media (max-width: 768px) {
    .header__container {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }

    .header__nav {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer__content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer__nav {
        flex-direction: column;
        gap: 15px;
    }

    .footer__contact {
        flex-direction: column;
        gap: 10px;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer__links {
        flex-direction: column;
        gap: 10px;
    }

    .content {
        min-width: unset;
        padding: 15px;
    }

    .container {
        padding: 10px;
    }

    h1 {
        font-size: 24px;
    }

    .form-section {
        padding: 15px;
    }

    .radio-group, .checkbox-group {
        flex-direction: column;
        gap: 10px;
    }

    .button {
        width: 100%;
        max-width: none;
    }
}
*/
.cc_navigation_container {
    width: 250px;
    height: 100%;
    margin-right: 50px;
    border: 1px solid #efefef;
    border-radius: 15px;
    flex-direction: column;
    padding: 50px 20px;
    background-color: #FFFFFF;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.cc_navigation_main_title {
    padding-left: 15px;
    font-size: 20px;
    margin-bottom: 25px;
    color: #333;
}

.cc_navigation-title {
    font-size: 16px;
    font-weight: normal;
    margin: 0 0 12px 0;
    padding-left: 0;
}

.cc_navigation-title-link {
    display: flex;
    align-items: center;
    width: 100%;
    height: 40px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    padding: 8px 15px;
    text-decoration: none;
    color: #555;
    border-radius: 8px;
}

.cc_navigation-icon {
    margin-right: 15px;
    width: 20px;
    text-align: center;
    font-size: 16px;
    color: #777;
    transition: all 0.3s ease;
}

.cc_navigation-title-link:focus {
    outline: 2px solid rgba(0, 91, 255, 0.3);
    background-color: #f8f9fa;
}

.cc_navigation-title-link:hover {
    outline: none;
    border: 1px solid #e0e0e0;
    background-color: #f5f5f5;
    color: #333;
}

.cc_navigation-title-link:hover .cc_navigation-icon {
    color: #005bff;
    transform: translateX(2px);
}

.cc_navigation-title-link:active {
    color: rgba(0, 91, 255, 1);
    background-color: #e8f0fe;
}

.cc_navigation-title-link:active .cc_navigation-icon {
    color: rgba(0, 91, 255, 1);
}

/* Активное состояние (если нужно выделить текущую страницу) */
.cc_navigation-title-link.active {
    background-color: #005bff;
    color: white;
    border-color: #005bff;
}

.cc_navigation-title-link.active .cc_navigation-icon {
    color: white;
}

/* Стили для footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 40px 0 20px;
    margin-top: 50px;
}

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

.footer__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer__logo-icon {
    width: 32px;
    height: 32px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #2250ea;
    font-size: 14px;
}

.footer__logo-text {
    color: white;
    font-size: 18px;
    font-weight: 600;
}

.footer__nav {
    display: flex;
    gap: 25px;
}

.footer__nav-link {
    color: #ecf0f1;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer__nav-link:hover {
    color: #3498db;
}

.footer__contact {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer__contact-phone {
    color: white;
    font-weight: 500;
}

.footer__contact-time {
    color: #bdc3c7;
    font-size: 14px;
}

.footer__divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 20px 0;
}

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

.footer__copyright {
    color: #bdc3c7;
    font-size: 14px;
}

.footer__links {
    display: flex;
    gap: 20px;
}

.footer__link {
    color: #bdc3c7;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer__link:hover {
    color: #3498db;
}

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

.content {
    margin: 0 auto;
    min-width: 720px;
    height: 100%;
    border: 1px solid #efefef;
    border-radius: 10px;
    background-color: white;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

h1 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 30px;
    font-size: 28px;
    padding-bottom: 15px;
    border-bottom: 2px solid #2250ea;
}

h2 {
    color: #34495e;
    margin: 25px 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
    font-size: 20px;
}

.form-section {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #3498db;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #2c3e50;
}

input, select, textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    font-family: "Montserrat", sans-serif;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 5px rgba(52, 152, 219, 0.3);
}

.radio-group, .checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
}

.radio-label {
    display: flex;
    align-items: center;
    font-weight: normal;
    cursor: pointer;
}

.radio-label input {
    width: auto;
    margin-right: 8px;
}
/*
.button {
    display: inline-block;
    padding: 13px 25px;
    border: 1px solid #2250ea;
    border-radius: 10px;
    white-space: nowrap;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    color: white;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}
*/
.button:focus {
    outline: none;
    background-color: #1a3cb7;
}

.button:hover {
    outline: none;
    background-color: #1a3cb7;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.button:active {
    outline: none;
    background-color: #0f2980;
}

.button-calculate {
    display: block;
    margin: 25px auto;
    width: 250px;
    padding: 15px;
    background: linear-gradient(135deg, #005bff, #3498db);
}

.button-submit {
    display: block;
    margin: 25px auto;
    width: 250px;
    padding: 15px;
    background: linear-gradient(135deg, #005bff, #3498db);
    border: none;
}

.required {
    color: #e74c3c;
}

@media (max-width: 768px) {
    .footer {
        display: none;
    !important;
    }

    .content {
        min-width: unset;
        padding: 15px;
    }

    .container {
        padding: 0;
    }

    h1 {
        font-size: 24px;
    }

    .form-section {
        padding: 15px;
    }

    .radio-group, .checkbox-group {
        flex-direction: column;
        gap: 10px;
    }

    .button {
       /* width: 100%;*/
        max-width: none;
    }

    .header__logo-icon {
        display: none;
    }

    .header__logo-text {
        display: none;
    }

}

@media (max-width: 368px) {
    h2 {
        font-size: 16px;
        margin: 0;
    }

    select, input {
        padding: 5px;
        font-size: 14px;
    }

    .form-section {
        margin: 10px;
    }


    .button-calculate {
        width: 90%;
        margin: 0 auto;
        padding: 10px;
        background: linear-gradient(135deg, #005bff, #3498db);
    }

    .button {
        /*width: 90%;*/
        margin: 0 auto;
        padding: 10px;
        background: linear-gradient(135deg, #005bff, #3498db);
    }

    .garage_detail_btn {
        width: 100%;
        background: #FFFFFF;
        color: #004ecc;
    }
}

@media (max-width: 368px) {
    .footer, .cc_navigation_container {
        display: none !important;
    }

    .container {
        padding: 10px;
        flex-direction: column;
    }

    .content {
        padding: 0;
        border: none;
    }
/*
    .cc_navigation_container {
        width: 90%;
        height: 600px;
        margin: 0 auto 10px auto;
    }
*/
    h1 {
        font-size: 20px;
        margin-bottom: 5px;
        padding-bottom: 0;
    }

    .personal-data {
        width: 100%;
        height: 100%;
        padding: 15px;
        display: flex;
        flex-direction: column;
    }

    .personal-data-top {
        gap: 10px;
        margin-bottom: 10px;
        flex-direction: column;

    }

    .form-group {
        width: 100%;
        margin-bottom: 10px;
        padding-bottom: 5px;
        border-bottom: 1px solid #e3e8f0;
    }

    label {
        margin-bottom: 3px;
        font-size: 14px;
        font-weight: 500;
        display: block;
        width: 100%;
    }

    .form-input {
        padding: 0;
        font-size: 14px;
        border: none;
        width: 100%;
    }

    .personal-data-photo {
        width: 80px;
        height: 80px;
    }

    .personal-data-form {
        width: 100%;
        gap: 0;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .form-group-order-service {
        display: none;
    }

    .car-details {
        display: none;
    }

    textarea {
        height: 30px;
        padding: 5px;
        font-size: 14px;
    }

    .garage_container {
        margin-bottom: 0;
    }

    .garage_form_wrap {
        margin-bottom: 8px;
    }

    .garage_detail_btn {
        width: 100px;
        margin-right: 5px;
        font-size: 16px;
        font-weight: 500;
        background: white;
        color: #004ecc;
    }

    .garage_detail_btn:hover {
        color: white;
        background: linear-gradient(135deg, rgba(0, 91, 255, 1) 0%, #3498db 100%);
        transition: all 0.3s ease;
    }

}

.password-form-input {
    margin-bottom: 15px;
}

.password-link {
    color: #005bff;
    transition: all 0.3s ease;
    position: relative;
}

.password-link:hover {
    color: #0f2980;
}

.password-link:active {
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

/* Стили для бургер-меню */
.header__burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    margin-right: auto;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.header__burger span {
    width: 100%;
    height: 3px;
    margin-right: 5px;
    background-color: white;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.header__burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.header__burger.active span:nth-child(2) {
    opacity: 0;
}

.header__burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Мобильное меню */
.header__mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, rgba(0, 91, 255, 1) 0%, #3498db 100%);
    z-index: 1000;
    padding: 80px 20px 20px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.header__mobile-menu.active {
    transform: translateX(0);
}

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

.header__mobile-nav .header__nav-link {
    font-size: 18px;
    padding: 15px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    text-align: center;
}

.header__mobile-nav .header__nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Адаптивность */
@media (max-width: 768px) {
    .header__burger {
        display: flex;
    }

    .header__nav {
        display: none;
    }

    .header__mobile-menu.active {
        display: block;
    }

    .header__container {
        justify-content: space-between;
        padding: 15px 20px;
    }

    .header__logo-text {
        font-size: 18px;
    }

    .entrance {
        margin-left: auto;
        margin-right: 15px;
    }
}

@media (max-width: 480px) {
    .header__logo-text {
        font-size: 16px;
    }

    .header__user-name {
        display: none;
    }

    .header__mobile-nav .header__nav-link {
        font-size: 16px;
        padding: 12px;
    }
}

.menu-open {
    overflow: hidden;
}

/* Анимация для плавного открытия/закрытия */
.header__mobile-menu {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

/* Затемнение фона *//*
.header__mobile-menu::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}*/

.header__mobile-menu.active::before {
    opacity: 1;
    pointer-events: auto;
}
