
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth; 
    -webkit-text-size-adjust: 100%;
}

body {
    line-height: 1.6;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: #333;
    background-color: #ffffff;
    
    
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}


img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}


input, button, textarea, select {
    font: inherit;
}


ul, ol {
    list-style: none;
}


a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}


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

:root {
  --primary-color: #f4b400; 
  --text-color: #333;
  --bg-color: #ffffff;
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  color: var(--text-color);
  line-height: 1.6;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: #fff;
    border-bottom: 2px solid #f4b400; 
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    color: #333;
}

.header-logo img {
    height: 40px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
}

.nav-list a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-list a:hover {
    color: #f4b400;
}

.header-reserved-btn {
    background-color: #f4b400;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.burger span {
    width: 25px;
    height: 3px;
    background-color: #333;
}


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

@media (max-width: 800px) {
    .nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #fff;
        border-bottom: 2px solid #f4b400;
        padding: 20px 0;
    }

    .nav.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

.hero {
    position: relative;
    height: 80vh; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
    
    
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('/assets/img/hero.jpg');
    background-size: cover;
    background-position: center;
}

.hero h3 {
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: #f4b400; 
}

.hero h1 {
    font-size: 3rem;
    margin: 0 0 20px 0;
    max-width: 800px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 30px;
}

.hero-btn {
    display: flex;
    gap: 15px;
}

.hero-btn a {
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}


.hero-btn a:first-child {
    background-color: #f4b400;
    color: #fff;
}

.hero-btn a:first-child:hover {
    background-color: #d39e00;
}


.hero-btn a:last-child {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.hero-btn a:last-child:hover {
    background-color: #fff;
    color: #333;
}


@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    .hero-btn {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
}

.about {
    padding: 80px 5%;
    background-color: #fff;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.aboute-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.aboute-text p {
    margin-bottom: 15px;
    color: #666;
}


.about-short-advantages-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.about-short-advantages-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.about-short-advantages-dot {
    width: 12px;
    height: 12px;
    background-color: #f4b400; 
    border-radius: 50%;
    flex-shrink: 0;
}


.aboute-text a {
    display: inline-block;
    padding: 12px 30px;
    background-color: #f4b400;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s;
}

.aboute-text a:hover {
    background-color: #d39e00;
}


@media (max-width: 900px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-short-advantages-list li {
        justify-content: center;
    }
}

.new-arrivals { padding: 80px 5%; 
max-width: 1500px;
margin: 0 auto;
}
.new-arrivals h2 { text-align: center; font-size: 2.2rem; margin-bottom: 40px; }

.new-arrivals-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    list-style: none;
    padding: 0;
}


.new-arrivals-list > li {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
}

.new-arrivals-img-overlay { position: relative; overflow: hidden; border-radius: 8px; }
.new-arrivals-img-overlay img { width: 100%; height: 200px; object-fit: cover; }
.new-arrivals-img-overlay h4 { 
    position: absolute; top: 10px; left: 10px; 
    background: #f4b400; padding: 5px 15px; border-radius: 4px; color: #fff;
}

