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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    border-top: 2px solid #333;
    padding: 1rem;
    z-index: 2000;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.5);
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-text {
    color: #fff;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-text strong {
    color: #fff;
    font-weight: bold;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    text-align: center;
    display: inline-block;
}

.cookie-btn-accept {
    background-color: #fff;
    color: #1a1a1a;
}

.cookie-btn-accept:hover {
    background-color: #f0f0f0;
}

.cookie-btn-decline {
    background-color: transparent;
    color: #fff;
    border: 1px solid #666;
}

.cookie-btn-decline:hover {
    background-color: #333;
    border-color: #999;
}

.cookie-btn-settings {
    background-color: transparent;
    color: #ccc;
    border: 1px solid #444;
    font-size: 0.8rem;
}

.cookie-btn-settings:hover {
    background-color: #2a2a2a;
    color: #fff;
}

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

body {
    font-family: 'Arial', sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Navigation - Mobile First */
.navbar {
    background-color: #1a1a1a;
    padding: 0.75rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid #333;
}

.nav-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-logo {
    font-size: 1.25rem;
    font-weight: bold;
}

.nav-logo a {
    color: #fff;
    text-decoration: none;
}

/* Hamburger Menu */
.hamburger {
    display: flex;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    justify-content: space-between;
    position: relative;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

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

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

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

/* Mobile Menu */
.nav-menu {
    position: fixed;
    top: -100%;
    left: 0;
    height: 100vh;
    width: 100%;
    background: linear-gradient(to bottom, 
        #1a1a1a 0%, 
        #1a1a1a 70%, 
        rgba(26, 26, 26, 0.8) 85%,
        rgba(26, 26, 26, 0.4) 95%,
        transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 80px 2rem 2rem 2rem;
    transition: top 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 999;
    pointer-events: none;
}

.nav-menu.active {
    top: 0;
    pointer-events: all;
}

.nav-logo-mobile {
    margin-bottom: 2rem;
    text-align: center;
}

.nav-logo-mobile a {
    text-decoration: none;
    color: inherit;
}

.nav-logo-mobile h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    letter-spacing: 2px;
    margin: 0;
    transition: color 0.2s ease;
}

.nav-logo-mobile a:hover h2 {
    color: #ccc;
}

.nav-main-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.nav-legal {
    margin-top: 2rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.nav-link.legal {
    font-size: 0.8rem;
    color: #999;
    opacity: 0.7;
    padding: 0.5rem 1rem;
}

.nav-link.legal:hover {
    color: #ccc;
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.05);
}


.nav-link {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 1rem;
    text-align: center;
    font-size: 1.1rem;
    width: 80%;
    border-radius: 8px;
}

.nav-link:hover {
    color: #e53e3e;
    background-color: rgba(229, 62, 62, 0.1);
}

.contact-btn {
    background-color: #e53e3e;
    padding: 1rem 2rem;
    border-radius: 8px;
    color: #fff;
    font-weight: bold;
}

.contact-btn:hover {
    background-color: #d63031;
}

.nav-link.active {
    color: #e53e3e;
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section - Mobile First */
.hero {
    background-color: #000;
    padding: 120px 0 80px;
    text-align: center;
}

.hero-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-content {
    margin-bottom: 2rem;
}

.hero-content h1 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.highlight {
    color: #fff;
}

.hero-content p {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: inline-block;
}

.hero-btn.primary {
    background-color: #e53e3e;
    color: #fff;
}

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

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

.hero-btn.secondary:hover {
    background-color: #e53e3e;
    color: #fff;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 12px;
}

/* Equipment Section - Mobile First */
.equipment-section {
    background-color: #000000;
    padding: 50px 0;
}

.equipment-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.equipment-content {
    margin-bottom: 2rem;
}

.equipment-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.equipment-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #fff;
    line-height: 1.6;
}

.cta-button {
    background-color: #000;
    color: #fff;
    padding: 0.875rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button.red {
    background-color: #e53e3e;
    color: #fff;
}

.cta-button.red:hover {
    background-color: #d63031;
    transform: translateY(-2px);
}

.equipment-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
    align-items: center;
}

.collab-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
    align-items: center;
}

.cta-button.centered {
    align-self: center;
    max-width: 280px;
}

.cta-button:hover {
    background-color: #333;
}

.equipment-showcase img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
}


/* Follow Section - Mobile First */
.follow-section {
    background-color: #e53e3e;
    padding: 50px 0;
    text-align: center;
}

.follow-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

.follow-container h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-icon {
    display: inline-block;
    width: 45px;
    height: 45px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    transform: scale(1.1);
}

