* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #111;
    color: white;
    font-family: Arial, sans-serif;
}

.site-header {
    height: 90px;
    background: #050505;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
}

.logo {
    display: flex;
    align-items: center;
}

    .logo img {
        width: 250px;
        height: auto;
        display: block;
    }

.main-nav {
    display: flex;
    gap: 35px;
}

    .main-nav a {
        color: white;
        text-decoration: none;
        text-transform: uppercase;
        font-weight: bold;
        font-size: 14px;
    }

        .main-nav a:hover {
            color: #d71920;
        }

.logout-form {
    display: inline;
}

.logout-button {
    background: transparent;
    border: 1px solid #d71920;
    color: #fff;
    padding: 9px 18px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
}

    .logout-button:hover {
        background: #d71920;
    }

.header-btn {
    border: 1px solid #d71920;
    background: #d71920;
    color: white;
    padding: 16px 26px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 3px;
    transition: all 0.25s ease;
}

    .header-btn:hover {
        border: 1px solid #d71920;
        background: none;
        transition: all 0.25s ease;
    }

.hero {
    min-height: 70vh;
    background:
        linear-gradient(
        to right,
        rgba(255,255,255,0.88) 0%,
        rgba(255,255,255,0.74) 30%,
        rgba(255,255,255,0.32) 55%,
        rgba(0,0,0,0.12) 100% ),
        url('/images/hero.png');
    background-size: cover;
    background-position: center 72%;
    display: flex;
    align-items: center;
    padding: 0 60px;
}

.hero-content {
    max-width: 40rem;
}

.hero h1 {
    font-size: 48px;
    text-transform: uppercase;
    line-height: 1.1;
    color: #d71920;
}

.hero p {
    margin-top: 20px;
    font-size: 18px;
    color: #222;
}

.hero-buttons {
    margin-top: 30px;
    display: flex;
    gap: 16px;
}

