/* Global styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
    width: 100%;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
}

/* Header styles */
.main-header {
    background-color: #fff;
    padding: 20px 0;
    text-align: center;
    width: 100%;
}

.main-header h1 {
    color: #2c4a2f;
    font-size: 28px;
    font-weight: bold;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.3;
}

/* Video section styles */
.video-section {
    background-color: #f5f5f5;
    padding: 10px 0 40px;
    text-align: center;
    width: 100%;
}

.speaker-note {
    font-size: 14px;
    margin-bottom: 20px;
    text-align: center;
}

.video-container {
    background-color: #000;
    height: 400px;
    margin: 0 auto;
    max-width: 800px;
    position: relative;
    overflow: hidden;
}

/* Play button overlay */
.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    cursor: pointer;
    z-index: 10;
}

.play-overlay h2 {
    font-size: 32px;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.play-overlay h3 {
    font-size: 28px;
    margin-top: 20px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.play-button {
    width: 80px;
    height: 80px;
    background-color: rgba(0,0,0,0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 3px solid white;
}

.play-icon {
    color: #7cb342;
    font-size: 32px;
    margin-left: 5px;
    line-height: 1;
}

/* Video.js custom styles */
.video-js {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.vjs-big-play-button {
    display: none !important;
}

/* Expert section styles */
.expert-section {
    background-color: #8ba989;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    position: relative;
    min-height: 180px;
    overflow: hidden;
    width: 100%;
}

.expert-section .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.expert-info {
    display: flex;
    align-items: stretch;
    height: 100%;
}

.expert-image {
    height: 100%;
    margin-right: 20px;
    display: flex;
    align-items: center;
}

.expert-image img {
    height: 180px;
    max-height: 100%;
    display: block;
}

.expert-text {
    padding: 0;
}

.expert-text h2 {
    font-size: 28px;
    margin-bottom: 5px;
    white-space: nowrap;
}

.expert-text h3 {
    font-size: 24px;
    font-weight: normal;
    white-space: nowrap;
}

.media-logos {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding-right: 30px;
    max-width: 350px;
}

.seenon-img {
    max-width: 350px;
    width: 100%;
    height: auto;
    margin-left: auto;
}

.media-logos h3 {
    font-size: 16px;
    margin-bottom: 15px;
    border-bottom: 1px solid white;
    padding-bottom: 5px;
    display: inline-block;
}

.logos {
    display: flex;
    gap: 20px;
}

.logo {
    font-weight: bold;
    font-size: 18px;
}

/* Studies section styles */
.studies-section {
    background-color: white;
    padding: 30px 0;
    width: 100%;
    position: relative;
}

.studies-section .container {
    position: relative;
    max-width: 1000px;
}

.studies-content {
    position: relative;
    padding-left: 140px;
    text-align: left;
    min-height: 100px;
}

.studies-badge {
    position: absolute;
    left: -60px;
    top: 0px;
    width: 100px;
    height: 100px;
    z-index: 1;
}

.badge-inner {
    width: 100%;
    height: 100%;
    background-color: #2c4a2f;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.badge-number {
    font-size: 24px;
    font-weight: bold;
}

.badge-text {
    font-size: 9px;
    max-width: 80px;
    text-align: center;
    line-height: 1.2;
}

.studies-divider {
    border: none;
    height: 1px;
    background-color: #ddd;
    margin: 20px 0;
}

.studies-heading {
    color: #333;
    font-size: 20px;
    font-weight: bold;
    margin: 15px 0;
    position: relative;
    line-height: 1.4;
    padding-left: 0;
}

.toggle-icon {
    display: inline-block;
    margin-left: 5px;
    color: #7cb342;
    font-weight: bold;
    cursor: pointer;
    font-size: 22px;
    transition: transform 0.3s ease;
}

.toggle-icon.active {
    transform: rotate(45deg);
}

/* Studies list styles */
.studies-list {
    display: none;
    margin-top: 15px;
    padding-bottom: 15px;
}

.studies-list.active {
    display: block;
}

.studies-items {
    margin: 0;
    padding-left: 20px;
    list-style-position: outside;
    columns: 1;
}

.studies-items li {
    font-size: 16px;
    color: #333;
    margin-bottom: 12px;
    padding-left: 10px;
    text-align: left;
    line-height: 1.4;
}

/* Footer styles */
footer {
    background-color: #8ba989;
    color: white;
    padding: 30px 0;
    text-align: center;
    width: 100%;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-link {
    color: white;
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: underline;
}

.footer-logo {
    margin: 20px 0;
}

.logo-image {
    max-width: 200px;
}

.copyright {
    margin: 15px 0;
}

.disclaimer {
    max-width: 900px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.4;
    text-align: justify;
}

.disclaimer p {
    margin-bottom: 15px;
}

.years {
    margin-top: 20px;
    font-size: 14px;
}

/* Media Queries */
@media (max-width: 768px) {
    .expert-section {
        flex-direction: column;
    }
    
    .expert-info {
        margin-bottom: 20px;
    }
    
    .media-logos {
        text-align: center;
    }
    
    .studies-section {
        flex-direction: column;
    }
    
    .studies-badge {
        position: relative;
        left: auto;
        top: auto;
        margin: 0 auto 20px;
    }
    
    .studies-content {
        padding-left: 0;
        text-align: center;
    }
    
    .studies-heading {
        padding-left: 0;
        text-align: center;
    }
    
    .studies-items {
        text-align: left;
        padding-left: 30px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 1260px) {
    .studies-badge {
        left: 15px;
    }
}

/* Product section styles */
.product-section {
    background-color: #f5f5f5;
    padding: 50px 0 40px;
    width: 100%;
}

.product-heading {
    color: #2c4a2f;
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
}

.product-options {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.product-option {
    width: 300px;
    background-color: #fff;
    border: 1px solid #ddd;
    position: relative;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Middle box (3 DOSEN) styling */
.product-option:nth-child(2) {
    width: 340px;
    transform: translateY(-10px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    z-index: 1;
    border-width: 1px;
}

.product-header {
    padding: 15px;
    text-align: center;
}

.product-header.single {
    background-color: #bcd3bc;
}

.product-header.triple {
    background-color: #8ba989;
    color: white;
}

.product-header.six {
    background-color: #bcd3bc;
}

.product-header h3 {
    font-size: 22px;
    margin: 0;
}

.product-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-subtitle {
    font-size: 18px;
    margin-bottom: 15px;
    text-align: center;
}

.product-image {
    margin: 15px 0;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.product-image img {
    max-height: 100%;
    max-width: 100%;
}

.product-option:nth-child(2) .product-image {
    height: 190px;
}

.product-pricing {
    text-align: center;
    margin-bottom: 15px;
}

.original-price {
    font-size: 16px;
    margin-bottom: 5px;
}

.original-price span {
    text-decoration: line-through;
}

.current-price {
    font-size: 18px;
}

.current-price span {
    color: #c32e2e;
    font-weight: bold;
    font-size: 22px;
}

.rating {
    color: #ffbf00;
    font-size: 18px;
    margin: 10px 0;
    text-align: center;
    width: 100%;
}

.cart-button {
    display: block;
    background-color: #e67e22;
    color: white;
    text-decoration: none;
    text-align: center;
    padding: 12px 15px;
    border-radius: 5px;
    font-weight: bold;
    margin: 15px 0;
    width: 100%;
    transition: background-color 0.3s;
}

.cart-button:hover {
    background-color: #d35400;
}

.shipping-info {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
    text-align: center;
}

.discount-info {
    display: flex;
    width: 100%;
    margin-top: 0;
    border: none;
}

.discount-percentage, .discount-amount {
    width: 50%;
    padding: 15px 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 80px;
}

.discount-percentage {
    background-color: #fff;
    border: 1px solid #e7e7e7;
}

.discount-amount {
    background-color: #8ba989;
    color: white;
}

.discount-percentage p, .discount-amount p {
    margin: 0;
    line-height: 1.3;
}

.discount-percentage p:first-child, 
.discount-amount p:last-child {
    font-weight: bold;
    font-size: 26px;
    margin-bottom: 2px;
}

.discount-percentage p:first-child {
    color: #2c4a2f;
}

.discount-amount p:last-child {
    color: white;
}

/* Media queries for product section */
@media (max-width: 992px) {
    .product-options {
        gap: 30px;
    }
    
    .product-option {
        width: 290px;
    }
}

@media (max-width: 768px) {
    .product-option {
        width: 100%;
        max-width: 350px;
    }
} 