.social-icon img {
    width: 20px;
    height: 20px;
}

/* Collaboration Section - Mobile First */
.collaboration-section {
    background-color: #000;
    padding: 80px 0;
    text-align: center;
}

.collaboration-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

.collaboration-container h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.collaboration-container p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #ccc;
    line-height: 1.6;
}

.collaboration-container .cta-button {
    background-color: #e53e3e;
    color: #fff;
}

.collaboration-container .cta-button:hover {
    background-color: #d63031;
}


/* Footer - Mobile First */
.footer {
    background-color: #1a1a1a;
    padding: 40px 0 20px;
}

.footer-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #fff;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer-social .social-icon {
    width: 35px;
    height: 35px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
}

.footer-column h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: #fff;
}

.footer-column a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #e53e3e;
}

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
    color: #ccc;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.footer-legal a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: #e53e3e;
}

/* About Page - Mobile First */
.about-hero {
    background-color: #000;
    padding: 100px 0 60px;
    text-align: center;
}

.about-hero-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

.about-hero h1 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.about-intro {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.6;
}

.story-section {
    background-color: #1a1a1a;
    padding: 60px 0;
}

.story-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

.story-content {
    margin-bottom: 2rem;
}

.story-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
    text-align: center;
}

.story-content h3 {
    font-size: 1.25rem;
    margin: 1.5rem 0 1rem;
    color: #e53e3e;
}

.story-content p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #ccc;
    line-height: 1.6;
}

.story-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-item {
    text-align: center;
    background-color: #000;
    padding: 1.5rem;
    border-radius: 8px;
}

.stat-item h3 {
    font-size: 2rem;
    color: #e53e3e;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #ccc;
    font-size: 0.9rem;
}

.skills-section {
    background-color: #000;
    padding: 60px 0;
}

.skills-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

.skills-container h2 {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #fff;
}

.skills-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.skill-card {
    background-color: #1a1a1a;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.skill-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    background-color: #e53e3e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.skill-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: #fff;
}

.skill-card p {
    color: #ccc;
    line-height: 1.5;
    font-size: 0.9rem;
}

.values-section {
    background-color: #1a1a1a;
    padding: 60px 0;
}

.values-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

.values-container h2 {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #fff;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.value-item {
    background-color: #000;
    padding: 1.5rem;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: #e53e3e;
}

.value-item p {
    color: #ccc;
    line-height: 1.5;
    font-size: 0.9rem;
}

.about-cta-section {
    background-color: #e53e3e;
    padding: 60px 0;
    text-align: center;
}

.about-cta-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

.about-cta-container h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.about-cta-container p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #fff;
    line-height: 1.6;
}

/* Equipment Page - Mobile First */
.equipment-hero {
    background-color: #000;
    padding: 100px 0 60px;
    text-align: center;
}

.equipment-hero-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

.equipment-hero h1 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.equipment-hero p {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.6;
}

.motorcycle-section,
.camera-section,
.lenses-section,
.audio-section,
.accessories-section {
    padding: 60px 0;
}

.motorcycle-section {
    background-color: #2a2a2a;
}

.camera-section {
    background-color: #1a1a1a;
}

.lenses-section {
    background-color: #000;
}

.audio-section {
    background-color: #1a1a1a;
}

.accessories-section {
    background-color: #000;
}

.motorcycle-container,
.camera-container,
.lenses-container,
.audio-container,
.accessories-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

.motorcycle-container h2,
.camera-container h2,
.lenses-container h2,
.audio-container h2,
.accessories-container h2 {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #fff;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.equipment-card {
    background-color: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid #333;
    height: 100%;
    min-height: 400px;
}


.equipment-image {
    height: 150px;
    overflow: hidden;
}

.equipment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.equipment-info {
    padding: 1rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.equipment-info h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: #fff;
}

.equipment-info p {
    color: #ccc;
    line-height: 1.5;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.equipment-specs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.equipment-specs span {
    background-color: #e53e3e;
    color: #fff;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
}

.equipment-price {
    margin-bottom: 1rem;
    margin-top: auto;
}

.original-price {
    text-decoration: line-through;
    color: #888;
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.discount-price {
    color: #e53e3e;
    font-weight: bold;
    font-size: 1.125rem;
    margin-right: 0.5rem;
}

.discount-code {
    background-color: #e53e3e;
    color: #fff;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    display: block;
    margin-top: 0.5rem;
}

.buy-button {
    background-color: #e53e3e;
    color: #fff;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    text-align: center;
    font-weight: bold;
    transition: background-color 0.3s ease;
    font-size: 0.9rem;
}

.buy-button:hover {
    background-color: #d63031;
}

.discount-info-section {
    background-color: #1a1a1a;
    padding: 60px 0;
}

.discount-info-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.discount-info-container h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.discount-info-container p {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: #ccc;
    line-height: 1.6;
}

.discount-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    background-color: #000;
    padding: 1.5rem;
    border-radius: 8px;
}

.benefit-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: #e53e3e;
}

