/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0a0a0a;
    overflow-x: hidden;
}

svg {
    max-width: 100%;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background-color: #ff5752;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #e54943;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #ff5752;
    border: 2px solid #ff5752;
}

.btn-secondary:hover {
    background-color: #ff5752;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Header */
.header {
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 87, 82, 0.2);
}

.navbar {
    padding: 1rem 0;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff5752;
}

.logo-icon, .footer-logo {
    width: 24px;
    height: 24px;
    color: #ff5752;
}

.nav-menu {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #ff5752;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #ff5752;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #ff5752 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #cccccc;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Sections */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-icon {
    width: 48px;
    height: 48px;
    color: #ff5752;
    margin: 0 auto 1rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.section-header p {
    font-size: 1.1rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    background-color: #111111;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.about-card {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 87, 82, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 87, 82, 0.3);
}

.card-icon {
    width: 48px;
    height: 48px;
    color: #ff5752;
    margin-bottom: 1rem;
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.about-card p {
    color: #cccccc;
    line-height: 1.7;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: #1a1a1a;
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 87, 82, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 87, 82, 0.3);
    box-shadow: 0 10px 30px rgba(255, 87, 82, 0.1);
}

.service-icon {
    width: 64px;
    height: 64px;
    color: #ff5752;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

/* Achievements Section */
.achievements-section {
    background-color: #111111;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.achievement-card {
    text-align: center;
    padding: 2rem;
}

.achievement-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ff5752;
    margin-bottom: 0.5rem;
}

.achievement-label {
    font-size: 1.1rem;
    color: #cccccc;
    font-weight: 500;
}

/* Reviews Section */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 87, 82, 0.1);
}

.review-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.review-stars svg {
    width: 20px;
    height: 20px;
    color: #ff5752;
}

.review-text {
    font-style: italic;
    margin-bottom: 1rem;
    color: #cccccc;
    line-height: 1.7;
}

.review-author {
    font-weight: 600;
    color: #ff5752;
}

/* Conditions Section */
.conditions-section {
    background-color: #111111;
}

.conditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.condition-card {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 87, 82, 0.1);
}

.condition-icon {
    width: 48px;
    height: 48px;
    color: #ff5752;
    margin-bottom: 1rem;
}

.condition-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.condition-card ul {
    list-style: none;
}

.condition-card li {
    color: #cccccc;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.condition-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff5752;
    font-weight: bold;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, #ff5752 0%, #e54943 100%);
    color: #ffffff;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.newsletter-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    align-items: end;
}

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

.form-group input {
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
}

.form-group input::placeholder {
    color: #666;
}

/* Page Header */
.page-header {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    text-align: center;
}

.page-header-content {
    max-width: 600px;
    margin: 0 auto;
}

.page-icon {
    width: 64px;
    height: 64px;
    color: #ff5752;
    margin: 0 auto 1.5rem;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.page-header p {
    font-size: 1.2rem;
    color: #cccccc;
}

/* Cars Page */
.filter-section {
    padding: 2rem 0;
    background-color: #111111;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 10px 20px;
    background: none;
    border: 2px solid #333;
    color: #cccccc;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-tab.active,
.filter-tab:hover {
    border-color: #ff5752;
    color: #ff5752;
}

.cars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.car-card {
    background-color: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 87, 82, 0.1);
    transition: all 0.3s ease;
}

.car-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 87, 82, 0.3);
}

.car-image {
    height: 200px;
    overflow: hidden;
}

.car-image svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.car-details {
    padding: 1.5rem;
}

.car-details h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.car-category {
    color: #ff5752;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.car-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #cccccc;
    font-size: 0.9rem;
}

.feature svg {
    width: 16px;
    height: 16px;
    color: #ff5752;
}

.car-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #ff5752;
}

.period {
    color: #cccccc;
}

.car-btn {
    width: 100%;
    padding: 12px;
    background-color: #ff5752;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.car-btn:hover {
    background-color: #e54943;
}

/* Contact Page */
.contact-section {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form-container h2,
.contact-info-container h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #333;
    border-radius: 5px;
    background-color: #1a1a1a;
    color: #ffffff;
    font-size: 16px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff5752;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-icon {
    width: 24px;
    height: 24px;
    color: #ff5752;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.contact-details h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.contact-details p {
    color: #cccccc;
    line-height: 1.6;
}

.contact-details small {
    color: #999;
    font-size: 0.9rem;
}

/* Map Section */
.map-section {
    padding: 4rem 0;
    background-color: #111111;
}

.map-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

.map-placeholder {
    max-width: 800px;
    margin: 0 auto 2rem;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 87, 82, 0.2);
}

