.pure-menu-item {
    text-decoration: none;
}

.pure-menu-link {
    padding: 1em 1.2em;
    color: #333;
    transition: all 0.3s ease;
}

.pure-menu-link:hover {
    background-color: #0078d4;
    color: #fff;
}

.pure-button {
    padding: 0.7em 1.5em;
    font-size: 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.pure-button-primary {
    background-color: #0078d4;
    color: #fff;
}

.pure-button-primary:hover {
    background-color: #106ebe;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 120, 212, 0.3);
}

.pure-button-secondary {
    background-color: transparent;
    color: #0078d4;
    border: 2px solid #0078d4;
}

.pure-button-secondary:hover {
    background-color: #0078d4;
    color: #fff;
}

.pure-form input, 
.pure-form textarea, 
.pure-form select {
    padding: 0.8em 1em;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 6px;
    transition: border-color 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.pure-form input:focus, 
.pure-form textarea:focus, 
.pure-form select:focus {
    outline: none;
    border-color: #0078d4;
    box-shadow: 0 0 0 3px rgba(0, 120, 212, 0.1);
}

.pure-form .pure-input-1 {
    width: 100%;
}

.pure-form .pure-input-1-2 {
    width: 49%;
    margin-right: 2%;
}

.pure-form .pure-input-1-2:last-child {
    margin-right: 0;
}

.pure-table {
    border-collapse: collapse;
    width: 100%;
    margin: 2em 0;
}

.pure-table th, .pure-table td {
    text-align: left;
    padding: 1em;
    border-bottom: 1px solid #eee;
}

.pure-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #333;
}

.pure-table tr:hover {
    background-color: #f8f9fa;
}

.pure-hidden {
    display: none;
}

.pure-visible {
    display: block;
}

.pure-u-1 {
    width: 100%;
}

.pure-u-1-2 {
    width: 49%;
    margin-right: 2%;
}

.pure-u-1-2:last-child {
    margin-right: 0;
}

.pure-u-1-3 {
    width: 32.5%;
    margin-right: 1.25%;
}

.pure-u-1-3:last-child {
    margin-right: 0;
}

.pure-u-1-4 {
    width: 24%;
    margin-right: 1.33%;
}

.pure-u-1-4:last-child {
    margin-right: 0;
}

@media (max-width: 768px) {
    .pure-u-1-2, .pure-u-1-3, .pure-u-1-4 {
        width: 100%;
        margin-right: 0;
        margin-bottom: 1em;
    }
}

/* Header Styles */
.automotive-header {
    background: linear-gradient(135deg, #0078d4, #106ebe);
    padding: 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.automotive-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80px;
}

.automotive-logo {
    flex-shrink: 0;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-icon {
    font-size: 2rem;
    margin-right: 0.5rem;
    filter: brightness(0) invert(1);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.automotive-navigation {
    flex: 1;
    margin-left: 2rem;
}

.pure-menu-horizontal {
    border: none;
}

.pure-menu-list {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.pure-menu-item {
    margin: 0;
    padding: 0;
}

.pure-menu-link {
    color: rgba(255, 255, 255, 0.9);
    padding: 1em 1.2em;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 6px;
    font-weight: 500;
}

.pure-menu-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

/* Desktop navigation - keep horizontal */
@media (min-width: 769px) {
    .automotive-navigation {
        display: block;
    }
    
    .pure-menu-horizontal {
        display: flex;
    }
    
    .mobile-menu-button {
        display: none;
    }
}

/* Mobile navigation - make vertical */
@media (max-width: 768px) {
    .automotive-navigation {
        display: none;
    }
    
    .mobile-menu-button {
        display: block;
    }
    
    .pure-menu-horizontal {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .mobile-menu.pure-menu-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #0078d4;
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        padding: 0;
    }
    
    .mobile-menu .pure-menu-list {
        flex-direction: column;
        padding: 0;
    }
    
    .mobile-menu .pure-menu-item {
        margin: 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .mobile-menu .pure-menu-item:last-child {
        border-bottom: none;
    }
    
    .mobile-menu .pure-menu-link {
        padding: 1rem 1.5rem;
        color: white;
        border-radius: 0;
        font-weight: 500;
    }
    
    .mobile-menu .pure-menu-link:hover {
        background: rgba(255, 255, 255, 0.1);
        color: white;
    }
}

.pure-menu-link:active,
.pure-menu-link:focus {
    color: white;
    outline: none;
}

.mobile-menu-button {
    display: none;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    padding: 0.8rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

/* Show mobile menu button on mobile devices */
@media (max-width: 768px) {
    .mobile-menu-button {
        display: block !important;
    }
}

.mobile-menu-button:hover {
    background: rgba(255, 255, 255, 0.2);
}

.mobile-menu-button.active {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0.95);
}

.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #0078d4;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    padding: 1rem;
    flex-direction: column;
    display: none;
    z-index: 1000;
}

/* Desktop - hide mobile menu */
@media (min-width: 769px) {
    .mobile-menu {
        display: none !important;
    }
}

/* Mobile - show mobile menu when open */
@media (max-width: 768px) {
    .mobile-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #0078d4;
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        padding: 0;
        flex-direction: column;
        display: none;
        z-index: 1000;
    }
    
    .mobile-menu.pure-menu-open {
        display: flex !important;
        flex-direction: column;
        max-height: 400px;
        overflow-y: auto;
    }
    
    .mobile-menu .pure-menu-list {
        flex-direction: column;
        padding: 0;
        margin: 0;
    }
    
    .mobile-menu .pure-menu-item {
        margin: 0;
        padding: 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .mobile-menu .pure-menu-item:last-child {
        border-bottom: none;
    }
    
    .mobile-menu .pure-menu-link {
        padding: 1rem 1.5rem;
        color: white;
        text-decoration: none;
        display: block;
        border-radius: 0;
        font-weight: 500;
    }
    
    .mobile-menu .pure-menu-link:hover {
        background: rgba(255, 255, 255, 0.1);
        color: white;
    }
}

.mobile-menu.pure-menu-open {
    display: block;
}

.mobile-menu .pure-menu-list {
    flex-direction: column;
}

.mobile-menu .pure-menu-item {
    margin-bottom: 0.5rem;
}

.mobile-menu .pure-menu-item:last-child {
    margin-bottom: 0;
}

.mobile-menu .pure-menu-link {
    padding: 0.8rem 1rem;
    border-radius: 6px;
}

.mobile-menu .pure-menu-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.automotive-hero-section {
    background: linear-gradient(135deg, rgba(0, 120, 212, 0.85), rgba(16, 110, 190, 0.8)), url('../visuals/styles-pure-auto-theme-magnetite.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 8rem 1rem 6rem;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.automotive-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.automotive-hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.automotive-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero section button styles - more contrast for visibility */
.automotive-hero-section .pure-button {
    border: 3px solid white;
    background-color: rgba(255, 255, 255, 0.95);
    color: #0078d4;
    text-shadow: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.automotive-hero-section .pure-button-primary {
    background-color: rgba(255, 255, 255, 0.98);
    color: #0078d4;
}

.automotive-hero-section .pure-button-primary:hover {
    background-color: white;
    color: #0078d4;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.automotive-hero-section .pure-button-secondary {
    background-color: rgba(255, 255, 255, 0.95);
    color: #0078d4;
    border: 3px solid white;
}

.automotive-hero-section .pure-button-secondary:hover {
    background-color: white;
    color: #0078d4;
    border-color: white;
}

.automotive-hero-description {
    background-color: #f8f9fa;
    padding: 4rem 1rem;
}

.automotive-description-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.automotive-description-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 2rem;
}

.automotive-description-content p {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.automotive-services-section {
    padding: 6rem 1rem;
    background-color: #ffffff;
}

.automotive-services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.automotive-services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.automotive-services-header h2 {
    font-size: 2.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.automotive-services-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

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

.automotive-service-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.automotive-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.automotive-service-card .service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.automotive-service-card h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.automotive-service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.automotive-service-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0078d4;
    margin-bottom: 1rem;
}

.automotive-map-section {
    background-color: #ffffff;
    padding: 6rem 1rem;
}

.automotive-map-container {
    max-width: 1200px;
    margin: 0 auto;
}

.automotive-map-header {
    text-align: center;
    margin-bottom: 4rem;
}

.automotive-map-header h2 {
    font-size: 2.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.automotive-map-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.automotive-map-content {
    margin-top: 3rem;
}

.automotive-map-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
}

.automotive-map-iframe {
    width: 100%;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
}

.automotive-map-actions {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.automotive-advantages-section {
    background-color: #f8f9fa;
    padding: 6rem 1rem;
}

.automotive-advantages-container {
    max-width: 1200px;
    margin: 0 auto;
}

.automotive-advantages-header {
    text-align: center;
    margin-bottom: 4rem;
}

.automotive-advantages-header h2 {
    font-size: 2.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.automotive-advantages-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

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

.automotive-advantage-item {
    text-align: center;
    padding: 2rem 1rem;
}

.automotive-advantage-icon {
    font-size: 3rem;
    color: #0078d4;
    margin-bottom: 1.5rem;
    display: block;
}

.automotive-advantage-item h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.automotive-advantage-item p {
    color: #666;
    line-height: 1.6;
}

.automotive-testimonials-section {
    background-color: #ffffff;
    padding: 6rem 1rem;
}

.automotive-testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}

.automotive-testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.automotive-testimonials-header h2 {
    font-size: 2.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.automotive-testimonials-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

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

.automotive-testimonial-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
    position: relative;
}

.automotive-testimonial-content {
    margin-bottom: 1.5rem;
}

.automotive-testimonial-content p {
    font-style: italic;
    color: #555;
    line-height: 1.6;
    font-size: 1.1rem;
}

.automotive-testimonial-content::before {
    content: '"';
    font-size: 3rem;
    color: #0078d4;
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    line-height: 1;
}

.automotive-testimonial-author {
    text-align: right;
    margin-top: 1rem;
}

.automotive-testimonial-author strong {
    color: #333;
    font-weight: 600;
}

.automotive-contact-section {
    background-color: #0078d4;
    color: white;
    padding: 6rem 1rem;
}

.automotive-contact-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.automotive-contact-content h2 {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.automotive-contact-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

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

.automotive-contact-item {
    text-align: center;
    padding: 1.5rem;
}

.automotive-contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.automotive-contact-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.automotive-contact-item p {
    margin: 0;
    font-size: 1.1rem;
}

.automotive-contact-item a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.automotive-contact-item a:hover {
    opacity: 0.8;
}

.automotive-footer {
    background-color: #333;
    color: white;
    padding: 3rem 1rem 2rem;
    text-align: center;
}

.automotive-footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.automotive-footer p {
    margin: 0;
    opacity: 0.8;
}

.cookie-consent-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #333;
    color: white;
    padding: 1.5rem;
    border-radius: 8px;
    max-width: 400px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    z-index: 1000;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-consent-banner h4 {
    margin: 0 0 0.8rem 0;
    font-size: 16px;
    font-weight: 600;
}

.cookie-consent-banner p {
    margin: 0 0 1rem 0;
    font-size: 13px;
}

.cookie-consent-buttons {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
}

.cookie-consent-buttons button {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-accept {
    background-color: #0078d4;
    color: white;
}

.cookie-accept:hover {
    background-color: #106ebe;
}

.cookie-decline {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.cookie-decline:hover {
    background-color: white;
    color: #333;
}

.cookie-consent-banner a {
    color: #0078d4;
    text-decoration: none;
}

.cookie-consent-banner a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .automotive-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .automotive-hero-content p {
        font-size: 1.2rem;
    }
    
    .automotive-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .automotive-cta-buttons .pure-button {
        width: 100%;
        max-width: 300px;
    }
    
    .automotive-description-content h2,
    .automotive-services-header h2,
    .automotive-map-header h2,
    .automotive-advantages-header h2,
    .automotive-testimonials-header h2,
    .automotive-contact-content h2 {
        font-size: 2.2rem;
    }
    
    .automotive-map-iframe {
        height: 350px;
    }
    
    .automotive-map-card {
        padding: 1.5rem;
    }
    
    .cookie-consent-banner {
        bottom: 10px;
        left: 10px;
        right: 10px;
        max-width: none;
    }
    
    .cookie-consent-buttons {
        flex-direction: column;
    }
    
}

@media (max-width: 480px) {
    .automotive-header-container {
        min-height: 60px;
        padding: 0 0.25rem;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .logo-icon {
        font-size: 1.6rem;
        margin-right: 0.3rem;
    }
    
    .pure-menu-link {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    .mobile-menu .pure-menu-link {
        padding: 0.7rem 0.8rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .automotive-hero-section {
        padding: 6rem 1rem 4rem;
        min-height: 60vh;
    }
    
    .automotive-services-section,
    .automotive-map-section,
    .automotive-advantages-section,
    .automotive-testimonials-section,
    .automotive-contact-section {
        padding: 4rem 1rem;
    }
    
    .automotive-map-iframe {
        height: 300px;
    }
}

[class*="text-"] strong,
[class*="text-"] b,
[style*="color"] strong,
[style*="color"] b,
.text-white strong, .text-white b,
.text-light strong, .text-light b {
    color: inherit;
}