 /* Hero Section Styles */
.hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 200px;
    margin-top: 6rem;
}

.hero-container {
    max-width: 50%;
}

.hero-container .sub-text {
    font-size: 0.9rem;
    font-weight: bold;
    color: #5a5a5a;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.hero-container h1 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: #1b1b1b;
    margin-bottom: 20px;
}

.hero-container .description {
    font-size: 1rem;
    color: #666;
    margin-bottom: 30px;
}

.hero-container .cta-button {
    background-color: #ff6f61;
    color: #fff;
    text-decoration: none;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.hero-container .cta-button:hover {
    background-color: #e0564a;
}

.img-container {
    max-width: 40%;
}

.img-container .hero-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.purchase-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
}

.purchase-desc {
    width: 500px;
    margin-left: 5rem;
    text-align: center;
}

.purchase-desc h2 {
    width: 400px;
    margin: 0 auto;
    margin-bottom: 1rem;
    font-size: 28px;
}

/* Purchase Section Styles */
.purchase-section {
    display: flex;
    justify-content: center;
    padding: 20px;
    margin-top: -10rem;
  }
  
.product-summary {
    max-width: 400px;
    width: 100%;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
  }
  
/* Product Price Section Styles */
.product-summary {
    max-width: 600px; /* Increase the container width */
    width: 100%;
    padding: 30px; /* Add more padding for better spacing */
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1); /* Enhance shadow for emphasis */
    font-family: Arial, sans-serif;
}

.product-summary h2 {
    font-size: 2rem; /* Increase font size for the title */
    margin-bottom: 25px;
    color: #333;
    text-align: center;
}

.selected-product p {
    font-size: 1.2rem; /* Larger font size for product details */
    margin: 10px 0;
}

.price-breakdown .price-item {
    display: flex;
    justify-content: space-between;
    padding: 2px 0; /* Increase vertical padding */
    font-size: 1.2rem; /* Larger font size for prices */
}

.price-breakdown .discount {
    color: #ff6f61;
    font-weight: bold;
}

.total-price {
    display: flex;
    justify-content: space-between;
    font-size: 1.5rem; /* Larger font size for the total */
    font-weight: bold;
    margin: 30px 0; /* Add more space around the total */
    color: #333;
}

.purchase-button {
    display: flex;
    justify-content: center;
    width: 100%;
    background-color: #ff6f61;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.purchase-button:hover {
    background-color: #e0564a;
}

.help-text {
    margin-top: 20px;
    text-align: center;
    font-size: 1.1rem; /* Larger text for the help section */
    color: #666;
}

.help-text .contact-link {
    color: #007BFF;
    text-decoration: none;
    font-weight: bold;
}

.help-text .contact-link:hover {
    text-decoration: underline;
}

.contact-btn {
    text-align: center;
    margin-top: 1rem;
}

.contact-btn a {
    color: #1b1b1b;
    text-decoration: underline;
}

/* Responsive Design Adjustments */
@media (max-width: 768px) {
    .hero-wrapper {
        margin-top: 10rem;
        flex-direction: column; /* Stack content vertically */
        text-align: center;
        padding: 20px;
        width: 100%; /* Ensure full-width on small screens */
        box-sizing: border-box; /* Include padding in width calculation */
    }

    .hero-container {
        max-width: 90%; /* Allow content to stretch closer to screen edges */
        margin: 0 auto 20px auto; /* Center and add spacing */
    }

    .hero-container h1 {
        font-size: 1.8rem; /* Adjust heading size */
        line-height: 1.4; /* Improve readability */
    }

    .hero-container p {
        font-size: 1rem; /* Adjust paragraph size */
        line-height: 1.6;
        margin: 10px 0;
    }

    .get-started-btn {
        font-size: 1rem;
        padding: 10px 20px;
        margin: 15px 0;
    }

    .img-container {
        max-width: 90%;
        margin: 20px auto 0 auto; /* Center the mockup image */
        text-align: center;
    }

    .img-container img {
        max-width: 100%; /* Ensure image scales properly */
        height: auto;
    }

    /* Purchase Section */
    .purchase-wrapper {
        display: flex;
        flex-direction: column-reverse; /* Reverse the stacking order */
        align-items: center; /* Center the content */
        margin-top: 2rem;
    }

    .purchase-desc {
        width: 100%; /* Full width on smaller screens */
        text-align: center;
        margin: 20px 0; /* Add spacing above */
    }

    .purchase-desc h2 {
        font-size: 24px;
        width: 350px;
        margin: 0 auto;
        text-align: center;
        margin-bottom: 1rem;
    }

    .purchase-desc p {
        width: 90%;
        margin: 0 auto;
    }

    .purchase-section {
        width: 100%;
        margin-bottom: 20px; /* Add spacing below the purchase summary */
        margin-top: 0rem;
    }

    .purchase-section h2 {
        font-size: 27px;
    }

    .contact-btn {
        width: 250px;
        margin: 0 auto;
        margin-top: 1rem;
    }
}
