/* Global Styles */
:root {
    --primary-color: #1a73e8;
    --secondary-color: #4285f4;
    --dark-color: #333;
    --light-color: #f4f4f4;
    --danger-color: #dc3545;
    --success-color: #28a745;
}

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

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

a {
    text-decoration: none;
    color: var(--primary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

picture {
    display: block;
    width: 100%;
}

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

.btn {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background: var(--secondary-color);
}

/* Header Styles */
header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
}

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

.logo {
    max-width: 200px;
}

.logo img {
    width: 100%;
    height: auto;
}

.logo h1 {
    font-size: 24px;
    color: var(--primary-color);
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 20px;
    position: relative;
}

nav ul li a {
    color: var(--dark-color);
    font-weight: bold;
    padding: 10px 0;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--primary-color);
}

/* Dropdown Menu */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 1;
    border-radius: 5px;
    padding: 10px 0;
}

.dropdown-content a {
    color: var(--dark-color);
    padding: 10px 15px;
    display: block;
    font-weight: normal;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
    color: var(--primary-color);
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/cropped-boardrepairder2-scaled-1.webp');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 100px 0;
}

/* Fallback for browsers that don't support WebP */
@supports not (background-image: url('../images/cropped-boardrepairder2-scaled-1.webp')) {
    .hero {
        background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/cropped-boardrepairder2-scaled-1.jpg');
    }
}

.hero h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero h3 {
    font-size: 24px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 30px;
}

/* Services Section */
.services {
    padding: 60px 0;
    background-color: var(--light-color);
}

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

.service-item {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item h4 {
    text-align: center;
    padding: 15px;
    font-size: 18px;
    color: var(--dark-color);
}

.service-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* About Section */
.about {
    padding: 60px 0;
}

.about h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.about p {
    font-size: 18px;
    max-width: 900px;
    margin: 0 auto 30px;
    text-align: center;
}

.features {
    max-width: 600px;
    margin: 0 auto 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.features li {
    font-size: 18px;
    position: relative;
    padding-left: 30px;
}

.features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.image-container {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Story Section */
.story {
    padding: 60px 0;
    background-color: var(--light-color);
}

.story h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 30px;
}

.story p {
    font-size: 18px;
    max-width: 900px;
    margin: 0 auto 30px;
    text-align: center;
}

/* Common Services Section */
.common-services {
    padding: 60px 0;
}

.common-services h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
}

.service-category {
    margin-bottom: 50px;
}

.service-category h3 {
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
}

.service-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.service-details p {
    margin-bottom: 15px;
    font-size: 18px;
}

.service-details ul,
.service-details ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.service-details li {
    margin-bottom: 10px;
    font-size: 16px;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 60px 0;
    background-color: var(--light-color);
}

.why-choose-us h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
}

