/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Advertorial Mark */
.advertorial-mark {
    background-color: #f0f0f0;
    text-align: center;
    padding: 8px 0;
    font-size: 12px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Header */
.header {
    background-color: #ffffff;
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
}

.home-button {
    background-color: #4A90E2;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.home-button:hover {
    background-color: #357ABD;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #E8F4F8 0%, #F0F8FF 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('media/wave-pattern.svg') no-repeat;
    background-size: cover;
    opacity: 0.3;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 1;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #1E3A5F;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-description {
    font-size: 18px;
    color: #2C3E50;
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-phones {
    max-width: 100%;
    height: auto;
}

.store-badge {
    height: 50px;
    width: auto;
    display: block;
}

.store-badge-small {
    height: 40px;
    width: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: #4A90E2;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #357ABD;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

.btn-secondary {
    background-color: #ffffff;
    color: #4A90E2;
    border: 2px solid #4A90E2;
}

.btn-secondary:hover {
    background-color: #4A90E2;
    color: #ffffff;
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
    width: 100%;
    text-align: center;
    margin-top: 20px;
}

/* Expert Section */
.expert-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.expert-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.expert-image {
    flex: 1;
}

.expert-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.expert-text {
    flex: 1;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1E3A5F;
    margin-bottom: 24px;
    line-height: 1.3;
}

.section-title.center {
    text-align: center;
    margin-bottom: 50px;
}

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

.logo-small {
    height: 40px;
    width: auto;
}

.section-description {
    font-size: 18px;
    color: #2C3E50;
    line-height: 1.8;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #F8F9FA 0%, #E8F4F8 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.feature-card {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-icon img {
    width: 60px;
    height: 60px;
}

.feature-icon-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
}

.feature-title {
    font-size: 22px;
    font-weight: 700;
    color: #1E3A5F;
    margin-bottom: 16px;
}

.feature-description {
    font-size: 16px;
    color: #2C3E50;
    line-height: 1.6;
}

.features-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Nutrition Section */
.nutrition-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.nutrition-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.nutrition-image {
    flex: 1;
    position: relative;
}

.nutrition-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.nutrition-phone {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.nutrition-text {
    flex: 1;
}

.nutrition-features {
    list-style: none;
    margin-top: 30px;
}

.nutrition-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 16px;
    color: #2C3E50;
}

.nutrition-icon {
    font-size: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #E8F4F8;
    border-radius: 50%;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #F8F9FA 0%, #E8F4F8 100%);
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.benefit-item.reverse {
    flex-direction: row-reverse;
}

.benefit-text {
    flex: 1;
}

.benefit-title {
    font-size: 32px;
    font-weight: 700;
    color: #1E3A5F;
    margin-bottom: 20px;
}

.benefit-description {
    font-size: 18px;
    color: #2C3E50;
    line-height: 1.8;
    margin-bottom: 24px;
}

.benefit-image {
    flex: 1;
    position: relative;
}

.benefit-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Overview Section */
.overview-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.overview-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.overview-devices {
    flex: 1;
    text-align: center;
}

.devices-img {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
}

.store-badges-overview {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.overview-features {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.overview-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #2C3E50;
}

.overview-icon {
    font-size: 24px;
}

/* Free Access Section */
.free-access-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #E8F4F8 0%, #F0F8FF 100%);
}

.section-subtitle {
    font-size: 18px;
    color: #2C3E50;
    text-align: center;
    margin-bottom: 50px;
}

.free-access-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.free-access-left {
    flex: 1;
}

.quote-box {
    background-color: #4A90E2;
    color: #ffffff;
    padding: 40px;
    border-radius: 16px;
    margin-bottom: 30px;
}

.quote-text {
    font-size: 18px;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
}

.quote-author {
    font-size: 16px;
    font-weight: 600;
    text-align: right;
}

.experts-bottom {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.free-access-right {
    flex: 1;
}

.pricing-card {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.pricing-title {
    font-size: 28px;
    font-weight: 700;
    color: #1E3A5F;
    margin-bottom: 20px;
}

.pricing-amount {
    margin-bottom: 30px;
}

.price {
    font-size: 48px;
    font-weight: 700;
    color: #1E3A5F;
    display: block;
}

.price-period {
    font-size: 16px;
    color: #666;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 16px;
    color: #2C3E50;
}

.checkmark {
    color: #4A90E2;
    font-weight: 700;
    font-size: 20px;
}

.pricing-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.pricing-note {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin-top: 16px;
}

/* Footer */
.footer {
    background-color: #1E3A5F;
    color: #ffffff;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
}

.footer-stores {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.store-badge-footer {
    height: 40px;
    width: auto;
}

.footer-links {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #4A90E2;
}

.footer-contact {
    margin-bottom: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-contact-item {
    font-size: 14px;
    margin-bottom: 8px;
    color: #E0E0E0;
}

.footer-disclosures {
    margin-bottom: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.disclosure-text {
    font-size: 12px;
    line-height: 1.6;
    color: #E0E0E0;
    margin-bottom: 16px;
}

.footer-copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 12px;
    color: #B0B0B0;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content,
    .expert-content,
    .nutrition-content,
    .overview-content,
    .free-access-content {
        flex-direction: column;
    }

    .hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 28px;
    }

    .benefit-item,
    .benefit-item.reverse {
        flex-direction: column;
    }

    .nutrition-phone {
        position: static;
        margin-top: 20px;
        width: 100%;
    }

    .overview-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 24px;
    }

    .hero {
        padding: 40px 0;
    }

    .expert-section,
    .features-section,
    .nutrition-section,
    .benefits-section,
    .overview-section,
    .free-access-section {
        padding: 40px 0;
    }
}

