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

/* Body Styling */
body {
    font-family: Arial, sans-serif;
    color: #333;
    background-color: #f4f4f4;
}

/* Header Styling */
.site-header {
    background-color: #333;
    color: #fff;
    padding: 15px 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}

.navigation ul {
    list-style: none;
    display: flex;
    gap: 15px;
}

.navigation a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.navigation a:hover {
    color: #ff6600;
}

/* Hero Section Styling */
.hero-section {
    background: url('../pictures/polaris_rzr.jpeg') no-repeat center center/cover;
    color: #ffff00;
    text-align: center;
    padding: 100px 20px;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.cta-button {
    background-color: #ff6600;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

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

/* Footer Styling */
.site-footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

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

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
}

.footer-nav a {
    color: #ff6600;
    text-decoration: none;
}

.footer-nav a:hover {
    color: #e65c00;
}

.footer-contact p {
    margin: 5px 0;
}
/* Service Highlights Section */
.service-highlights {
    padding: 60px 20px;
    background-color: #f4f4f4;
    text-align: center;
}

.service-highlights h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 30px;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.service {
    width: 250px;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.service img {
    width: 60px; /* Adjust size for the icons */
    margin-bottom: 15px;
}

.service h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.service p {
    font-size: 1rem;
    color: #666;
}
/* About Us Section */
.about-us {
    padding: 60px 20px;
    background-color: #f9f9f9;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #333;
}

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

.about-us p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: left;
}
/* Testimonials Section */
.testimonials {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
    color: #333;
}

.testimonials h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 30px;
}

.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.testimonial {
    width: 300px;
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.testimonial p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 10px;
    font-style: italic;
}

.testimonial h4 {
    font-size: 1rem;
    color: #333;
    font-weight: bold;
    text-align: right;
}
/* Call to Action Section */
.cta-section {
    padding: 60px 20px;
    background-color: #333;
    color: #fff;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    color: #ff6600; /* A bold color to catch attention */
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-button {
    padding: 15px 30px;
    background-color: #ff6600;
    color: #fff;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #e65c00; /* Slightly darker shade for hover effect */
}
/* Contact Section */
.contact-section {
    padding: 60px 20px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #333;
}

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

.contact-section p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Contact Container */
.contact-container {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers form and info */
    gap: 30px;
    max-width: 600px; /* Adjusts the container width */
    margin: 0 auto;
}

/* Contact Form Styling */
.contact-form {
    width: 100%; /* Expands form to full container width */
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
    margin-bottom: 15px;
}

.contact-form label {
    font-size: 1rem;
    color: #333;
    margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    color: #333;
    background-color: #f4f4f4;
    width: 100%;
}

.submit-button {
    padding: 10px 20px;
    background-color: #ff6600;
    color: #fff;
    font-size: 1.1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

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

/* Contact Info Styling */
.contact-info {
    width: 100%; /* Ensures contact info container matches form width */
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
}

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

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 5px;
}
/* Hero Section Styling */
.about-hero {
    background: url('../pictures/polaris_turbo_r.jpeg') no-repeat center center/cover; /* Replace with your image */
    color: #ffff00;
    text-align: center;
    padding: 100px 20px;
}

.about-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.about-hero p {
    font-size: 1.2rem;
    margin-top: 10px;
}

/* About Body Section */
.about-body {
    padding: 60px 20px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #333;
}

.about-body h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 15px;
}

.about-body p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: left;
}
/* Hero Section for Services */
.services-hero {
    background: url('../pictures/canam_commander.jpeg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
}

.services-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.services-hero p {
    font-size: 1.2rem;
    margin-top: 10px;
}

/* Services List Section */
.services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    padding: 40px 20px;
}

.service-item {
    width: 300px;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.service-item img {
    width: 60px;
    margin-bottom: 15px;
}

.service-item h2 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.service-item p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 15px;
}

.learn-more {
    color: #ff6600;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

.learn-more:hover {
    color: #e65c00;
}
/* Maintenance Importance Section */
.maintenance-importance {
    padding: 60px 20px;
    background-color: #f4f4f4;
    text-align: center;
    color: #333;
    margin-top: 40px;
}

.maintenance-importance h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
}

.maintenance-importance p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}