.benefit-item p {
    color: #ccc;
    line-height: 1.5;
    font-size: 0.9rem;
}

.equipment-cta-section {
    background-color: #e53e3e;
    padding: 60px 0;
    text-align: center;
}

.equipment-cta-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

.equipment-cta-container h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.equipment-cta-container p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #fff;
    line-height: 1.6;
}

/* Contact Page - Mobile First */
.contact-hero {
    background-color: #000;
    padding: 100px 0 60px;
    text-align: center;
}

.contact-hero-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

.contact-hero h1 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.6;
}

.contact-form-section {
    background-color: #1a1a1a;
    padding: 60px 0;
}

.contact-form-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-info h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
    text-align: center;
}

.contact-info p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #ccc;
    line-height: 1.6;
    text-align: center;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.5rem;
}

.contact-icon {
    width: 35px;
    height: 35px;
    background-color: #e53e3e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon img {
    width: 18px;
    height: 18px;
}

.contact-item h3 {
    color: #fff;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.contact-item p {
    color: #ccc;
    margin: 0;
    font-size: 0.9rem;
}

.response-time {
    background-color: #000;
    padding: 1.25rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.response-time h3 {
    color: #e53e3e;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.response-time p {
    color: #ccc;
    margin: 0;
    line-height: 1.5;
    font-size: 0.9rem;
}

.contact-form {
    background-color: #000;
    padding: 1.5rem;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1.25rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    background-color: #2a2a2a;
    border: 1px solid #444;
    border-radius: 4px;
    color: #fff;
    font-size: 1rem;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    line-height: 1.4;
    font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    flex-shrink: 0;
}

.submit-button {
    background-color: #e53e3e;
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    background-color: #d63031;
}

.submit-button:disabled {
    background-color: #666;
    cursor: not-allowed;
}

.form-status {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
}

.form-status.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-status.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.faq-section {
    background-color: #000;
    padding: 60px 0;
}

.faq-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

.faq-container h2 {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #fff;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background-color: #1a1a1a;
    padding: 1.5rem;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: #e53e3e;
}

.faq-item p {
    color: #ccc;
    line-height: 1.5;
    font-size: 0.9rem;
}

.contact-cta-section {
    background-color: #1a1a1a;
    padding: 60px 0;
    text-align: center;
}

.contact-cta-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

.contact-cta-container h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.contact-cta-container p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #ccc;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.cta-button.secondary {
    background-color: transparent;
    border: 2px solid #e53e3e;
    color: #e53e3e;
}

.cta-button.secondary:hover {
    background-color: #e53e3e;
    color: #fff;
}

/* Legal Pages - Mobile First */
.legal-section {
    background-color: #000;
    padding: 100px 0 60px;
}

.legal-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

.legal-container h1 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.legal-container h2 {
    font-size: 1.25rem;
    margin: 1.5rem 0 1rem;
    color: #e53e3e;
}

.legal-container h3 {
    font-size: 1.125rem;
    margin: 1.25rem 0 0.5rem;
    color: #fff;
}

.legal-container h4 {
    font-size: 1rem;
    margin: 1rem 0 0.5rem;
    color: #ccc;
}

.legal-container p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: #ccc;
    line-height: 1.6;
}

.legal-container ul {
    margin-bottom: 1rem;
    padding-left: 1.25rem;
}

.legal-container li {
    color: #ccc;
    margin-bottom: 0.5rem;
    line-height: 1.5;
    font-size: 0.9rem;
}

.legal-container a {
    color: #e53e3e;
    text-decoration: none;
}

.legal-container a:hover {
    text-decoration: underline;
}

