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

/* Body and overall layout */
body {
    font-family: Arial, sans-serif;
	margin: 0;
    padding: 0;
}

/* Header styles */
header {
    background-color: #046BD2;
    color: #ffffff;
    padding: 20px 0;
}

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

/* Ensure the logo link has no default link styles */
.logo-link {
    text-decoration: none; 
    color: inherit; 
}

/* Style for the logo */
header .logo {
    font-weight: bold;
    font-size: 2em; 
}

/* Navigation styles */
header nav a {
    color: #ffffff;
    margin: 0 15px; 
    text-decoration: none;
}

header nav a:hover {
    color: #FBF8BA;
}


.highlight {
    color: #E53E30;
}


/* Price Section */

/* General styles for the price information section */
.price-info {
    margin-top: 20px; 
}

/* Style for the regular price */
.regular-price {
    font-size: 1.2em;
    color: #999;
    margin-bottom: 10px;
}

.regular-price-bottom {
    font-size: 1.2em;
    color: #999;
    margin-bottom: 10px;
	text-align: center;
}

/* Strike-through style for the regular price */
.strike-through {
    text-decoration: line-through;
}

/* Style for today's price */
.today-price {
    font-size: 2em;
    color: #e74c3c;
    font-weight: bold;
    margin-bottom: 15px;
}

/* Bold text for today's price */
.today-price strong {
    font-weight: bold;
}





.section {
    padding: 20px;
    box-sizing: border-box;
}

/* Section-Main */


.section-main {
    display: flex;
    align-items: center;
}

.section-main h3 {
    margin-top: 10px;
	margin-bottom: 10px;
    font-size: 1 em;
}

.section-main__column {
    flex: 1;
    padding: 10px;
}

.section-main__column--left {
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-main__image {
    max-width: 100%;
    height: auto;
}

.section-main__column--right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-main__title {
    font-size: 2rem;
    margin: 0;
}

.section-main__description {
    margin: 10px 0;
	text-align: justify;
}

.section-main__button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #EC2D1D;
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    text-align: center;
    border-radius: 5px;
    white-space: nowrap; 
    width: auto;
    min-width: fit-content;
    max-width: fit-content;
}

.section-main__button:hover {
    background-color: #B31D10;
}


/* Product review */

/* Container for the product review section */
.product-review {
    width: 50%; 
    max-width: 600px;
    margin: 20px auto; 
    padding: 20px;
    background-color: #f9f9f9; 
    border: 1px solid #ddd; 
    border-radius: 8px; 
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center; 
}

/* Styling for the product name */
.product-name {
    display: block;
    font-size: 1rem; 
    margin-bottom: 10px; 
}

/* Styling for the rating box */
.rating-box {
    height: 15px;
    width: 50%;
    max-width: 80px; 
    margin: 10px auto; 
    background-repeat: no-repeat;
    background-image: url('./images/rating.png');
    background-size: cover; 
}

/* Styling for the rating value and reviews link */
.r-lnk {
    font-size: 1rem;
    line-height: 15px;
    display: flex;
    justify-content: center; 
    align-items: center; 
    gap: 5px; 
}

.r-lnk span {
    margin: 0 2px; 
}




/* Section-credentials */

/* Section-Credentials */
.section-credentials {
    display: flex;
    flex-wrap: wrap; 
    justify-content: space-between;
    align-items: flex-start;
    background-color: #f0f0f0;
    padding: 20px;
    border-radius: 8px;
}

.section-credentials__column {
    flex: 1;
    max-width: 30%; 
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
}

.section-credentials__image {
    width: 100%;
    max-width: 200px; 
    height: auto;
    object-fit: cover;
    margin-bottom: 10px;
}

.section-credentials__title {
    font-size: 1.5rem;
    margin: 10px 0;
}

.section-credentials__paragraph {
    font-size: 1rem;
    margin: 0;
}




/* content-white */

.content-white {
    background-color: #FFFFFF;
    padding: 20px;
    box-sizing: border-box;
}

.content-white__title {
    font-size: 2rem;
    margin-top: 0;
    text-align: center;
}

.content-white__content {
    padding: 20px 0;
	text-align: justify;
}

.content-white__content h2 {
    font-size: 1.5rem;
    margin-top: 20px;
    margin-bottom: 10px;
}

.content-white__content h3 {
    font-size: 1rem;
    margin-top: 20px;
    margin-bottom: 10px;
}

.content-white__content h4 {
    font-size: 0.9rem;
    margin-top: 20px;
    margin-bottom: 10px;
}

.content-white__content h5 {
    font-size: 0.8rem;
    margin-top: 20px;
    margin-bottom: 10px;
}