.why-choose-us > .container > p {
    text-align: center;
    font-size: 18px;
    max-width: 900px;
    margin: 0 auto 30px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.feature h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.feature p {
    font-size: 16px;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-logo {
    max-width: 200px;
    margin-bottom: 15px;
}

.footer-links h3,
.footer-contact h3 {
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 18px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #fff;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    color: #fff;
    font-size: 24px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--primary-color);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Page Header */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/boardrepair-banner-scaled-1-1024x341.webp');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

/* Fallback for browsers that don't support WebP */
@supports not (background-image: url('../images/boardrepair-banner-scaled-1-1024x341.webp')) {
    .page-header {
        background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/boardrepair-banner-scaled-1-1024x341.jpg');
    }
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
}

/* Services List */
.services-list {
    padding: 60px 0;
}

.service-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    margin-bottom: 50px;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.service-content {
    padding: 30px;
}

.service-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-content p {
    font-size: 16px;
    margin-bottom: 20px;
}

.service-content ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.service-content li {
    margin-bottom: 8px;
    position: relative;
    list-style-type: none;
    padding-left: 25px;
}

.service-content li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* CTA Section */
.cta {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../images/cta-bg.webp');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

/* Fallback for browsers that don't support WebP */
@supports not (background-image: url('../images/cta-bg.webp')) {
    .cta {
        background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../images/cta-bg.jpg');
    }
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        text-align: center;
    }
    
    nav ul {
        margin: 20px 0;
        flex-direction: column;
        text-align: center;
    }
    
    nav ul li {
        margin: 10px 0;
    }
    
    .dropdown-content {
        position: static;
        box-shadow: none;
        display: none;
        width: 100%;
    }
    
    .dropdown:hover .dropdown-content {
        display: block;
    }
    
    .hero h2 {
        font-size: 36px;
    }
    
    .hero h3 {
        font-size: 20px;
    }
    
    .service-info {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}

/* Contact Page Styles */
.contact-info {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-details h2,
.contact-form h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-details p {
    margin-bottom: 30px;
    font-size: 16px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 5px;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.contact-item p {
    margin-bottom: 5px;
}

.hours-notice {
    color: var(--primary-color);
    font-style: italic;
    margin-bottom: 10px;
    padding: 5px;
    background-color: rgba(26, 115, 232, 0.1);
    border-radius: 4px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: var(--secondary-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

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

.form-group textarea {
    resize: vertical;
}

.form-message {
    padding: 15px;
    margin: 20px 0;
    border-radius: 5px;
    display: none;
}

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

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

.map {
    padding: 60px 0;
    background-color: var(--light-color);
}

.map h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
}

.map-container {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faq {
    padding: 60px 0;
}

.faq h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
}

.faq-item {
    margin-bottom: 30px;
    padding: 25px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 16px;
}

/* How It Works Page Styles */
.process {
    padding: 60px 0;
}

.process-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.process-intro h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.process-intro p {
    font-size: 18px;
}

.process-steps {
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

.process-step:not(:last-child):after {
    content: '';
    position: absolute;
    top: 70px;
    left: 30px;
    height: calc(100% - 30px);
    width: 2px;
    background-color: var(--primary-color);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    margin-right: 30px;
    flex-shrink: 0;
    z-index: 1;
}

.step-content {
    padding-top: 5px;
}

.step-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.step-content p {
    font-size: 16px;
    line-height: 1.6;
}

.service-options {
    padding: 60px 0;
    background-color: var(--light-color);
}

.service-options h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
}

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

.option-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.option-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.option-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.option-card p {
    font-size: 16px;
    margin-bottom: 20px;
}

.option-card ul {
    text-align: left;
    padding-left: 20px;
}

.option-card li {
    margin-bottom: 10px;
    position: relative;
    list-style-type: none;
    padding-left: 25px;
}

.option-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.mail-in-instructions {
    padding: 60px 0;
}

.mail-in-instructions h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
}

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

.instruction-step {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.instruction-step:last-child {
    border-bottom: none;
}

.instruction-step h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.instruction-step p {
    font-size: 16px;
    margin-bottom: 15px;
}

.instruction-step ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.instruction-step li {
    margin-bottom: 10px;
}

.address-box {
    background-color: var(--light-color);
    padding: 20px;
    border-radius: 5px;
    margin: 15px 0;
}

.warranty-info {
    padding: 60px 0;
    background-color: var(--light-color);
}

.warranty-info h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
}

.warranty-info > .container > p {
    text-align: center;
    font-size: 18px;
    max-width: 900px;
    margin: 0 auto 40px;
}

.warranty-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.warranty-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.warranty-item h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-align: center;
}

.warranty-item ul {
    padding-left: 20px;
}

.warranty-item li {
    margin-bottom: 10px;
    position: relative;
    list-style-type: none;
    padding-left: 25px;
}

.warranty-item li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Blog Page Styles */
.blog-posts {
    padding: 60px 0;
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.post-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.post-card:hover {
    transform: translateY(-5px);
}

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

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post-card:hover .post-image img {
    transform: scale(1.05);
}

.post-content {
    padding: 20px;
}

.post-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
    color: #777;
}

.post-content h2 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.post-content p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555;
}

.read-more {
    display: inline-block;
    color: var(--primary-color);
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--secondary-color);
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.pagination a {
    display: inline-block;
    padding: 8px 16px;
    margin: 0 5px;
    border-radius: 5px;
    background-color: #fff;
    color: var(--dark-color);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.pagination a.active {
    background-color: var(--primary-color);
    color: #fff;
}

.pagination a:hover:not(.active) {
    background-color: #f1f1f1;
}

.pagination a.next {
    margin-left: 15px;
}

.blog-sidebar {
    padding: 0 0 60px;
}

.sidebar-content {
    max-width: 1000px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.sidebar-section {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.sidebar-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.sidebar-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.category-list li {
    margin-bottom: 10px;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    color: var(--dark-color);
    transition: color 0.3s ease;
}

.category-list a:hover {
    color: var(--primary-color);
}

.popular-post {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.popular-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.popular-post a {
    display: block;
    color: var(--dark-color);
}

.popular-post h4 {
    font-size: 16px;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.popular-post a:hover h4 {
    color: var(--primary-color);
}

.popular-post .post-date {
    font-size: 14px;
    color: #777;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.newsletter-form button {
    padding: 12px 20px;
}

/* Store Page Styles */
.store-categories {
    padding: 60px 0 30px;
}

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

.category-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
    color: var(--dark-color);
}

.category-card:hover {
    transform: translateY(-5px);
    color: var(--primary-color);
}

.category-icon {
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.category-card h3 {
    font-size: 18px;
}

.featured-products {
    padding: 30px 0 60px;
}

.featured-products h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

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

.product-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--primary-color);
    color: #fff;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: bold;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.product-description {
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
    height: 40px;
    overflow: hidden;
}

.product-price {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-weight: normal;
    margin-right: 10px;
    font-size: 16px;
}

.store-info {
    padding: 60px 0;
    background-color: var(--light-color);
}

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

.info-card {
    text-align: center;
    padding: 20px;
}

.info-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.info-card p {
    font-size: 16px;
    color: #555;
}

@media (max-width: 768px) {
    .warranty-details {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        flex-direction: column;
    }
    
    .process-step:not(:last-child):after {
        left: 30px;
        top: 60px;
        height: calc(100% - 60px);
    }
    
    .step-number {
        margin-bottom: 20px;
    }
    
    .post-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .product-image {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .hero h2 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .about h2,
    .story h2,
    .common-services h2,
    .why-choose-us h2,
    .process-intro h2,
    .service-options h2,
    .mail-in-instructions h2,
    .warranty-info h2 {
        font-size: 28px;
    }
    
    .service-category h3 {
        font-size: 24px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .step-content h3 {
        font-size: 20px;
    }
    
    .option-card {
        padding: 20px;
    }
} 

/* Privacy Page Accessibility Styles */
.privacy-content {
    padding: 40px 0;
    background-color: #fff;
}

.privacy-content .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.privacy-section {
    margin-bottom: 40px;
}

.privacy-section h2 {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.3;
}

.privacy-section h3 {
    color: var(--dark-color);
    font-size: 22px;
    margin: 25px 0 15px 0;
    font-weight: 600;
    line-height: 1.3;
}

.privacy-section p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #444;
    max-width: 65ch;
    text-align: left;
}

.privacy-section ul {
    margin: 20px 0;
    padding-left: 20px;
}

.privacy-section li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 12px;
    color: #444;
    max-width: 65ch;
    position: relative;
    padding-left: 20px;
}

.privacy-section li:before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.privacy-section li:last-child {
    margin-bottom: 0;
}

/* Contact section styling */
.privacy-section:last-child p {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    margin-top: 15px;
}

.privacy-section:last-child p:first-of-type {
    background-color: transparent;
    padding: 0;
    border-left: none;
    margin-top: 0;
}

/* Responsive adjustments for privacy page */
@media (max-width: 768px) {
    .privacy-content .container {
        padding: 0 15px;
    }
    
    .privacy-section h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .privacy-section h3 {
        font-size: 20px;
        margin: 20px 0 12px 0;
    }
    
    .privacy-section p,
    .privacy-section li {
        font-size: 15px;
        line-height: 1.6;
        max-width: none;
    }
    
    .privacy-section ul {
        padding-left: 15px;
    }
    
    .privacy-section li {
        padding-left: 15px;
    }
}

@media (max-width: 480px) {
    .privacy-content {
        padding: 30px 0;
    }
    
    .privacy-section h2 {
        font-size: 22px;
    }
    
    .privacy-section h3 {
        font-size: 18px;
    }
    
    .privacy-section p,
    .privacy-section li {
        font-size: 14px;
        line-height: 1.5;
    }
} 

/* Service Page Styles */
.service-intro {
    text-align: center;
    margin-bottom: 40px;
}

.service-intro h2 {
    color: var(--primary-color);
    font-size: 32px;
    margin-bottom: 20px;
}

.service-intro p {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

/* Switch Models Grid */
.switch-models {
    margin: 60px 0;
}

.switch-models h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 40px;
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.model-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.model-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.model-card h3 {
    color: var(--primary-color);
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

.model-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.model-card ul {
    list-style: none;
    padding: 0;
}

.model-card li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: #555;
}

.model-card li:before {
    content: "✓";
    color: var(--success-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 8px;
}

/* Common Issues Grid */
.common-issues {
    margin: 60px 0;
}

.common-issues h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 40px;
}

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

.issue-item {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease;
}

.issue-item:hover {
    transform: translateY(-5px);
}

.issue-item i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.issue-item h3 {
    color: var(--dark-color);
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

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

/* Refurbishing Services */
.refurbishing-services {
    margin: 60px 0;
}

.refurbishing-services h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 40px;
}

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

.service-item {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
}

.service-item h3 {
    color: var(--primary-color);
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-item p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-item ul {
    list-style: none;
    padding: 0;
}

.service-item li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: #555;
}

.service-item li:before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 8px;
}

/* Best Effort Services */
.best-effort-services {
    margin: 60px 0;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
}

.best-effort-services h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 20px;
}

.best-effort-services > p {
    text-align: center;
    color: #666;
    font-size: 16px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.effort-item {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease;
}

.effort-item:hover {
    transform: translateY(-5px);
}

.effort-item i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.effort-item h3 {
    color: var(--dark-color);
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

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

/* Service Features */
.service-features {
    margin: 60px 0;
}

.service-features h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 40px;
}

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

.feature {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature h3 {
    color: var(--dark-color);
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature p {
    color: #666;
    line-height: 1.6;
}

/* Consultation Process */
.consultation-process {
    margin: 60px 0;
}

.consultation-process h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 40px;
}

/* Responsive adjustments for service pages */
@media (max-width: 768px) {
    .models-grid,
    .issues-grid,
    .services-grid,
    .effort-grid,
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .best-effort-services {
        padding: 20px;
    }
    
    .service-intro h2 {
        font-size: 24px;
    }
    
    .service-intro p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .model-card,
    .issue-item,
    .service-item,
    .effort-item,
    .feature {
        padding: 20px;
    }
    
    .service-intro h2 {
        font-size: 22px;
    }
} 

/* FAQ Page Styles */
.faq-content {
    padding: 40px 0;
}

.faq-intro {
    text-align: center;
    margin-bottom: 40px;
}

.faq-intro p {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 60px;
}

.faq-category h2 {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.faq-item {
    margin-bottom: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.faq-item h3 {
    padding: 20px;
    margin: 0;
    background: #f8f9fa;
    color: var(--dark-color);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s ease;
}

.faq-item h3:hover {
    background: #f0f0f0;
}

.faq-item h3:after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: 300;
    color: var(--primary-color);
}

.faq-item.active h3:after {
    content: "−";
}

.faq-answer {
    padding: 0 20px 20px;
}

.faq-answer p {
    margin-top: 20px;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.6;
}

.faq-answer ul,
.faq-answer ol {
    padding-left: 20px;
    margin-bottom: 20px;
}

.faq-answer li {
    margin-bottom: 10px;
    color: #555;
    line-height: 1.6;
}

.faq-answer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* Responsive adjustments for FAQ page */
@media (max-width: 768px) {
    .faq-category h2 {
        font-size: 24px;
    }
    
    .faq-item h3 {
        font-size: 16px;
        padding: 15px;
    }
    
    .faq-answer {
        padding: 0 15px 15px;
    }
    
    .faq-intro p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .faq-category h2 {
        font-size: 22px;
    }
    
    .faq-item {
        margin-bottom: 20px;
    }
    
    .faq-item h3 {
        font-size: 15px;
        padding: 12px 15px;
    }
    
    .faq-item h3:after {
        right: 15px;
    }
    
    .faq-answer {
        padding: 0 12px 12px;
    }
} 

/* Alert Banner */
.alert-banner {
    background-color: #dc3545;
    color: white;
    padding: 10px 0;
    width: 100%;
}

.alert-banner p {
    margin: 0;
    text-align: center;
    font-size: 16px;
    line-height: 1.4;
}

.alert-banner strong {
    font-weight: 700;
}

@media (max-width: 768px) {
    .alert-banner p {
        font-size: 14px;
        padding: 0 10px;
    }
}