@charset "UTF-8";
/* CSS Document */

/* Banner Area Styles */

.banner-area {
    background-color: #f7f7f7;
}




.banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-text {
    padding: 50px;
}

.banner-text h1 {
    font-size: 36px;
    font-weight: bold;
    color: #333;
}

.banner-text p {
    font-size: 18px;
    color: #666;
}

body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
}

/* Newsletter Section */
.newsletter-area {
    padding: 60px 20px;
    background-color: #f8f8f8;
}

.newsletter-area .section-top h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.newsletter-area form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    max-width: 500px;
    margin: 20px auto;
}

.newsletter-area input {
    width: 70%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.newsletter-area button {
    padding: 12px 20px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    text-transform: uppercase;
}

.feature-area {
    text-align: center;
    padding: 50px 0;
}

.single-feature {
    background: #f9f9f9; /* Light background for contrast */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    height: 100%; /* Ensures equal height */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.single-feature h4 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.single-feature p {
    font-size: 16px;
    color: #666;
}

.row {
    display: flex;
    align-items: stretch;

}
/* Canadian Made Section */
.spacer {
    height: 50px;
}

h2 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 20px;
}

.image-container {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Shop Button */
.secondary-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #000;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    margin-top: 10px;
}

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