.content-white__content h6 {
    font-size: 0.75rem;
    margin-top: 20px;
    margin-bottom: 10px;
}

.content-white__content p {
	text-align: justify;
    margin: 0 0 15px; 
}


/* content-gray */

.content-gray {
    background-color: #F1F1F1;
    padding: 20px;
    box-sizing: border-box;
}

.content-gray__title {
    font-size: 2rem;
    margin-top: 0;
    text-align: center;
}

.content-gray__content {
    padding: 20px 0;
	text-align: justify;
}

.content-gray__content h2 {
    font-size: 1.5rem;
    margin-top: 20px;
    margin-bottom: 10px;
}

.content-gray__content h3 {
    font-size: 1rem;
    margin-top: 20px;
    margin-bottom: 10px;
}

.content-gray__content h4 {
    font-size: 0.9rem;
    margin-top: 20px;
    margin-bottom: 10px;
}

.content-gray__content h5 {
    font-size: 0.8rem;
    margin-top: 20px;
    margin-bottom: 10px;
}

.content-gray__content h6 {
    font-size: 0.75rem;
    margin-top: 20px;
    margin-bottom: 10px;
}

.content-gray__content p {
	text-align: justify;
    margin: 0 0 15px; 
}

/* Pricing Section */

.pricing {
    padding: 20px;
    box-sizing: border-box;
    text-align: center; 
}

.pricing__title {
    font-size: 2rem;
    margin: 0;
    margin-bottom: 20px; 
}

.pricing__line {
    font-size: 1.5rem;
    margin: 10px 0; 
}

.pricing__image-container {
    text-align: center; 
}

.pricing__image {
    width: 800px;
    height: auto; 
}

@media screen and (max-width: 768px) {
    .pricing__image {
        width: 90%;
    }
}



/* Image Section */

.imagesection {
    padding: 20px;
    box-sizing: border-box;
    text-align: center; 
}

.imagesection__title {
    font-size: 2rem;
    margin: 0;
    margin-bottom: 20px; 
}

.imagesection__line {
    font-size: 1.5rem;
    margin: 10px 0; 
}

.imagesection__image-container {
    text-align: center; 
}

.imagesection__image {
    width: 800px;
    height: auto; 
}

@media screen and (max-width: 768px) {
    .imagesection__image {
        width: 90%;
    }
}



/* Money-back Guarantee Section */

.money-back-guarantee {
    display: flex;
    padding: 20px;
    box-sizing: border-box;
}

.money-back-guarantee__column {
    flex: 1; 
    padding: 10px;
    box-sizing: border-box;
}

.money-back-guarantee__image-column {
    display: flex;
    justify-content: center; 
    align-items: center; 
}

.money-back-guarantee__image {
    width: 400px;
    height: 400px;
    object-fit: cover; 
}

.money-back-guarantee__text-column {
    display: flex;
    flex-direction: column;
    justify-content: center; 
}

.money-back-guarantee__title {
    font-size: 2rem;
    margin: 0 0 10px; 
}

.money-back-guarantee__paragraph {
    font-size: 1rem;
    margin: 0; 
	text-align: justify;
}

.money-back-guarantee__paragraph h2 {
    font-size: 1.5rem;
    margin-top: 20px;
    margin-bottom: 10px;
}

.money-back-guarantee__paragraph h3 {
    font-size: 1rem;
    margin-top: 20px;
    margin-bottom: 10px;
}

.money-back-guarantee__paragraph h4 {
    font-size: 0.9rem;
    margin-top: 20px;
    margin-bottom: 10px;
}

.money-back-guarantee__paragraph h5 {
    font-size: 0.8rem;
    margin-top: 20px;
    margin-bottom: 10px;
}

.money-back-guarantee__paragraph h6 {
    font-size: 0.75rem;
    margin-top: 20px;
    margin-bottom: 10px;
}

.money-back-guarantee__paragraph p {
	text-align: justify;
    margin: 0 0 15px; 
}


/* Call-to-action Section */

.call-to-action {
    display: flex;
    padding: 20px;
    box-sizing: border-box;
}

.call-to-action h2 {
    margin-top: 10px;
	margin-bottom: 10px;
    font-size: 2em;
}

.call-to-action__column {
    flex: 1; 
    padding: 10px;
    box-sizing: border-box;
}

.call-to-action__image-column {
    display: flex;
    justify-content: center; 
    align-items: center; 
}

.call-to-action__image {
    width: 400px;
    height: 400px;
    object-fit: cover; 
}

.call-to-action__text-column {
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center; 
}

.call-to-action__title {
    font-size: 2rem;
    margin: 0;
    margin-bottom: 10px; 
    text-align: center;
}

.call-to-action__paragraph {
    font-size: 1rem;
    margin: 0 0 20px; 
    text-align: center;
}

