/* Product Banner Content Styles */

/* Container styles */
.banner-hmd-container,
.banner-mbti-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Arial', sans-serif;
}

/* Action button styles */
.action-button-container {
    text-align: center;
    margin: 30px 0;
}

.action-button-container.top {
    margin-top: 0;
}

.action-button-container.bottom {
    margin-bottom: 0;
}

.action-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, #764ba2, #667eea);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.banner-mbti-container .action-button {
    background: linear-gradient(135deg, #1A202C, #4A5568);
}

.action-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Product section styles */
.product-section {
    margin: 60px 0;
    padding: 20px;
    border-radius: 10px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.section-title {
    font-size: 28px;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.section-title:after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #764ba2, #667eea);
    margin: 15px auto 0;
    border-radius: 2px;
}

.banner-mbti-container .section-title:after {
    background: linear-gradient(135deg, #1A202C, #4A5568);
}

/* Product content styles */
.product-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.product-text {
    flex: 1;
    min-width: 300px;
}

.product-text p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #444;
}

.product-text ul,
.product-text ol {
    margin-left: 20px;
    margin-bottom: 15px;
}

.product-text li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: #444;
}

.product-text h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.product-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .product-content {
        flex-direction: column;
    }
    
    .product-content .product-image {
        order: -1; /* Image first on mobile */
    }
    
    .product-content .product-text {
        text-align: center;
    }
    
    .product-text ul,
    .product-text ol {
        display: inline-block;
        text-align: left;
    }
}


/* Banner specific styles */
    .metavie-banner {
        position: relative;
        width: 100%;
        height: 500px;
        overflow: hidden;
        margin-bottom: 50px;
    }
    
    .banner-container {
        display: flex;
        height: 100%;
    }
    
    /* Slanted sections */
    .banner-section {
        position: relative;
        width: 50%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 20px;
        color: white;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .banner-section:hover {
        transform: scale(1.02);
    }
    
    .banner-section.active {
        transform: scale(1.05);
    }
    
    /* Human Design section */
    .hmd-section {
        background: linear-gradient(135deg, #764ba2, #667eea);
        clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
        z-index: 2;
    }
    
    /* MBTI section */
    .mbti-section {
        background: linear-gradient(135deg, #1A202C, #4A5568);
        clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
        margin-left: -10%;
    }
    
    .section-icon {
        margin-bottom: 20px;
    }
    
    .section-icon-img {
        width: 200px;
        height: auto;
        object-fit: contain;
        transition: all 0.3s ease;
    }
    
    .section-icon-img.large {
        width: 300px;
    }
    
    .banner-section:hover .section-icon-img {
        transform: scale(1.1);
    }
    
    .banner-section.active .section-icon-img {
        transform: scale(1.15);
    }
    
    @media (max-width: 768px) {
        .section-icon-img {
            width: 120px;
        }
    }
    
    /* Additional responsive adjustments */
    @media (max-width: 480px) {
        .section-icon-img {
            width: 100px;
            height: auto;
        }
        
        .section-title-a,
        .section-title-b {
            font-size: 20px;
            line-height: 1.3;
            margin-bottom: 10px;
        }
        
        .section-description {
            font-size: 13px;
            max-width: 95%;
            line-height: 1.4;
        }
        
        /* Banner container adjustments */
        .metavie-banner {
            height: auto;
            margin-bottom: 30px;
        }
        
        .banner-section {
            padding: 30px 15px;
            min-height: 280px;
        }
        
        /* Product content adjustments */
        .product-section {
            margin: 30px 0;
            padding: 15px;
        }
        
        .section-title {
            font-size: 22px;
            margin-bottom: 20px;
        }
        
        .product-text {
            min-width: 100%;
        }
        
        .product-text h3 {
            font-size: 18px;
            margin-bottom: 12px;
        }
        
        .product-text p {
            font-size: 14px;
            line-height: 1.5;
            margin-bottom: 12px;
        }
        
        .product-image {
            min-width: 100%;
        }
        
        .product-image img {
            max-width: 90%;
            margin: 0 auto;
        }
        
        .action-button {
            padding: 12px 24px;
            font-size: 16px;
            width: 90%;
            max-width: 280px;
        }
        
        .banner-content {
            padding: 15px;
        }
        
        /* Adjust clip-path for better mobile display */
        .hmd-section {
            clip-path: polygon(0 0, 100% 0, 100% 95%, 0% 100%);
        }
        
        .mbti-section {
            clip-path: polygon(0 5%, 100% 0, 100% 100%, 0% 100%);
            margin-top: -5%;
        }
    }
    
    .section-title-a {
        font-size: 32px;
        margin-bottom: 15px;
        font-weight: bold;
        color:rgb(255, 255, 255)
    }

    .section-title-b {
        font-size: 32px;
        margin-bottom: 15px;
        font-weight: bold;
        color:aliceblue
    }
    
    .section-description {
        font-size: 16px;
        max-width: 80%;
    }
    
    /* Content container */
    .banner-content {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
    }
    
    /* Responsive adjustments */
    @media (max-width: 768px) {
        .metavie-banner {
            height: auto;
        }
        
        .banner-container {
            flex-direction: column;
        }
        
        .banner-section {
            width: 100%;
            padding: 40px 20px;
        }
        
        .hmd-section {
            clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%);
        }
        
        .mbti-section {
            margin-left: 0;
            margin-top: -10%;
            clip-path: polygon(0 10%, 100% 0, 100% 100%, 0% 100%);
        }
    }
    
    /* Tablet-specific adjustments */
    @media (min-width: 481px) and (max-width: 1024px) {
        .metavie-banner {
            height: 450px;
        }
        
        .section-icon-img {
            width: 90px;
        }
    }