.map-placeholder svg {
    width: 100%;
    height: auto;
    display: block;
}

.map-description {
    text-align: center;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* About Page Specific */
.company-story {
    padding: 4rem 0;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

.story-text p {
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story-visual {
    display: flex;
    justify-content: center;
}

.story-visual svg {
    max-width: 100%;
    border-radius: 10px;
    border: 1px solid rgba(255, 87, 82, 0.2);
}

.mission-values {
    background-color: #111111;
    padding: 4rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 87, 82, 0.1);
    text-align: center;
}

.value-icon {
    width: 48px;
    height: 48px;
    color: #ff5752;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.team-section {
    padding: 4rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-card {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 87, 82, 0.1);
}

.team-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
}

.team-avatar svg {
    width: 100%;
    height: 100%;
}

.team-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.team-role {
    color: #ff5752;
    font-weight: 500;
    margin-bottom: 1rem;
}

.stats-section {
    background-color: #111111;
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 1.5rem;
}

.stat-icon {
    width: 48px;
    height: 48px;
    color: #ff5752;
    margin: 0 auto 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff5752;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #cccccc;
    font-weight: 500;
}

/* Thank You Page */
.thank-you-section {
    padding: 8rem 0 6rem;
    text-align: center;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
}

.thank-you-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
}

.thank-you-content h1 {
    font-size: 3rem;
    color: #ff5752;
    margin-bottom: 1rem;
}

.thank-you-content h2 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 2rem;
}

.thank-you-content > p {
    font-size: 1.2rem;
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.next-steps {
    margin-bottom: 3rem;
}

.next-steps h3 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 2rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.step {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 87, 82, 0.1);
}

.step-icon {
    width: 48px;
    height: 48px;
    color: #ff5752;
    margin-bottom: 1rem;
}

.step h4 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.step p {
    color: #cccccc;
    line-height: 1.6;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.emergency-contact {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 87, 82, 0.2);
}

.emergency-contact h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.emergency-contact p {
    color: #cccccc;
    margin-bottom: 1rem;
}

.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #ff5752;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.phone-link svg {
    width: 20px;
    height: 20px;
}

.emergency-contact small {
    color: #999;
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    z-index: 1001;
    border-top: 1px solid rgba(255, 87, 82, 0.2);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-text h3 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.cookie-text p {
    color: #cccccc;
    font-size: 0.9rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-btn.accept-all {
    background-color: #ff5752;
    color: #ffffff;
}

.cookie-btn.necessary {
    background-color: #333;
    color: #ffffff;
}

.cookie-btn.custom {
    background-color: transparent;
    color: #ff5752;
    border: 1px solid #ff5752;
}

.cookie-btn.secondary {
    background-color: #333;
    color: #ffffff;
}

.cookie-btn:hover {
    transform: translateY(-1px);
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 1002;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 87, 82, 0.2);
    max-width: 500px;
    width: 100%;
}

.cookie-modal-content h3 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.cookie-option {
    margin-bottom: 1rem;
}

.cookie-option label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: #cccccc;
    cursor: pointer;
}

.cookie-option input {
    margin-top: 0.2rem;
}

.cookie-option span {
    font-size: 0.9rem;
    line-height: 1.4;
}

.cookie-modal-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

/* Footer */
.footer {
    background-color: #111111;
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 87, 82, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff5752;
    margin-bottom: 1rem;
}

.footer-section h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ff5752;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #1a1a1a;
    border-radius: 50%;
    color: #cccccc;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #ff5752;
    color: #ffffff;
    transform: translateY(-2px);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

.contact-info p {
    color: #cccccc;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 87, 82, 0.1);
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background-color: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        border-top: 1px solid rgba(255, 87, 82, 0.2);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .hamburger:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .nav-toggle.active .hamburger:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .hamburger:nth-child(3) {
        transform: rotate(45deg) translate(-7px, -8px);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .newsletter-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .newsletter-form {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .story-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    section {
        padding: 3rem 0;
    }

    .page-header {
        padding: 6rem 0 3rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .cars-grid {
        grid-template-columns: 1fr;
    }

    .thank-you-content h1 {
        font-size: 2.5rem;
    }

    .thank-you-content h2 {
        font-size: 1.5rem;
    }

    .steps-grid, [class*="-grid"] {
        grid-template-columns: 1fr;
    }

    .filter-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }

    .filter-tab {
        flex-shrink: 0;
    }
}

/* Hidden class for JavaScript */
.hidden {
    display: none !important;
}