.call-to-action__button {
    display: inline-block;
    padding: 10px 20px; 
    background-color: #EC2D1D;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.5rem;
    border-radius: 5px;
    text-align: center;
}

.call-to-action__button:hover {
    background-color: #B31D10; 
}

.call-to-action__paragraph p {
    margin: 0 0 15px; 
}


/* quick-links  Section */

.quick-links {
    background-color: #f0f0f0; 
    padding: 20px;
}

.quick-links__title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.quick-links__container {
    display: flex;
    justify-content: space-between;
}

.quick-links__column {
    flex: 1;
    max-width: 50%; 
    padding: 0 10px;
    text-align: center; 
}

.quick-links__link {
    display: block;
    margin: 5px 0;
    color: #007BFF; 
    text-decoration: none;
    font-size: 1rem;
}

.quick-links__link:hover {
    text-decoration: underline; 
}


/* Footer styles */
footer {
    background-color: #046BD2;
    color: #ffffff;
    padding: 10px 0;
    text-align: center;
}

footer nav a {
    color: #ffffff;
    margin: 0 10px;
    text-decoration: none;
}

footer nav a:hover {
    color: lightyellow;
}

footer p {
    margin-top: 10px;
}

/* Responsive design */
/* Mobile Styles */
@media only screen and (max-width: 600px) {
    /* Header */
    header .container {
        flex-direction: column;
        align-items: center; 
        padding: 0 10px;
    }

    header .logo {
        font-size: 1.5em; 
        text-align: center; 
        margin-bottom: 10px; 
    }

    header nav {
        margin-top: 10px;
        text-align: center; 
    }

    header nav a {
        display: block;
        margin: 5px 0;
    }

    /* Section-Main */
    .section-main {
        flex-direction: column;
    }

    .section-main__column--left,
    .section-main__column--right {
        padding: 0;
    }

    .section-main__image {
        max-width: 100%;
        height: auto;
    }

    /* Money-back Guarantee Section */
    .money-back-guarantee,
    .call-to-action {
        flex-direction: column;
    }

    .money-back-guarantee__image,
    .call-to-action__image {
        width: 100%;
        height: auto;
    }

    /* Quick Links */
    .quick-links__container {
        flex-direction: column;
    }

    .quick-links__column {
        max-width: 100%;
        padding: 10px 0;
    }

    /* Product Review */
    .product-review {
        width: 100%; 
        padding: 10px;
    }

    .rating-box {
        width: 80%; 
    }
}

/* Tablet Styles */
@media only screen and (min-width: 601px) and (max-width: 900px) {
    /* Header */
    header .container {
        padding: 0 15px;
        text-align: center; 
    }

    header .logo {
        font-size: 1.8em; 
        text-align: center; 
    }

    header nav {
        margin-top: 10px;
        text-align: center; 
    }

    header nav a {
        margin: 0 10px; 
    }

    /* Section-Main */
    .section-main {
        flex-direction: column;
    }

    .section-main__column--left,
    .section-main__column--right {
        padding: 10px;
    }

    .section-main__title {
        font-size: 1.75rem;
    }

    /* Money-back Guarantee Section */
    .money-back-guarantee__image,
    .call-to-action__image {
        width: 100%;
        height: auto;
    }

    /* Quick Links */
    .quick-links__container {
        flex-direction: column;
    }

    .quick-links__column {
        max-width: 100%;
        padding: 10px 0;
    }

    /* Product Review */
    .product-review {
        width: 100%; 
        padding: 15px;
    }
}

/* Large Screens */
@media only screen and (min-width: 901px) {
    /* Header */
    header .container {
        max-width: 1200px;
        padding: 0 20px;
    }

    /* Section-Main */
    .section-main {
        flex-direction: row;
    }

    .section-main__column--left,
    .section-main__column--right {
        padding: 10px;
    }

    .section-main__title {
        font-size: 2rem;
    }

    /* Money-back Guarantee Section */
    .money-back-guarantee,
    .call-to-action {
        flex-direction: row;
    }

    .money-back-guarantee__image,
    .call-to-action__image {
        width: 400px;
        height: 400px;
    }

    /* Quick Links */
    .quick-links__container {
        flex-direction: row;
    }

    .quick-links__column {
        max-width: 50%;
        padding: 0 10px;
    }
}


@media only screen and (max-width: 900px) {
    .section-credentials__column {
        max-width: 45%; 
    }
}

@media only screen and (max-width: 600px) {
    .section-credentials {
        flex-direction: column; 
    }

    .section-credentials__column {
        max-width: 100%; 
        margin-bottom: 20px; 
    }

    .section-credentials__image {
        max-width: 100%; 
    }
}