
.main {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
}

main.product-detail {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.product-overview {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
    margin-top: 3rem;
}

.product-image {
    flex: 1 1 40%;
    padding: 20px;
    text-align: center;
}

.product-image img {
    max-width: 100%;
    height: auto;
}

.product-summary {
    flex: 1 1 60%;
    padding: 20px;
    
}

.product-summary h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
  
}
.product-summary h1 span {
    font-style: italic;
}

.product-summary p {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--COLOR-MAIN-DARK);
    font-style: italic;
}

.product-meters {
    margin-bottom: 20px;
}

.meter {
    margin-bottom: 15px;
}

.meter label {
    display: block;
    font-size: 1.6rem;
    margin-bottom: 5px;
}

.meter-bar {
    background-color: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    height: 20px;
    border: 1px solid #4c4c4c;
}

.meter-fill {
    height: 100%;
    background-color: #c4c4c4;
}

.cost :first-child{
    font-size: 1.6rem;
}

.cost-value {
    color: #ff9900;
    font-size: 2.5rem;
    margin-left: 5px;
}

.product-actions {
    margin-top: 20px;
}
.product-actions .schedule-service-button,
.action-link{
    color: white;
    background-image: none;
    display: inline-block;
    margin-right: 15px;
    margin-bottom: 10px;
    font-size: 1.6rem;
    color: #fff;
    background-color: var(--COLOR-MAIN-DARK);
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    border: none;
}
.product-actions .schedule-service-button:hover,
.action-link:hover{
    background-color: var(--COLOR-MAIN-BRIGHT);
    transform: none;
}

.section-divider {
    border: none;
    border-top: 1px solid #ccc;
    margin: 40px 0;
}

.product-description,
.product-features,
.product-downloads-warranty,
.product-faq {
    margin-bottom: 40px;
}

.product-description h2,
.product-features h2,
.product-downloads h2,
.product-warranty h2,
.product-faq h2 {
    font-size: 2.4rem;
    margin-bottom: 15px;
    color: var(--COLOR-MAIN-DARK);
}
.product-features h2{
    color: var(--COLOR-SECONDARY-DARK);
}

.product-description p {
    font-size: 1.6rem;
    margin-bottom: 15px;
}
.product-description strong {
    font-size: 1.6rem;
    color: var(--COLOR-MAIN-DARK);
}
.product-description li {
    font-size: 1.4rem;
    color: #4c4c4c;
}

/* Moved Image Section */
.features-image {
    text-align: center;
    margin-bottom: 40px;
}

.features-image img {
    max-width: 100%;
    height: auto;
}
.faq-item a {
    color: var(--COLOR-SECONDARY-BRIGHT);
    font-size: 1.6rem;
}

/* Key Features Section with Two Columns */
.product-features {
    padding: 20px;
}

.features-list {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
    column-gap: 40px;
    list-style-type: disc;
    padding-left: 20px;
}

.features-list li {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: #4c4c4c;
}
.features-list span{
    color: var(--COLOR-MAIN-DARK);
    font-size: 2rem;
}

/* Downloads and Warranty Styling */
.downloads-warranty-container {
    display: flex;
    flex-wrap: wrap;
}

.product-downloads,
.product-warranty {
    flex: 1 1 50%;
    padding: 20px;
}
.product-warranty{
    background-color: var(--COLOR-MAIN-DARK);
    color: white;
}
.product-warranty h2{
    color: var(--COLOR-HIGHLIGHT-BRIGHT);
}
.product-downloads h2,
.product-warranty h2 {
    font-size: 2.4rem;
    margin-bottom: 15px;
}

.product-downloads ul,
.product-warranty ul {
    list-style-type: none;
    padding-left: 0;
}

.product-downloads li,
.product-warranty li {
    margin-bottom: 10px;
}

.download-link {
    font-size: 1.6rem;
    color: var(--COLOR-MAIN-BRIGHT);
    text-decoration: none;
}

.download-link:hover {
    text-decoration: underline;
}

.product-warranty p {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.product-warranty li {
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-family: 'Poppins',sans-serif;
    font-style: italic;
}
.product-warranty span{
    font-size: 1.6rem;
    font-family: 'Roboto',sans-serif;
    color: var(--COLOR-HIGHLIGHT-BRIGHT)
}

/* FAQ Styling */
.product-faq h2 {
    font-size: 2.4rem;
    margin-bottom: 15px;
}

.faq-item {
    margin-bottom: 15px;
}

.faq-question {
    width: 100%;
    text-align: left;
    font-size: 1.8rem;
    padding: 10px;
    border: none;
    background-color: #c4c4c4;
    cursor: pointer;
    outline: none;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #4c4c4c;
    color: white;
}

.faq-question.active {
    background-color: var(--COLOR-SECONDARY-DARK);
    color: white;
}

.faq-answer {
    padding: 10px;
    background-color: #fafafa;
    display: none;
}

.faq-answer p {
    font-size: 1.6rem;
}
/*Get Started section */
.get-started-outer{
    background-color: var(--COLOR-MAIN-BRIGHT);
  }
.get-started {
    display: flex;
    height: 100%;
    align-items: flex-start;
    flex-wrap: wrap-reverse;
}
.get-started-image{
    flex: 1 1 425px;
    padding-bottom: 2rem;
}
.get-started-image img{
    width: 90%;
    height: auto;
    padding: 2rem 1rem 2rem 5rem;
}
.lets-get-started {
    flex: 1 1 425px;
    text-align: center; 
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 2rem 3rem 4rem 3rem;
}
.get-started h2 {
    font-size: 5rem;
    color: white;
    padding: 2rem;
}
.get-started p{
    margin-top: 3rem;
}
.call-us-button{
    background-color: transparent;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all .2s ease;
    margin-top: 10px;
    width: auto;
    padding: 1rem 7.4rem;
    font-size: 2rem;
    border: 2px solid white;
}
.call-us-button:hover{
    transform: scale(1.05);
    background-color: var(--COLOR-MAIN-DARK);
}
.doe-compliance h2 {
    font-size: 2.4rem;
    margin-bottom: 15px;
    color: var(--COLOR-MAIN-DARK);
}
/* Responsive Design */
@media (max-width: 768px) {
    .product-overview,
    .downloads-warranty-container {
        flex-direction: column;
    }

    .product-image,
    .product-summary,
    .product-downloads,
    .product-warranty {
        flex: 1 1 100%;
        padding: 10px;
    }

    /* Features List to Single Column on Small Screens */
    .features-list {
        columns: 1;
        -webkit-columns: 1;
        -moz-columns: 1;
    }
}