.new-arrivals-down { display: flex; justify-content: space-between; margin-top: 20px; align-items: center; }
.new-arrivals-down-stock { color: #28a745; font-weight: bold; }
.new-arrivals-down-detail { cursor: pointer; color: #f4b400; text-decoration: underline; }


.new-arrivals-details {
    display: none;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.new-arrivals-details.active { display: block; }
.new-arrivals-details-list { list-style: none; padding: 0; margin: 15px 0; }
.new-arrivals-details-list li { display: flex; justify-content: space-between; margin-bottom: 5px; }

.view-full-inventory { display: block; text-align: center; margin-top: 40px; color: #333; font-weight: bold; }

.expert-servives {
    padding: 80px 5%;
    background-color: #f9f9f9;
}

.expert-services-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}


.expert-services-left h2 { font-size: 2.2rem; margin-bottom: 20px; }
.expert-services-left-short-text-list { list-style: none; padding: 0; margin: 30px 0; }
.expert-services-left-short-text-list li { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; }

.exper-services-dots {
    width: 10px; height: 10px; background: #f4b400; border-radius: 50%; flex-shrink: 0;
}

.expert-services-left a {
    display: inline-block;
    margin-top: 10px;
    color: #f4b400;
    font-weight: bold;
    text-decoration: underline;
}


.expert-services-right-container {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.expert-services-right-container h3 { margin-bottom: 30px; font-size: 1.5rem; }
.expert-services-right-list { list-style: none; padding: 0; }
.expert-services-right-list li { display: flex; gap: 20px; margin-bottom: 30px; }
.expert-services-right-list li img { width: 50px; height: 50px; flex-shrink: 0; }

.expert-services-right-text h4 { margin: 0 0 5px 0; font-size: 1.1rem; }
.expert-services-right-text p { margin: 0; font-size: 0.95rem; color: #666; }


@media (max-width: 900px) {
    .expert-services-wrapper { grid-template-columns: 1fr; }
}

.accessories {
    padding: 80px 5%;
    background-color: #fff;
}

.acessories-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}


.accessories-img-overlay {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.accessories-img-overlay img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.accessories-img-overlay:hover img {
    transform: scale(1.05);
}

.accessories-img-overlay h4 {
    position: absolute;
    bottom: 20px;
    left: 20px;
    margin: 0;
    padding: 10px 20px;
    background: #f4b400;
    color: #fff;
    border-radius: 4px;
}


.accessories-text h2 { font-size: 2.2rem; margin-bottom: 20px; }
.accessories-short-text-list { list-style: none; padding: 0; margin: 30px 0; }
.accessories-short-text-list li { margin-bottom: 25px; }
.accessories-short-text-list li h4 { margin: 0 0 5px 0; color: #333; }
.accessories-short-text-list li p { margin: 0; color: #666; font-size: 0.95rem; }

.accessories-text a {
    display: inline-block;
    padding: 12px 25px;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.accessories-text a:hover {
    background-color: #f4b400;
}


@media (max-width: 900px) {
    .acessories-wrapper { grid-template-columns: 1fr; }
    .accessories-img-overlay { order: -1; } 
}

.the-round-difference {
    padding: 80px 5%;
    text-align: center;
    background-color: #fff;
}

.the-round-difference h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.the-round-difference > p {
    color: #666;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.the-round-difference-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    list-style: none;
    padding: 0;
    max-width: 1200px;
    margin: 0 auto;
}


.the-round-difference-list li {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #f4b400; 
}

.the-round-difference-list li:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.the-round-difference-list li img {
    margin: 0 auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

.the-round-difference-list li h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.the-round-difference-list li p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}


@media (max-width: 600px) {
    .the-round-difference-list {
        grid-template-columns: 1fr;
    }
}

.review { padding: 80px 5%; background: #fff; text-align: center; }
.review h2 { margin-bottom: 40px; font-size: 2.2rem; }

.review-wrapper { max-width: 1000px; margin: 0 auto; overflow: hidden; padding: 20px 0; }

.review-slide {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
    border: 1px solid #eee;
}

.review-stars { color: #f4b400; margin-bottom: 15px; font-size: 1.2rem; }
.review-slide p { font-style: italic; color: #555; margin-bottom: 20px; }
.review-name { font-weight: bold; color: #333; margin: 0; }

.map-search {
    padding: 80px 5%;
    background-color: #fff;
}

.map-search-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}


.map-search-left h2 { font-size: 2.2rem; margin-bottom: 20px; }
.map-search-left > p { color: #666; margin-bottom: 40px; }

.map-search-list { list-style: none; padding: 0; }
.map-search-list li { display: flex; gap: 20px; margin-bottom: 30px; }

.map-search-list li img { width: 40px; height: 40px; flex-shrink: 0; }
.map-search-text h4 { margin: 0 0 5px 0; color: #333; }
.map-search-text a { color: #f4b400; text-decoration: none; font-weight: bold; transition: 0.3s; }
.map-search-text a:hover { color: #d39e00; text-decoration: underline; }


.map-search-img-overlay {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.map-search-img-overlay img { width: 100%; display: block; filter: grayscale(0.5); }
.map-search-img-overlay p {
    position: absolute; bottom: 0; left: 0; width: 100%;
    margin: 0; padding: 20px; background: rgba(244, 180, 0, 0.9);
    color: #fff; text-align: center; font-weight: bold;
}


@media (max-width: 900px) {
    .map-search-wrapper { grid-template-columns: 1fr; }
    .map-search-right { order: -1; }
}

.contact-form { padding: 80px 5%; background: #f9f9f9; }
.contact-form-wrapper { max-width: 700px; margin: 0 auto; background: #fff; padding: 40px; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }

.contact-form h2 { text-align: center; margin-bottom: 10px; }
.contact-form p { text-align: center; color: #666; margin-bottom: 30px; }

.form-group, .form-row { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

input, select, textarea { 
    width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 5px; box-sizing: border-box; 
    font-family: inherit; 
}

textarea { resize: vertical; }
input:focus, textarea:focus, select:focus { border-color: #f4b400; outline: none; }

.form-checkbox { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 20px; }
.form-checkbox label { font-size: 0.9rem; color: #555; }

button { 
    width: 100%; padding: 15px; background: #f4b400; border: none; border-radius: 5px; 
    color: #fff; font-weight: bold; cursor: pointer; transition: 0.3s; 
}
button:hover { background: #d39e00; }


#form-success { text-align: center; padding: 40px; }
#form-success h3 { color: #28a745; }


footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 80px 5% 30px 5%;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-container h3 {
    margin-bottom: 20px;
    color: #f4b400; 
}


.footer-second-list, .footer-third-list, .footer-fourth-list {
    list-style: none;
    padding: 0;
}

.footer-second-list li, .footer-third-list li, .footer-fourth-list li {
    margin-bottom: 10px;
}

.footer-container a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-container a:hover {
    color: #f4b400;
}


.footer-fourth-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-fourth-list li img {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1); 
}


.footer-copyright {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #666;
    font-size: 0.9rem;
}


@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-fourth-list li {
        justify-content: center;
    }
}

.why-choose-us {
    padding: 80px 5%;
    background-color: #ffffff;
}

.why-choose-us-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose-us-text h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}


.why-choose-us-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: #f4b400;
}

.why-choose-us-text p {
    margin-bottom: 15px;
    color: #666;
    line-height: 1.7;
}

.why-choose-us-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.why-choose-us-list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-weight: bold;
    color: #333;
}


.why-choose-us-list li::before {
    content: '✓';
    color: #f4b400;
    margin-right: 15px;
    font-weight: bold;
}

.why-choose-us-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15); 
}


@media (max-width: 900px) {
    .why-choose-us-wrapper {
        grid-template-columns: 1fr;
    }
    .why-choose-us-wrapper img {
        order: -1; 
    }
}

.our-services {
    padding: 80px 5%;
    background-color: #f9f9f9;
    text-align: center;
}

.our-services h2 { font-size: 2.2rem; margin-bottom: 15px; }
.our-services > p { color: #666; margin-bottom: 50px; }

.our-services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    list-style: none;
    padding: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.our-services-list li {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.our-services-list li:hover { transform: translateY(-5px); }


.our-services-img-bg {
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-color: #fff8e1;  */
    margin: 0 auto 20px auto;
}

.our-services-img-bg img {
    height: 200px;
    border-radius: 12px;
}

.our-services-list h3 { margin-bottom: 10px; font-size: 1.2rem; }
.our-services-list p { color: #666; font-size: 0.9rem; line-height: 1.5; }


@media (max-width: 600px) {
    .our-services-list { grid-template-columns: 1fr; }
}

.off-road-preparation {
    padding: 80px 5%;
    background-color: #fff;
}

.off-road-preparation-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.off-road-preparation-wrapper img {
    width: 100%;
    height: 500px; 
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.off-road-preparation-text h3 {
    color: #f4b400; 
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.off-road-preparation-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.off-road-preparation-text p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.off-road-preparation-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.off-road-preparation-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}


.off-road-preparation-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    background-color: #f4b400;
    margin-right: 15px;
    flex-shrink: 0;
}

.off-road-preparation-text a {
    display: inline-block;
    padding: 15px 30px;
    background-color: #f4b400;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s;
}

.off-road-preparation-text a:hover {
    background-color: #d39e00;
}


@media (max-width: 900px) {
    .off-road-preparation-wrapper { grid-template-columns: 1fr; }
    .off-road-preparation-wrapper img { height: 300px; } 
}

.why-we {
    padding: 80px 5%;
    background-color: #ffffff;
    text-align: center;
}

.why-we h2 { font-size: 2.2rem; margin-bottom: 15px; }
.why-we > p { color: #666; margin-bottom: 50px; font-size: 1.1rem; }

.why-we-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    list-style: none;
    padding: 0;
    max-width: 1200px;
    margin: 0 auto;
}


.why-we-list li {
    padding: 40px 20px;
    border-radius: 10px;
    background: #f9f9f9;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}


.why-we-list li:hover {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-bottom: 3px solid #f4b400;
}

.why-we-list li img {
    width: 50px;
    height: 50px;
    margin: 0 auto;
    margin-bottom: 20px;
}

.why-we-list li h3 { margin-bottom: 15px; font-size: 1.25rem; }
.why-we-list li p { color: #666; font-size: 0.95rem; line-height: 1.5; }


@media (max-width: 600px) {
    .why-we-list { grid-template-columns: 1fr; }
}

.why-we {
    padding: 80px 5%;
    background-color: #ffffff;
    text-align: center;
}

.why-we h2 { font-size: 2.2rem; margin-bottom: 15px; }
.why-we > p { color: #666; margin-bottom: 50px; font-size: 1.1rem; }

.why-we-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    list-style: none;
    padding: 0;
    max-width: 1200px;
    margin: 0 auto;
}


.why-we-list li {
    padding: 40px 20px;
    border-radius: 10px;
    background: #f9f9f9;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}


.why-we-list li:hover {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-bottom: 3px solid #f4b400;
}

.why-we-list li img {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

.why-we-list li h3 { margin-bottom: 15px; font-size: 1.25rem; }
.why-we-list li p { color: #666; font-size: 0.95rem; line-height: 1.5; }


@media (max-width: 600px) {
    .why-we-list { grid-template-columns: 1fr; }
}

.faq {
    padding: 80px 5%;
    background-color: #fff;
    max-width: 900px;
    margin: 0 auto;
}

.faq h2 { 
    text-align: center; 
    font-size: 2.2rem; 
    margin-bottom: 50px; 
}

.faq-list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 30px;
}

.faq-list li {
    padding: 30px;
    background: #fdfdfd;
    border-radius: 10px;
    border-left: 5px solid #f4b400; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.faq-list h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #1a1a1a;
}

.faq-list p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.trusted {
    padding: 80px 5%;
    background-color: #f4f4f4;
}

.trusted-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}


.trusted-text h2 { font-size: 2.2rem; margin-bottom: 20px; }
.trusted-text p { color: #666; margin-bottom: 15px; }

.trusted-five-stars {
    font-size: 1.5rem;
    color: #f4b400;
    margin-top: 20px;
}


.trusted-bubble {
    position: relative;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}


.trusted-bubble::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50px;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-right: 20px solid #fff;
}

.trusted-bubble-container .trusted-text {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
}

.trusted-name {
    color: #f4b400;
    font-size: 1rem;
    margin: 0;
}


@media (max-width: 900px) {
    .trusted-wrapper { grid-template-columns: 1fr; }
    .trusted-bubble::before { display: none; } 
}

.ready-for-services {
    padding: 80px 5%;
    background-color: #222; 
    color: #fff;
    text-align: center;
}

.ready-for-services h2 { font-size: 2.5rem; margin-bottom: 15px; }
.ready-for-services > p { color: #ccc; margin-bottom: 50px; font-size: 1.2rem; }

.ready-for-services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    list-style: none;
    padding: 0;
    max-width: 1000px;
    margin: 0 auto;
}


.ready-for-services-list li {
    background: #333;
    padding: 30px;
    border-radius: 10px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.ready-for-services-list li:hover {
    background: #f4b400; 
    transform: translateY(-5px);
}

.ready-for-services-list li img {
    width: 40px;
    height: 40px;
    margin: 0 auto;
    margin-bottom: 15px;
    filter: invert(1); 
}

.ready-for-services-list li h3 { margin-bottom: 10px; font-size: 1.1rem; }

.ready-for-services-list li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    display: block;
    margin-top: 5px;
}


@media (max-width: 600px) {
    .ready-for-services-list { grid-template-columns: 1fr; }
}

.brows-by-category {
    padding: 80px 5%;
    background-color: #fff;
    text-align: center;
}

.brows-by-category h2 { font-size: 2.2rem; margin-bottom: 15px; }
.brows-by-category > p { color: #666; margin-bottom: 50px; font-size: 1.1rem; }

.brows-by-category-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    list-style: none;
    padding: 0;
    max-width: 1200px;
    margin: 0 auto;
}


.brows-by-category-list li {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
}

.brows-by-category-list li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}


.brows-by-category-list li:hover img {
    transform: scale(1.1);
}


.brows-by-category-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: #fff;
    transition: background 0.3s ease;
}

.brows-by-category-text-overlay h3 {
    margin: 0;
    font-size: 1.5rem;
}


.brows-by-category-list li:hover .brows-by-category-text-overlay {
    background: linear-gradient(transparent, rgba(244, 180, 0, 0.8));
}

.featured-models {
    padding: 80px 5%;
    background-color: #fff;
    text-align: center;
}

.featured-models h3 { 
    color: #f4b400; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    font-size: 0.9rem; 
    margin-bottom: 10px; 
}

.featured-models h2 { font-size: 2.5rem; margin-bottom: 15px; }
.featured-models > p { color: #666; margin-bottom: 50px; }

.featured-models-list {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 0 auto;
}


.featured-models-list li {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    overflow: hidden;
    position: relative;
    padding-bottom: 20px;
}

.featured-models-text-overlay-top {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: bold;
    z-index: 1;
}

.featured-models-list li img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.featured-models-list li h3 { 
    margin: 20px 0 10px 0; 
    font-size: 1.8rem; 
}

.featured-models-list li > p { 
    color: #666; 
    margin-bottom: 20px; 
    max-width: 600px; 
    margin-left: auto; 
    margin-right: auto;
}


.feautered-bottom-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.featured-bottom-price { font-size: 1.2rem; color: #333; margin: 0; }

.feautered-bottom-links a {
    padding: 12px 30px;
    background: #f4b400;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s;
}

.feautered-bottom-links a:hover { background: #d39e00; }


@media (max-width: 600px) {
    .feautered-bottom-links { flex-direction: column; gap: 15px; }
}

.certified-pre-owned-excellence {
    padding: 80px 5%;
    background-color: #fff;
    text-align: center;
}

.certified-pre-owned-excellence h2 { font-size: 2.2rem; margin-bottom: 15px; }
.certified-pre-owned-excellence > p { color: #666; margin-bottom: 50px; }

.certified-pre-owned-excellence-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    list-style: none;
    padding: 0;
    max-width: 1200px;
    margin: 0 auto 50px auto;
}

.certified-pre-owned-excellence-list li {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.certified-pre-owned-excellence-list li:hover { transform: translateY(-10px); }

.certified-pre-owned-excellence-list li img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.certified-pre-owned-excellence-list li h3 { margin: 20px 0 10px 0; }
.certified-pre-owned-excellence-list li p { 
    color: #666; 
    padding: 0 20px; 
    min-height: 40px; 
}

.certified-pre-owned-excellence-price {
    color: #28a745; 
    margin: 15px 0 25px 0;
    font-size: 1.1rem;
}


.certified-view-all {
    display: inline-block;
    padding: 15px 40px;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s;
}

.certified-view-all:hover { background: #f4b400; color: #fff; }


@media (max-width: 600px) {
    .certified-pre-owned-excellence-list { grid-template-columns: 1fr; }
}

.flexible-financing {
    padding: 80px 5%;
    background-color: #fff;
}

.flexible-financing-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.flexible-financing-wrapper img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.flexible-financing-text h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.flexible-financing-text h3 {
    color: #f4b400; 
    font-size: 1.2rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.flexible-financing-text p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.flexible-financing-text a {
    display: inline-block;
    padding: 15px 30px;
    background-color: #1a1a1a;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.flexible-financing-text a:hover {
    background-color: #f4b400;
}


@media (max-width: 900px) {
    .flexible-financing-wrapper {
        grid-template-columns: 1fr;
    }
}

.value-your-trade {
    padding: 80px 5%;
    background-color: #fff;
    text-align: center;
}

.value-your-trade h2 { font-size: 2.2rem; margin-bottom: 15px; }
.value-your-trade > p { color: #666; margin-bottom: 50px; font-size: 1.1rem; }

.value-your-trade-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    list-style: none;
    padding: 0;
    max-width: 1200px;
    margin: 0 auto 50px auto;
}

.value-your-trade-list li {
    padding: 40px 20px;
    border: 1px solid #eee;
    border-radius: 10px;
    position: relative;
    transition: all 0.3s ease;
}


.value-your-trade-list li:hover {
    border-color: #f4b400;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}


.value-your-trade-list li span {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    color: #f4f4f4;
    margin-bottom: 30px;
    transition: color 0.3s;
}

.value-your-trade-list li:hover span {
    color: rgba(244, 180, 0, 0.2);
}

.value-your-trade-list li h3 { 
    margin-bottom: 10px; 
    position: relative; 
}

.value-your-trade-list li p { color: #666; font-size: 0.95rem; }


.value-go-trade-btn {
    display: inline-block;
    padding: 18px 40px;
    background: #f4b400;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s;
}

.value-go-trade-btn:hover { background: #d39e00; }


@media (max-width: 600px) {
    .value-your-trade-list { grid-template-columns: 1fr; }
}

.services-and-sell {
    padding: 80px 5%;
    background-color: #ffffff;
}

.services-and-sell-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}


.services-and-sell-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.services-and-sell-text h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    line-height: 1.2;
}

.services-and-sell-text p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 1.05rem;
}


.services-and-sell-text a {
    display: inline-block;
    margin-top: 10px;
    padding: 15px 30px;
    background-color: #f4b400; 
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.services-and-sell-text a:hover {
    background-color: #d39e00;
}


@media (max-width: 900px) {
    .services-and-sell-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .services-and-sell-wrapper img {
        height: 300px;
        order: -1; 
    }
    
    .services-and-sell-text a {
        width: 100%;
        box-sizing: border-box;
    }
}

.cta {
    padding: 60px 5%;
    background-color: #1a1a1a; 
    color: #fff;
}

.cta-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.cta-left h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-left p {
    color: #ccc;
    font-size: 1.1rem;
}


.cta-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cta-right h4 {
    margin: 0 0 5px 0;
    color: #f4b400; 
    font-size: 0.9rem;
    text-transform: uppercase;
}

.cta-right a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: 0.3s;
}

.cta-right a:hover {
    color: #f4b400;
}


@media (max-width: 768px) {
    .cta-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
}

.contact-info {
    padding: 60px 5%;
    background-color: #f9f9f9;
}

.contact-info-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    list-style: none;
    padding: 0;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info-list li {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-info-list li img {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

.contact-info-list li h3 {
    margin-bottom: 10px;
    color: #333;
    font-size: 1.2rem;
}

.contact-info-list li p, 
.contact-info-list li a {
    color: #666;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

.contact-info-list li a:hover {
    color: #f4b400; 
}


@media (max-width: 600px) {
    .contact-info-list { grid-template-columns: 1fr; }
}

.located {
    padding: 80px 5%;
    background-color: #fff;
}

.located-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.located-text h2 { font-size: 2.2rem; margin-bottom: 20px; }
.located-text p { color: #666; margin-bottom: 30px; line-height: 1.6; }

.located-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.located-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}


.located-dot {
    width: 10px;
    height: 10px;
    background-color: #f4b400;
    border-radius: 50%;
    margin-right: 15px;
    flex-shrink: 0;
}


.located-open-map-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #f4b400;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s;
}

.located-open-map-btn:hover { background-color: #d39e00; }

.located-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}


@media (max-width: 900px) {
    .located-wrapper { grid-template-columns: 1fr; }
    .located-wrapper img { order: -1; }
}

.opening-hours {
    padding: 80px 5%;
    background-color: #f9f9f9;
}

.opening-hourse-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.opening-hourse-left h2 { font-size: 2rem; margin-bottom: 20px; }
.opening-hourse-left p { color: #666; margin-bottom: 15px; }


.opening-right-list {
    list-style: none;
    padding: 0;
}

.opening-right-list li {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
}

.opening-right-list li:last-child { border-bottom: none; }

.opening-right-list h4 { 
    font-size: 1.1rem; 
    color: #333; 
}

.opening-right-list p { 
    font-weight: bold; 
    color: #f4b400; 
}


@media (max-width: 768px) {
    .opening-hourse-wrapper { grid-template-columns: 1fr; gap: 40px; }
    .opening-hourse-left { text-align: center; }
}

.department-contacts {
    padding: 80px 5%;
    background-color: #fff;
    text-align: center;
}

.department-contacts h2 { font-size: 2.2rem; margin-bottom: 15px; }
.department-contacts > p { color: #666; margin-bottom: 50px; }

.department-contact-info-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    list-style: none;
    padding: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.department-contact-info-list li {
    padding: 40px;
    background: #f9f9f9;
    border-radius: 10px;
    transition: background 0.3s ease;
    border-top: 4px solid #f4b400; 
}

.department-contact-info-list li:hover {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.department-contact-info-list h3 { margin-bottom: 10px; font-size: 1.4rem; }
.department-contact-info-list p { color: #666; margin-bottom: 20px; }

.department-contact-info-list a {
    display: inline-block;
    padding: 10px 20px;
    background: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
}

.department-contact-info-list a:hover { background: #f4b400; }


@media (max-width: 600px) {
    .department-contact-info-list { grid-template-columns: 1fr; }
}

.need-services {
    padding: 80px 5%;
    background-color: #f4b400; 
    color: #fff;
    text-align: center;
}

.need-services h2 { 
    font-size: 2.5rem; 
    margin-bottom: 15px; 
}

.need-services p { 
    font-size: 1.2rem; 
    margin-bottom: 40px; 
    opacity: 0.9;
}

.need-services-btn {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.need-services-btn a {
    padding: 15px 35px;
    background: #fff;
    color: #333;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: transform 0.3s, background 0.3s;
}

.need-services-btn a:hover {
    transform: translateY(-3px);
    background: #1a1a1a;
    color: #fff;
}


@media (max-width: 600px) {
    .need-services-btn {
        flex-direction: column;
        gap: 15px;
    }
}

.join-our-community {
    padding: 80px 5%;
    background-color: #ffffff;
}

.join-our-community-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}


.join-our-community-wrapper img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
}

.join-our-community-text h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
}

.join-our-community-text p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}


.join-our-community-text a {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 30px;
    background-color: #f4b400; 
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.join-our-community-text a:hover {
    background-color: #d39e00;
}


@media (max-width: 900px) {
    .join-our-community-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .join-our-community-wrapper img {
        height: 300px;
    }
}

.not-ready-to-call-yet {
    padding: 80px 5%;
    background-color: #fff;
    text-align: center;
}

.not-ready-to-call-yet h2 { font-size: 2.2rem; margin-bottom: 15px; }
.not-ready-to-call-yet > p { color: #666; margin-bottom: 50px; }

.not-ready-to-call-yet-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    list-style: none;
    padding: 0;
    max-width: 1200px;
    margin: 0 auto;
}


.not-ready-to-call-yet-list li {
    overflow: hidden;
    border-radius: 10px;
    height: 300px;
    cursor: pointer;
}

.not-ready-to-call-yet-list li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}


.not-ready-to-call-yet-list li:hover img {
    transform: scale(1.1);
}


@media (max-width: 600px) {
    .not-ready-to-call-yet-list {
        grid-template-columns: 1fr;
    }
}

.terms-of-use {
    padding: 80px 2%;
    max-width: 1000px;
    margin: 0 auto;
    background-color: #fff;
    line-height: 1.8;
    color: #444;
}

.terms-of-use h1 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #1a1a1a;
    border-bottom: 2px solid #f4b400;
    padding-bottom: 10px;
    display: inline-block;
}

.terms-of-use h3 {
    font-size: 1.5rem;
    margin: 40px 0 15px 0;
    color: #333;
}

.terms-of-use p {
    margin-bottom: 20px;
}

.terms-of-use ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.terms-of-use ul li {
    margin-bottom: 10px;
}


.terms-of-use strong {
    color: #1a1a1a;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #1a1a1a;
    color: #fff;
    padding: 20px 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
}

.cookie-content {
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}

.cookie-buttons { display: flex; gap: 10px; }

.cookie-buttons button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.btn-accept { background: #f4b400; color: #fff; }
.btn-decline { background: #444; color: #fff; }
.btn-link { color: #f4b400; text-decoration: underline; margin-left: 10px; }

@media (max-width: 600px) {
    .cookie-content { flex-direction: column; text-align: center; }
}

.how-its-work {
    padding: 80px 5%;
    background-color: #ffffff;
    text-align: center;
}

.how-its-work h2 { font-size: 2.2rem; margin-bottom: 15px; }
.how-its-work > p { color: #666; margin-bottom: 50px; font-size: 1.1rem; }

.how-its-work-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    list-style: none;
    padding: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.how-its-work-list li {
    padding: 30px;
    background: #fdfdfd;
    border-radius: 10px;
    border: 1px solid #eee;
    transition: transform 0.3s ease, border-color 0.3s;
}

.how-its-work-list li:hover {
    transform: translateY(-10px);
    border-color: #f4b400;
}

.how-its-work-list li span {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: #f4b400; 
    margin-bottom: 15px;
}

.how-its-work-list li h3 { 
    margin-bottom: 10px; 
    font-size: 1.3rem; 
}

.how-its-work-list li p { 
    color: #666; 
    line-height: 1.5; 
    font-size: 0.95rem; 
}


@media (max-width: 600px) {
    .how-its-work-list { grid-template-columns: 1fr; }

    .form-row {
        display: flex;
        flex-direction: column;
    }
}

.swiper-slide {
    height: 270px !important;
}

.footer-first a {
    color: #f4b400;
    font-weight: bold;font-size: 24px;
}

.error-404 {
    padding: 100px 5%;
    text-align: center;
    background: #fff;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-container h1 {
    font-size: 8rem;
    color: #f4b400; 
    margin: 0;
    line-height: 1;
}

.error-container h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.error-container p {
    color: #666;
    margin-bottom: 40px;
    font-size: 1.2rem;
}

.error-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary {
    background: #f4b400;
    color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.btn-primary:hover { background: #d39e00; }

.btn-secondary {
    background: #333;
    color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.btn-secondary:hover { background: #000; }

@media (max-width: 768px) {
    .hero {
        background-image: none;
        background-color: #222;
    }
}