.btn {
    padding: 15px 24px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-red {
    border: 1px solid #d71920;
    background: #d71920;
    color: white;
    transition: all 0.25s ease;
}

    .btn-red:hover {
        background: none;
        border: 1px solid #d71920;
        color: #111;
        transition: all 0.25s ease;
    }

.btn-outline {
    border: 1px solid #d71920;
    color: #111;
    transition: all 0.25s ease;
}

.btn-outline:hover {
    background: #d71920;
    color: white;
}

    .btn-outline i {
        color: #d71920;
        transition: all 0.25s ease;
    }
    
    .btn-outline:hover i{
        color: white;
    }

.services-section {
    background: #202020;
    padding: 70px 40px 85px;
    text-align: center;
}

    .services-section h2 {
        text-transform: uppercase;
        font-size: 30px;
        margin-bottom: 35px;
    }

.services-container {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.service-item {
    min-width: 0;
    padding: 25px 30px;
    border-left: 1px solid #444;
    border-right: 1px solid #444;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 22px;
}

.service-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border: 1px solid #d71920;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

    .service-item h3 {
        color: white;
        text-transform: uppercase;
        font-size: 22px;
        text-align: left;
    }

    .service-item p {
        margin-top: 8px;
        color: #ccc;
        font-size: 15px;
        text-align: left;
    }

.sold-section {
    background: #171717;
    padding: 90px 40px;
    text-align: center;
}

.section-label {
    color: #d71920;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.section-label::before,
.section-label::after {
    content: "";
    width: 55px;
    height: 1px;
    background: #d71920
}

.sold-section h2 {
    font-size: 32px;
    text-transform: uppercase;
}

.sold-carousel {
    max-width: 1600px;
    margin: 45px auto 0;
    overflow: hidden;
}

.sold-carousel-track {
    display: flex;
    gap: 32px;
    transition: transform 0.45s ease;
}

    .sold-carousel-track .car-card {
        flex: 0 0 calc((100% - 64px) / 3);
    }

.car-card {
    background: #222;
    border: 1px solid #333;
    text-align: left;
    overflow: hidden;
}

.car-info {
    padding: 26px 24px 30px;
}

.car-info h3 {
    border-top: 2px solid #d71920;
    padding-top: 15px;
    font-size: 24px;
    margin-bottom: 16px;
}

.car-specs {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0;
    color: #ccc;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
}

    .car-specs span {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        margin-right: 8px;
    }

        .car-specs span:not(:last-child)::after {
            content: "|";
            color: #d71920;
            margin-left: 8px;
        }

    .car-specs i {
        color: #aaa;
        font-size: 14px;
    }

.car-info p {
    color: #ccc;
    font-size: 15px;
}

.btn-outline-light {
    display: inline-block;
    margin-top: 35px;
    border: 1px solid #d71920;
    color: white;
    transition: all 0.25s ease;
}

    .btn-outline-light:hover {
        border: 1px solid #d71920;
        color: #d71920;
        transition: all 0.25s ease;
    }
.car-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

.benefits-section {
    background: #202020;
    padding: 80px 40px;
}

.benefits-grid {
    max-width: 1250px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.benefit-item {
    padding: 0 35px;
    text-align: center;
    border-left: 1px solid #444;
}

    .benefit-item:last-child {
        border-right: 1px solid #444;
    }

    .benefit-item i {
        color: #d71920;
        font-size: 48px;
        margin-bottom: 28px;
    }

    .benefit-item h3 {
        text-transform: uppercase;
        font-size: 20px;
        line-height: 1.3;
        margin-bottom: 18px;
    }

    .benefit-item p {
        color: #ccc;
        font-size: 15px;
        line-height: 1.6;
    }

.contact-section {
    background: white;
    color: #111;
    display: grid;
    grid-template-columns: 0.9fr 1.6fr;
    min-height: 360px;
}

.contact-info {
    padding: 55px 60px;
}

.contact-label {
    color: #d71920;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 30px;
}

    .contact-label::before {
        content: "";
        display: inline-block;
        width: 45px;
        height: 1px;
        background: #d71920;
        margin-right: 12px;
        vertical-align: middle;
    }

.contact-row {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 24px;
}

    .contact-row i {
        color: #d71920;
        font-size: 24px;
        width: 28px;
        margin-top: 4px;
    }

    .contact-row h4 {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .contact-row a {
        display: block;
        color: #111;
        text-decoration: none;
        font-size: 18px;
        margin-bottom: 5px;
        font-weight: bold;
    }

        .contact-row a:hover {
            color: #d71920;
        }

    .contact-row p {
        color: #555;
        font-size: 15px;
    }

.map-box {
    background: linear-gradient(rgba(255,255,255,0.2), rgba(255,255,255,0.2)), #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    font-size: 20px;
}

.site-footer {
    background: #050505;
    color: white;
    padding: 50px 40px 25px;
}

.footer-content {
    max-width: 1150px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.6fr 0.9fr 1fr;
    gap: 80px;
}

.footer-brand img {
    max-width: 380px;
    height: auto;
    margin-bottom: 18px;
}

.footer-brand p,
.footer-column p {
    color: #bbb;
    font-size: 15px;
    line-height: 1.6;
}

.footer-column h4 {
    text-transform: uppercase;
    font-size: 18px;
    margin-bottom: 18px;
}

.footer-column a {
    display: block;
    width: fit-content;
    color: #bbb;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 15px;
}

    .footer-column a:hover {
        color: #d71920;
    }

.footer-column i {
    color: #d71920;
    margin-right: 8px;
}

.footer-bottom {
    max-width: 1250px;
    margin: 40px auto 0;
    padding-top: 22px;
    border-top: 1px solid #222;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: #888;
    font-size: 14px;
}

.page-hero {
    min-height: 360px;
    background: 
        linear-gradient( 
        90deg,
        rgba(0, 0, 0, 0.88) 0%,
        rgba(0, 0, 0, 0.68) 38%,
        rgba(0, 0, 0, 0.25) 72%,
        rgba(0, 0, 0, 0.15) 100% ),
        url('/images/hero.png');
    background-size: cover;
    background-position: right 75%;
    display: flex;
    align-items: center;
    padding: 0 60px;
}

.page-hero-content {
    max-width: 720px;
}

.page-hero h1 {
    font-size: 56px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.page-hero p:last-child {
    color: #ddd;
    font-size: 18px;
    line-height: 1.6;
}

.about-section {
    background: #171717;
    padding: 90px 40px;
}

.about-content {
    max-width: 1350px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 42px;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 28px;
}

.about-text p {
    color: #ccc;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 18px;
}

.about-label {
    justify-content: flex-start;
}

    .about-label::before {
        display: none;
    }

.about-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border: 1px solid #333;
}

.about-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease;
}

    .about-slide.active {
        opacity: 1;
    }

.about-services {
    background: #202020;
    padding: 90px 40px;
    text-align: center;
}

    .about-services h2 {
        font-size: 36px;
        text-transform: uppercase;
        margin-bottom: 50px;
    }

.about-services-grid {
    max-width: 1250px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 28px;
}

    .about-services-grid .about-service-card {
        grid-column: span 2;
    }

        .about-services-grid .about-service-card:nth-child(4) {
            grid-column: 2 / span 2;
        }

        .about-services-grid .about-service-card:nth-child(5) {
            grid-column: 4 / span 2;
        }


.about-service-card {
    background: #171717;
    border: 1px solid #333;
    padding: 38px 28px;
    text-align: left;
}

    .about-service-card i {
        color: #d71920;
        font-size: 36px;
        margin-bottom: 24px;
    }

    .about-service-card h3 {
        text-transform: uppercase;
        font-size: 22px;
        margin-bottom: 16px;
    }

    .about-service-card p {
        color: #ccc;
        font-size: 15px;
        line-height: 1.6;
    }


.about-cta {
    background: linear-gradient(rgba(0,0,0,0.82), rgba(0,0,0,0.82)), url('/images/about/about-1.jpg');
    background-size: cover;
    background-position: center;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 70px 40px;
}

.about-cta-content {
    max-width: 850px;
    margin: 0 auto;
}

.about-cta h2 {
    font-size: 38px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.about-cta p {
    color: #ccc;
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 32px;
}

.about-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
}
.about-cta-buttons-contact{
    color: white;
}

.about-cta-buttons-cars:hover {
    color: white;
}

.import-intro {
    background: #171717;
    padding: 90px 40px;
    text-align: center;
}

.import-intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.import-label {
    justify-content: center;
}

.import-intro h2 {
    font-size: 38px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.import-intro p {
    color: #ccc;
    font-size: 17px;
    line-height: 1.7;
}

.import-steps {
    background: #202020;
    padding: 90px 40px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
}

.import-step {
    padding: 0 28px;
    text-align: center;
    border-left: 1px solid #444;
}

    .import-step:last-child {
        border-right: 1px solid #444;
    }

    .import-step span {
        color: #d71920;
        font-size: 38px;
        font-weight: bold;
        display: block;
        margin-bottom: 20px;
    }

    .import-step h3 {
        text-transform: uppercase;
        font-size: 22px;
        margin-bottom: 18px;
    }

    .import-step p {
        color: #ccc;
        font-size: 16px;
        line-height: 1.6;
    }

.import-cta {
    background: linear-gradient(rgba(0,0,0,0.82), rgba(0,0,0,0.82)), url('/images/import.jpg');
    background-size: cover;
    background-position: center;
    padding: 90px 40px;
    text-align: center;
    border-top: 1px solid #333;
}

.import-cta-content {
    max-width: 850px;
    margin: 0 auto;
}

.import-cta h2 {
    font-size: 38px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.import-cta p {
    color: #ccc;
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 32px;
}

.contact-page-section {
    background: #171717;
    padding: 90px 40px;
    text-align: center;
}

    .contact-page-section h2 {
        font-size: 38px;
        text-transform: uppercase;
        margin-bottom: 50px;
    }

.contact-cards {
    max-width: 1250px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.contact-card {
    background: #202020;
    border: 1px solid #333;
    padding: 50px 30px;
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.contact-phone-list {
    display: grid;
    gap: 8px;
}

    .contact-phone-list a {
        color: #ccc;
        text-decoration: none;
    }

        .contact-phone-list a:hover {
            color: #d71920;
        }

    .contact-card:hover {
        border-color: #d71920;
        transform: translateY(-4px);
    }

    .contact-card i {
        color: #d71920;
        font-size: 42px;
        margin-bottom: 22px;
    }

    .contact-card h3 {
        text-transform: uppercase;
        font-size: 21px;
        margin-bottom: 14px;
    }

    .contact-card p {
        color: #ccc;
        font-size: 15px;
        line-height: 1.6;
    }

.contact-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

    .contact-card-link:hover {
        border-color: #d71920;
        transform: translateY(-4px);
    }

        .contact-card-link:hover h3,
        .contact-card-link:hover p {
            color: white;
        }

        .contact-card-link:hover i {
            color: #ff2b33;
        }

.contact-map-section {
    background: #e3e3e3;
    padding: 0;
}

.contact-map-placeholder {
    width: 100%;
    height: 400px;
    overflow: hidden;
}
    .contact-map-placeholder iframe {
        width: 100%;
        height: 100%;
        border: 0;
        display: block;
    }

.contact-form-section {
    background: #171717;
    padding: 90px 40px;
}

.contact-form-content {
    max-width: 1250px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: start;
}

.contact-form-label {
    justify-content: flex-start;
}

    .contact-form-label::before {
        display: none;
    }

.contact-form-text h2 {
    font-size: 38px;
    text-transform: uppercase;
    margin-bottom: 44px;
}

.contact-form-text p {
    color: #ccc;
    font-size: 17px;
    line-height: 1.7;
}

.contact-form {
    display: grid;
    gap: 18px;
}

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        background: #202020;
        border: 1px solid #333;
        color: white;
        padding: 16px 18px;
        font-size: 16px;
        font-family: Arial, sans-serif;
        outline: none;
    }

        .contact-form input:focus,
        .contact-form textarea:focus {
            border-color: #d71920;
        }

    .contact-form textarea {
        min-height: 160px;
        resize: vertical;
    }

    .contact-form button {
        cursor: pointer;
        justify-self: start;
        padding: 16px 30px;
    }

    .contact-form button:hover{
        color: white;
    }

.contact-success-message {
    padding: 15px 18px;
    background: rgba(37, 160, 83, 0.14);
    border: 1px solid rgba(37, 160, 83, 0.65);
    color: #8ff0b2;
    font-size: 15px;
    line-height: 1.5;
}

.contact-validation {
    display: block;
    margin-top: 6px;
    color: #ff6b70;
    font-size: 14px;
}

.map-box iframe,
.contact-map-placeholder iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.map-box {
    min-height: 360px;
}

.contact-map-placeholder {
    min-height: 360px;
}

.cars-page-section {
    background: #171717;
    padding: 90px 40px;
}

.cars-page-header {
    text-align: center;
    margin-bottom: 45px;
}

    .cars-page-header h2 {
        font-size: 38px;
        text-transform: uppercase;
    }

.cars-filter {
    max-width: 1250px;
    margin: 0 auto 45px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 18px;
}

    .cars-filter input,
    .cars-filter select {
        background: #202020;
        border: 1px solid #333;
        color: white;
        padding: 16px 18px;
        font-size: 16px;
        outline: none;
    }

        .cars-filter input:focus,
        .cars-filter select:focus {
            border-color: #d71920;
        }

.inventory-grid {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.no-cars-message {
    grid-column: 1 / -1;
    text-align: center;
    color: #ccc;
    font-size: 18px;
    padding: 40px 0;
}

.inventory-card {
    background: #222;
    border: 1px solid #333;
    overflow: hidden;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

    .inventory-card:hover {
        transform: translateY(-4px);
        border-color: #d71920;
    }

.inventory-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

.inventory-info {
    padding: 26px 24px 30px;
}

    .inventory-info h3 {
        border-top: 2px solid #d71920;
        padding-top: 15px;
        font-size: 24px;
        margin-bottom: 16px;
    }

.inventory-bottom {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .inventory-bottom strong {
        color: white;
        font-size: 22px;
    }

.inventory-info h3 {
    min-height: 58px;
    line-height: 1.2;
}

.inventory-link {
    color: #d71920;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
}

    .inventory-link:hover {
        color: white;
    }

.car-details-section {
    background: #171717;
    padding: 90px 40px;
}

.car-details-container {
    max-width: 1350px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 55px;
    align-items: start;
}

.main-car-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    border: 1px solid #333;
}

.car-thumbnails {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

    .car-thumbnails img {
        width: 100%;
        aspect-ratio: 16 / 9;
        object-fit: cover;
        display: block;
        border: 1px solid #333;
        cursor: pointer;
        opacity: 0.75;
        transition: opacity 0.25s ease, border-color 0.25s ease;
    }

        .car-thumbnails img:hover {
            opacity: 1;
            border-color: #d71920;
        }

.car-details-info {
    background: #202020;
    border: 1px solid #333;
    padding: 42px;
}

.car-details-label {
    justify-content: flex-start;
}

    .car-details-label::before {
        display: none;
    }

.car-details-info h1 {
    font-size: 42px;
    text-transform: uppercase;
    line-height: 1.15;
    margin-bottom: 18px;
}

.car-details-price {
    color: #d71920;
    font-size: 34px;
    font-weight: bold;
    margin-bottom: 32px;
}

.details-specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 34px;
}

    .details-specs-grid div {
        background: #171717;
        border: 1px solid #333;
        padding: 20px;
    }

    .details-specs-grid i {
        color: #d71920;
        font-size: 24px;
        margin-bottom: 12px;
    }

    .details-specs-grid span {
        display: block;
        color: #aaa;
        font-size: 14px;
        margin-bottom: 6px;
    }

    .details-specs-grid strong {
        color: white;
        font-size: 17px;
    }

.car-description {
    margin-bottom: 32px;
}

    .car-description h2 {
        text-transform: uppercase;
        font-size: 24px;
        margin-bottom: 14px;
    }

    .car-description p {
        color: #ccc;
        font-size: 16px;
        line-height: 1.7;
    }

.car-details-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.details-call-btn {
    border: 1px solid #d71920;
    background: #d71920;
    color: white;
    transition: all 0.25s ease;
}

    .details-call-btn:hover {
        background: none;
        color: white;
    }

.details-contact-btn {
    color: white;
}

    .details-contact-btn:hover {
        background-color: #d71920;
        color: white;
    }

.add-car-section {
    background: #171717;
    padding: 90px 40px;
}

.add-car-container {
    max-width: 1050px;
    margin: 0 auto;
    background: #202020;
    border: 1px solid #333;
    padding: 45px;
}

.add-car-header {
    text-align: center;
    margin-bottom: 40px;
}

    .add-car-header h2 {
        font-size: 34px;
        text-transform: uppercase;
    }

.add-car-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    margin-bottom: 8px;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: #171717;
    border: 1px solid #333;
    color: white;
    padding: 15px 16px;
    font-size: 16px;
    font-family: Arial, sans-serif;
    outline: none;
}

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        border-color: #d71920;
    }

.form-group textarea {
    min-height: 180px;
    resize: vertical;
}

.form-group small {
    color: #aaa;
    margin-top: 8px;
    font-size: 13px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: none;
    font-size: 16px;
}

.checkbox-group input {
    width: auto;
}

.form-actions {
    display: flex;
    gap: 16px;
    margin-top: 10px;
}

.add-car-cancel-btn {
    color: white;
}

    .add-car-cancel-btn:hover {
        background: #d71920;
        color: white;
    }

.validation-message {
    display: block;
    margin-top: 6px;
    color: #ff5b5b;
    font-size: 13px;
}

.file-upload-input {
    display: none;
}

.file-upload-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border: 1px solid #d71920;
    border-radius: 4px;
    background: transparent;
    color: white;
    font-weight: 700;
    cursor: pointer;
}

    .file-upload-button:hover {
        background: #d71920;
    }

.image-preview-list {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 18px;
}

.image-preview-item {
    position: relative;
    width: 150px;
    height: 105px;
    overflow: hidden;
    border: 1px solid #444;
    border-radius: 4px;
    background: #171717;
    cursor: grab;
    transition: border-color 0.2s ease, opacity 0.2s ease;
}

    .image-preview-item:active {
        cursor: grabbing;
    }

    .image-preview-item.dragging {
        opacity: 0.45;
    }

    .image-preview-item.drag-over {
        border: 2px solid #d71920;
    }

    .image-preview-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.main-image-badge {
    position: absolute;
    left: 7px;
    bottom: 7px;
    padding: 5px 8px;
    border-radius: 3px;
    background: #d71920;
    color: white;
    font-size: 11px;
    font-weight: 700;
}

.remove-image-button {
    position: absolute;
    top: 7px;
    right: 7px;
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: 50%;
    background: #d71920;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .remove-image-button:hover {
        background: #ff3b43;
    }

.car-gallery-image {
    cursor: zoom-in;
}

.image-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: rgba(0, 0, 0, 0.92);
}

    .image-lightbox.active {
        display: flex;
    }

    .image-lightbox img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

.lightbox-close-button {
    position: absolute;
    top: 22px;
    right: 28px;
    width: 44px;
    height: 44px;
    border: 1px solid #555;
    border-radius: 50%;
    background: #171717;
    color: white;
    font-size: 22px;
    cursor: pointer;
}

    .lightbox-close-button:hover {
        border-color: #d71920;
        background: #d71920;
    }

.existing-image-item {
    cursor: grab;
}

    .existing-image-item:active {
        cursor: grabbing;
    }

    .existing-image-item.dragging {
        opacity: 0.45;
    }

    .existing-image-item.drag-over {
        border: 2px solid #d71920;
    }

.admin-action-form {
    display: inline-flex;
}

.move-to-sold-button {
    border: 1px solid #2f8f4e;
    background: transparent;
    color: #8ee6a9;
}

    .move-to-sold-button:hover {
        border-color: #3fbf66;
        background: #2f8f4e;
        color: white;
    }

.delete-car-button {
    border: 1px solid #7f1d1d;
    background: transparent;
    color: #ff6b6b;
}

    .delete-car-button:hover {
        border-color: #d71920;
        background: #d71920;
        color: white;
    }

.sold-count-1 .sold-carousel-track {
    justify-content: center;
}

.sold-count-1 .car-card {
    flex: 0 0 min(420px, 100%);
}

.sold-count-2 .sold-carousel-track {
    justify-content: center;
}

.sold-count-2 .car-card {
    flex: 0 0 calc((100% - 32px) / 2);
}

.sold-count-3 .sold-carousel-track {
    justify-content: center;
}

.sold-count-3 .car-card {
    flex: 0 0 calc((100% - 64px) / 3);
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 45px;
}

.pagination-dots {
    min-width: 24px;
    color: #aaa;
    font-weight: 700;
    text-align: center;
}

.pagination-button,
.pagination-number {
    min-width: 42px;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 14px;
    border: 1px solid #444;
    background: #202020;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: 0.2s ease;
}

    .pagination-button:hover,
    .pagination-number:hover,
    .pagination-number.active {
        border-color: #d71920;
        background: #d71920;
    }

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    cursor: pointer;
    font-size: 20px;
    z-index: 2;
    transition: 0.2s ease;
}

    .lightbox-arrow:hover {
        background: #d71920;
    }

.lightbox-arrow-left {
    left: 28px;
}

.lightbox-arrow-right {
    right: 28px;
}

@media (max-width: 700px) {
    .lightbox-arrow {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }

    .lightbox-arrow-left {
        left: 12px;
    }

    .lightbox-arrow-right {
        right: 12px;
    }
}

.login-page {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 70px 20px;
    background: linear-gradient(rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.9)), url('/images/hero.png');
    background-size: cover;
    background-position: center;
}

.login-card {
    width: min(100%, 440px);
    padding: 46px 42px;
    background: rgba(25, 25, 25, 0.96);
    border: 1px solid #3a3a3a;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
}

.login-logo {
    display: block;
    width: 180px;
    margin: 0 auto 34px;
}

    .login-logo img {
        display: block;
        width: 100%;
        height: auto;
    }

.login-heading {
    text-align: center;
    margin-bottom: 30px;
}

    .login-heading h1 {
        margin: 0 0 10px;
        color: #fff;
        font-size: 32px;
    }

    .login-heading p {
        margin: 0;
        color: #aaa;
    }

.login-form {
    display: grid;
    gap: 20px;
}

.login-field {
    display: grid;
    gap: 8px;
}

    .login-field label {
        color: #fff;
        font-weight: 700;
    }

    .login-field input {
        width: 100%;
        padding: 14px 15px;
        border: 1px solid #4a4a4a;
        outline: none;
        background: #151515;
        color: #fff;
        font: inherit;
    }

        .login-field input:focus {
            border-color: #d71920;
        }

        .login-field input::placeholder {
            color: #777;
        }

.remember-me {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #cfcfcf;
    cursor: pointer;
}

    .remember-me input {
        accent-color: #d71920;
    }

.login-submit-button {
    width: 100%;
    border: 0;
    padding: 15px 20px;
    background: #d71920;
    color: #fff;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
    transition: 0.2s ease;
}

    .login-submit-button:hover {
        background: #b91319;
    }

.login-validation {
    color: #ff6b70;
    font-size: 14px;
}

.mobile-menu-button {
    display: none;
}

@media (max-width: 700px) {
    /* Header / mobile menu */
    .site-header {
        position: relative;
        height: auto;
        min-height: 74px;
        padding: 12px 20px;
        flex-wrap: nowrap;
    }

    .logo img {
        width: 145px;
    }

    .header-btn {
        display: none;
    }

    .mobile-menu-button {
        width: 46px;
        height: 46px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #d71920;
        background: transparent;
        color: #fff;
        font-size: 21px;
        cursor: pointer;
    }

        .mobile-menu-button:hover {
            background: #d71920;
        }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 20;
        width: 100%;
        display: none;
        flex-direction: column;
        gap: 0;
        padding: 8px 20px 18px;
        background: #050505;
        border-top: 1px solid #222;
        border-bottom: 1px solid #333;
    }

        .main-nav.mobile-open {
            display: flex;
        }

        .main-nav a {
            padding: 15px 4px;
            border-bottom: 1px solid #222;
            font-size: 14px;
        }

            .main-nav a:last-child {
                border-bottom: 0;
            }

    /* Homepage hero */
    .hero {
        min-height: 570px;
        padding: 0 28px;
        align-items: stretch;
        background: linear-gradient( to bottom, rgba(255, 255, 255, 0.80) 0%, rgba(255, 255, 255, 0.48) 42%, rgba(0, 0, 0, 0.20) 70%, rgba(0, 0, 0, 0.62) 100% ), url('/images/hero.png');
        background-size: cover;
        background-position: 58% center;
    }

    .hero-content {
        max-width: 320px;
        min-height: 570px;
        display: flex;
        flex-direction: column;
        padding: 38px 0 30px;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
    }

    .hero h1 {
        font-size: 27px;
        line-height: 1.12;
        letter-spacing: 0;
    }

    .hero p {
        max-width: 270px;
        margin-top: 20px;
        font-size: 15px;
        line-height: 1.45;
        color: #222;
    }

    .hero-buttons {
        margin-top: auto;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

        .hero-buttons .btn-outline {
            background: rgba(10, 10, 10, 0.55);
            border-color: #d71920;
            color: #fff;
            backdrop-filter: blur(3px);
        }

            .hero-buttons .btn-outline i {
                color: #d71920;
            }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 16px;
        font-size: 12px;
    }

    /* Homepage sections */
    .services-section,
    .sold-section,
    .benefits-section {
        padding: 60px 20px;
    }

        .services-section h2,
        .sold-section h2 {
            font-size: 26px;
            line-height: 1.15;
        }

    .services-container {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .service-item {
        padding: 24px 0;
        border-left: 0;
        border-right: 0;
        border-bottom: 1px solid #444;
        gap: 18px;
    }

        .service-item:first-child {
            border-top: 1px solid #444;
        }

    .service-icon {
        width: 54px;
        height: 54px;
        min-width: 54px;
        font-size: 20px;
    }

    .service-item h3 {
        font-size: 19px;
    }

    .service-item p {
        font-size: 14px;
        line-height: 1.5;
    }

    .section-label {
        font-size: 12px;
    }

        .section-label::before,
        .section-label::after {
            width: 35px;
        }

    .sold-carousel {
        margin-top: 32px;
    }

    .sold-carousel-track {
        gap: 18px;
    }

        .sold-carousel-track .car-card {
            flex: 0 0 100%;
        }

    .car-info {
        padding: 20px;
    }

        .car-info h3 {
            font-size: 21px;
        }

    .car-specs {
        flex-wrap: wrap;
        white-space: normal;
        row-gap: 8px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 0;
    }

    .benefit-item {
        padding: 0 16px;
    }

        .benefit-item:nth-child(2) {
            border-right: 1px solid #444;
        }

        .benefit-item i {
            font-size: 38px;
            margin-bottom: 16px;
        }

        .benefit-item h3 {
            font-size: 16px;
        }

        .benefit-item p {
            font-size: 13px;
        }

    /* Contact and footer */
    .contact-section {
        grid-template-columns: 1fr;
    }

    .contact-info {
        padding: 45px 24px;
    }

    .map-box {
        min-height: 260px;
    }

    .site-footer {
        padding: 45px 24px 22px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-brand img {
        max-width: 220px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        margin-top: 32px;
        font-size: 13px;
    }

    /* Shared page hero */
    .page-hero {
        min-height: 300px;
        padding: 0 28px 34px;
        align-items: flex-end;
        background-position: 62% center;
    }

    .page-hero-content {
        padding-top: 0;
        max-width: 290px;
    }

    .page-hero h1 {
        font-size: 32px;
        line-height: 1.05;
        margin-bottom: 12px;
    }

    .page-hero p:last-child {
        font-size: 15px;
        line-height: 1.4;
    }

    /* Cars page */
    .cars-filter {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 32px;
    }

        .cars-filter select {
            width: 100%;
            padding: 15px 16px;
            font-size: 16px;
        }

    .inventory-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .inventory-info {
        padding: 20px 18px 22px;
    }

        .inventory-info h3 {
            font-size: 22px;
            margin-bottom: 14px;
        }

    .inventory-bottom {
        margin-top: 18px;
    }

        .inventory-bottom strong {
            font-size: 21px;
        }

    /* About page */
    .about-section {
        padding: 60px 28px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .about-text h2 {
        font-size: 32px;
        line-height: 1.12;
        margin-bottom: 22px;
    }

    .about-text p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 16px;
    }

    .about-slider {
        aspect-ratio: 16 / 10;
    }

    .about-services {
        padding: 60px 28px;
    }

        .about-services h2 {
            font-size: 30px;
            line-height: 1.1;
            margin-bottom: 34px;
        }

    .about-services-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

        .about-services-grid .about-service-card {
            grid-column: auto !important;
            width: auto !important;
            justify-self: stretch !important;
        }

    .about-service-card {
        padding: 28px 22px;
    }

        .about-service-card i {
            font-size: 32px;
            margin-bottom: 18px;
        }

        .about-service-card h3 {
            font-size: 20px;
            margin-bottom: 12px;
        }

        .about-service-card p {
            font-size: 15px;
            line-height: 1.6;
        }

    .about-cta {
        min-height: 520px;
        padding: 60px 28px;
    }

        .about-cta h2 {
            font-size: 30px;
            line-height: 1.1;
            margin-bottom: 18px;
        }

        .about-cta p {
            font-size: 16px;
            line-height: 1.5;
            margin-bottom: 28px;
        }

    .about-cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

        .about-cta-buttons .btn {
            width: 100%;
            justify-content: center;
        }

    /* Import page */
    .import-steps {
        padding: 60px 28px;
        grid-template-columns: 1fr;
        gap: 0;
    }

    .import-step {
        padding: 28px 0;
        border-left: 0;
        border-right: 0 !important;
        border-bottom: 1px solid #444;
    }

        .import-step:first-child {
            border-top: 1px solid #444;
        }

        .import-step span {
            font-size: 34px;
            margin-bottom: 14px;
        }

        .import-step h3 {
            font-size: 21px;
            margin-bottom: 12px;
        }

        .import-step p {
            font-size: 16px;
            line-height: 1.55;
        }

        /*Contact page*/
    .contact-page-section {
        padding: 60px 28px;
    }

        .contact-page-section h2 {
            font-size: 30px;
            line-height: 1.1;
            margin-bottom: 34px;
        }

    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .contact-card {
        padding: 32px 16px;
    }

        .contact-card i {
            font-size: 34px;
            margin-bottom: 16px;
        }

        .contact-card h3 {
            font-size: 18px;
            margin-bottom: 10px;
        }

        .contact-card p {
            font-size: 14px;
            line-height: 1.5;
            overflow-wrap: anywhere;
        }

    .contact-form-section {
        padding: 60px 28px;
    }

    .contact-form-content {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .contact-form-text h2 {
        font-size: 30px;
        line-height: 1.1;
        margin-bottom: 22px;
    }

    .contact-form-text p {
        font-size: 16px;
        line-height: 1.6;
    }

    .contact-form {
        gap: 14px;
    }

        .contact-form input,
        .contact-form textarea {
            padding: 15px 16px;
            font-size: 16px;
        }

        .contact-form textarea {
            min-height: 150px;
        }

        .contact-form button {
            width: 100%;
            justify-self: stretch;
            justify-content: center;
            padding: 15px 18px;
        }


        /*Car Details page*/
    .car-details-section {
        padding: 60px 28px;
    }

    .car-details-container {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .car-thumbnails {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        margin-top: 10px;
    }

    .car-details-info {
        padding: 28px 22px;
    }

        .car-details-info h1 {
            font-size: 30px;
            line-height: 1.1;
            margin-bottom: 14px;
        }

    .car-details-price {
        font-size: 30px;
        margin-bottom: 24px;
    }

    .details-specs-grid {
        gap: 12px;
        margin-bottom: 28px;
    }

        .details-specs-grid div {
            padding: 16px;
        }

        .details-specs-grid i {
            font-size: 22px;
            margin-bottom: 10px;
        }

        .details-specs-grid strong {
            font-size: 16px;
        }

    .car-description {
        margin-bottom: 26px;
    }

        .car-description h2 {
            font-size: 22px;
            margin-bottom: 12px;
        }

        .car-description p {
            font-size: 16px;
            line-height: 1.6;
        }

    .car-details-buttons {
        flex-direction: column;
        gap: 12px;
    }

        .car-details-buttons .btn {
            width: 100%;
            justify-content: center;
        }

    #image-lightbox {
        padding: 18px;
    }

        #image-lightbox #lightbox-image {
            width: calc(100vw - 36px);
            max-width: calc(100vw - 36px);
            height: auto;
            max-height: calc(100vh - 120px);
            object-fit: contain;
        }

        #image-lightbox .lightbox-close-button {
            top: 14px;
            right: 14px;
            width: 42px;
            height: 42px;
            z-index: 5;
        }

        #image-lightbox .lightbox-arrow {
            width: 44px;
            height: 44px;
            font-size: 17px;
            z-index: 4;
        }

        #image-lightbox .lightbox-arrow-left {
            left: 10px;
        }

        #image-lightbox .lightbox-arrow-right {
            right: 10px;
        }

    .add-car-section {
        padding: 60px 20px;
    }

    .add-car-container {
        padding: 28px 20px;
    }

    .add-car-header {
        margin-bottom: 30px;
    }

        .add-car-header h2 {
            font-size: 30px;
            line-height: 1.1;
        }

    .add-car-form {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .full-width {
        grid-column: auto;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 15px;
    }

    .form-group textarea {
        min-height: 150px;
    }

    .form-actions {
        flex-direction: column;
        gap: 12px;
    }

        .form-actions .btn {
            width: 100%;
            justify-content: center;
        }

    .file-upload-button {
        width: 100%;
        justify-content: center;
    }

    .image-preview-list {
        gap: 10px;
    }

    .image-preview-item {
        width: calc(50% - 5px);
        height: auto;
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 520px) {
    .login-card {
        padding: 36px 24px;
    }

    .login-page {
        padding: 40px 16px;
    }
}

@media (min-width: 701px) and (max-width: 1024px) {
    /* Header */
    .site-header {
        position: relative;
        min-height: 82px;
        padding: 14px 28px;
    }

    .logo img {
        width: 190px;
    }

    .header-btn {
        display: none;
    }

    .mobile-menu-button {
        width: 48px;
        height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #d71920;
        background: transparent;
        color: #fff;
        font-size: 22px;
        cursor: pointer;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 20;
        width: 100%;
        display: none;
        flex-direction: column;
        gap: 0;
        padding: 10px 28px 20px;
        background: #050505;
        border-top: 1px solid #222;
        border-bottom: 1px solid #333;
    }

        .main-nav.mobile-open {
            display: flex;
        }

        .main-nav a {
            padding: 15px 4px;
            border-bottom: 1px solid #222;
            font-size: 15px;
        }

            .main-nav a:last-child {
                border-bottom: 0;
            }

    /* Homepage hero */
    .hero {
        min-height: 620px;
        padding: 0 52px;
        background-position: 58% center;
    }

    .hero-content {
        max-width: 500px;
    }

    .hero h1 {
        font-size: 43px;
        line-height: 1.08;
    }

    .hero p {
        font-size: 17px;
    }

    .hero-buttons {
        gap: 14px;
    }

    .btn {
        padding: 14px 18px;
        font-size: 13px;
    }

    /* Homepage services */
    .services-section {
        padding: 70px 36px;
    }

    .services-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }

    .service-item {
        padding: 28px 24px;
        border-bottom: 1px solid #444;
    }

        .service-item:nth-child(1),
        .service-item:nth-child(2) {
            border-top: 1px solid #444;
        }

        .service-item h3 {
            font-size: 20px;
        }

        .service-item p {
            font-size: 14px;
            line-height: 1.5;
        }

    /* Sold cars */
    .car-specs {
        flex-wrap: wrap;
        white-space: normal;
        row-gap: 8px;
    }

    .car-info h3 {
        font-size: 22px;
    }

    /* Benefits */
    .benefits-section {
        padding: 70px 36px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 34px 0;
    }

    .benefit-item {
        padding: 0 28px;
    }

        .benefit-item:nth-child(2) {
            border-right: 1px solid #444;
        }

        .benefit-item i {
            font-size: 42px;
            margin-bottom: 20px;
        }

        .benefit-item h3 {
            font-size: 18px;
        }

        .benefit-item p {
            font-size: 14px;
            line-height: 1.55;
        }

    .sold-carousel-track .car-card {
        flex: 0 0 calc((100% - 32px) / 2);
    }

    /* Contact section */
    .contact-section {
        grid-template-columns: 1fr;
    }

    .contact-info {
        padding: 55px 50px;
    }

    .map-box {
        min-height: 360px;
    }

    /* Footer */
    .site-footer {
        padding: 55px 40px 28px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 42px 60px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

        .footer-brand img {
            max-width: 320px;
        }

    .footer-bottom {
        margin-top: 34px;
    }

    .hero {
        align-items: stretch;
        padding: 0 52px;
    }

    .hero-content {
        min-height: 620px;
        display: flex;
        flex-direction: column;
        padding: 58px 0 42px;
    }

    .hero-buttons {
        margin-top: auto;
        align-items: flex-start;
    }

    .inventory-bottom {
        gap: 12px;
    }

        .inventory-bottom strong {
            font-size: 20px;
            white-space: nowrap;
        }

    .inventory-link {
        font-size: 13px;
        white-space: nowrap;
    }

    .inventory-info h3 {
        min-height: 58px;
        line-height: 1.2;
    }

    .car-details-section {
        padding: 70px 40px;
    }

    .car-details-container {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .car-details-info {
        max-width: 760px;
        width: 100%;
        margin: 0 auto;
    }

    .about-section {
        padding: 70px 40px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .about-text {
        max-width: 760px;
        margin: 0 auto;
    }

        .about-text h2 {
            font-size: 38px;
            line-height: 1.12;
        }

    .about-slider {
        max-width: 760px;
        margin: 0 auto;
    }

    .import-steps {
        padding: 70px 40px;
        grid-template-columns: repeat(6, 1fr);
        gap: 55px 0;
    }

    .import-step {
        grid-column: span 2;
        padding: 0 24px;
    }

        .import-step:nth-child(4) {
            grid-column: 2 / span 2;
            padding-top: 8px;
        }

        .import-step:nth-child(5) {
            grid-column: 4 / span 2;
            padding-top: 8px;
        }

    .contact-card {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

        .contact-card h3 {
            min-height: 52px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .contact-card p {
            min-height: 52px;
            display: flex;
            align-items: flex-start;
            justify-content: center;
            text-align: center;
        }

    .contact-page-section {
        padding: 70px 40px;
    }

    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
        max-width: 760px;
        gap: 24px;
    }

    .contact-card {
        min-height: 250px;
        padding: 38px 24px;
    }
}