/* Tablet Breakpoint (min-width: 768px) */
/* Cookie Banner Tablet */
@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    
    .cookie-text {
        flex: 1;
        margin-right: 2rem;
        font-size: 1rem;
    }
    
    .cookie-buttons {
        flex-direction: row;
        flex-shrink: 0;
        gap: 1rem;
    }
    
    .cookie-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        white-space: nowrap;
    }
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
    
    .nav-container {
        padding: 0 2rem;
    }
    
    /* Hide hamburger menu on desktop */
    .hamburger {
        display: none;
    }
    
    /* Show navigation menu as horizontal on desktop */
    .nav-menu {
        position: static !important;
        height: auto !important;
        width: auto !important;
        background: transparent !important;
        display: flex !important;
        flex-direction: row !important;
        justify-content: flex-end !important;
        align-items: center !important;
        padding: 0 !important;
        gap: 1.5rem !important;
        transition: none !important;
        box-shadow: none !important;
        top: auto !important;
        left: auto !important;
        pointer-events: all !important;
    }
    
    .nav-menu.active {
        top: auto;
        pointer-events: all;
    }
    
    /* Hide mobile-only elements on desktop */
    .nav-logo-mobile {
        display: none;
    }
    
    /* Restructure navigation for desktop */
    .nav-main-links {
        display: flex;
        flex-direction: row;
        gap: 1.5rem;
        align-items: center;
        margin: 0;
    }
    
    /* Hide legal links on desktop */
    .nav-legal {
        display: none;
    }
    
    .nav-link {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        width: auto;
        border-radius: 4px;
    }
    
    .nav-link:hover {
        background-color: transparent;
    }
    
    .contact-btn {
        background-color: #e53e3e;
        padding: 0.5rem 1rem;
        border-radius: 4px;
        margin-top: 0;
    }
    
    .nav-logo {
        font-size: 1.5rem;
    }
    
    /* Hide menu overlay on desktop */
    .menu-overlay {
        display: none;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero-container {
        padding: 0 2rem;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
        text-align: left;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.125rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        gap: 1.5rem;
        max-width: 400px;
    }
    
    .equipment-buttons {
        justify-content: center;
    }
    
    .collab-buttons {
        justify-content: center;
    }
    
    .hero-image img {
        max-width: 400px;
        border-radius: 15px;
    }
    
    .equipment-section {
        padding: 80px 0;
    }
    
    .equipment-container {
        padding: 0 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .equipment-content h2 {
        font-size: 2rem;
    }
    
    .equipment-content p {
        font-size: 1.125rem;
    }
    
    
    
    .footer-container {
        padding: 0 2rem;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        text-align: left;
    }
    
    .footer-brand {
        margin-bottom: 0;
    }
    
    .footer-social {
        justify-content: flex-start;
        margin-bottom: 0;
    }
    
    .footer-links {
        flex-direction: row;
        gap: 3rem;
        text-align: left;
    }
    
    .footer-bottom {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-legal {
        margin-top: 0;
        justify-content: center;
    }
    
    /* About page tablet */
    .story-container {
        padding: 0 2rem;
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 3rem;
    }
    
    .story-content h2 {
        font-size: 2rem;
        text-align: left;
    }
    
    .story-stats {
        flex-direction: column;
    }
    
    .skills-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .values-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    /* Equipment page tablet */
    
    .discount-benefits {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    /* Contact page tablet */
    .contact-form-container {
        padding: 0 2rem;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .contact-info {
        margin-bottom: 0;
    }
    
    .contact-info h2 {
        text-align: left;
    }
    
    .contact-info p {
        text-align: left;
    }
    
    .faq-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

/* Desktop Breakpoint (min-width: 1200px) */
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
        padding: 0 2rem;
    }
    
    .nav-container {
        max-width: 1200px;
        padding: 0 2rem;
    }
    
    .nav-logo {
        font-size: 1.5rem;
    }
    
    .nav-menu {
        gap: 2rem;
    }
    
    .hero-container,
    .equipment-container,
    .footer-container,
    .story-container,
    .contact-form-container {
        max-width: 1200px;
        padding: 0 2rem;
    }
    
    .about-hero-container,
    .equipment-hero-container,
    .contact-hero-container,
    .about-cta-container,
    .equipment-cta-container,
    .contact-cta-container,
    .collaboration-container,
    .follow-container,
    .discount-info-container,
    .faq-container,
    .legal-container {
        max-width: 1200px;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .equipment-content h2,
    .collaboration-container h2,
    .story-content h2,
    .skills-container h2,
    .values-container h2,
    .about-cta-container h2,
    .equipment-cta-container h2,
    .contact-info h2,
    .contact-cta-container h2,
    .faq-container h2,
    .discount-info-container h2 {
        font-size: 2.5rem;
    }
    
    .hero-image img {
        max-width: 450px;
        border-radius: 20px;
    }
    
    .about-hero h1,
    .equipment-hero h1,
    .contact-hero h1 {
        font-size: 3rem;
    }
    
    .follow-container h2 {
        font-size: 2.5rem;
    }
    
    .motorcycle-container h2,
    .camera-container h2,
    .lenses-container h2,
    .audio-container h2,
    .accessories-container h2 {
        font-size: 2.5rem;
    }
    
    .legal-container h1 {
        font-size: 3rem;
    }
}