/* General Styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}

.product-section {
    padding: 50px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    background: #F7FAFC;
}

.product-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    gap: 30px;
    flex-wrap: wrap;
}

.product-image {
    width: 300px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.descriptive-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    margin-top: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.product-text h1 {
    font-size: 2rem;
    color: #083A47;
    margin-bottom: 15px;
}

.product-text p, .product-text ul {
    font-size: 1rem;
    line-height: 1.6;
    color: #4A5568;
}

.promo-video {
    margin-top: 20px;
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.cta-section {
    padding: 40px 20px;
    background: #A6CAEC;
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.cta-section p {
    font-size: 1rem;
    margin-bottom: 20px;
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.cta-form input {
    padding: 10px;
    font-size: 1rem;
    width: 100%;
    max-width: 400px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.cta-form button {
    padding: 10px 20px;
    font-size: 1rem;
    color: white;
    background: #007BFF;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-form button:hover {
    background: #0056b3;
}