* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #000000;
    background-color: #f2f6fa;
}

.container {
    max-width: 1002px;
    margin: 0 auto;
    padding: 0 12px 0 12px;
}

/* Header Styles */
.header {
    background-color: #ffffff;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.02);
}

.disclaimer {
    background-color: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0;
    text-align: center;
}

.disclaimer-text {
    font-size: 10px;
    color: rgba(0, 0, 0, 0.4);
    line-height: 15px;
}

.disclaimer-text a {
    text-decoration: underline;
    color: rgba(0, 0, 0, 0.4);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    max-width: 1002px;
    margin: 0 auto;
}

.logo {
    height: 28px;
    width: auto;
}

.nav-menu {
    display: none;
    gap: 40px;
}

.nav-menu a {
    font-size: 14px;
    color: #000000;
    text-decoration: none;
    line-height: 17px;
}

.nav-menu a:hover {
    color: #235edd;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(0, 136, 255, 0.05) 0%, rgba(0, 136, 255, 0.02) 100%);
    padding: 0;
    position: relative;
    overflow: hidden;
    height: 290px;
    display: flex;
    align-items: center;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 0;
    height: 100%;
    max-width: 1002px;
    margin: 0 auto;
    width: 100%;
}

.hero-text {
    flex: 1;
    z-index: 2;
}

.hero-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    color: #000000;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 16px;
    line-height: 19px;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 24px;
    width: 70%;
}

.hero-features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-tag-icon {
    background-color: #ff8c00;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-tag-icon img {
    width: 16px;
    height: 16px;
}

.feature-tag span {
    font-size: 14px;
    color: #000000;
    line-height: 17px;
}

.hero-image {
    height: 100%;
    width: auto;
    object-fit: cover;
    display: block;
    margin-left: -40px;
  }

.hero-image-wrapper {
    position: relative;
    display: inline-block;
    height: 100%;
    max-width: 500px;
    width: 50%;
    overflow: visible;
}

.hero-badge {
    position: absolute;
    bottom: 0;
    left: -21%;
    width: 244px;
    height: auto;
    z-index: 2;
    height: 156px;
}

/* Product List */
.products-section {
    padding: 52px 0;
}

.products-container {
    max-width: 1002px;
    margin: 0 auto;
    padding: 0;
}

.product-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.product-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.04);
    display: flex;
    gap: 24px;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
}

.product-card.featured {
    border: 2px solid #ff8c00;
    background-color: #fff3e4;
}

.product-badge {
    position: absolute;
    top: -1px;
    left: -2px;
    background-color: #ff8c00;
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
    padding: 6px 12px;
    border-top-left-radius: 8px;
    border-bottom-right-radius: 8px;
    z-index: 1;
}

.product-rank {
    width: 30px;
    height: 30px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    color: #000000;
}

.product-rank.featured {
    background-color: #ff8c00 !important;
    color: #ffffff !important;
}

.product-rank.regular {
    background-color: #ebebeb;
}

.product-platforms {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    width: 176px;
}

.platform-icons {
    display: none; /* flex */
    gap: 6px;
}

.platform-icons img {
    width: 18px;
    height: 18px;
}

.product-logo {
    width: 176px;
    height: 38px;
    object-fit: contain;
}

.product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.product-description {
    font-size: 14px;
    font-weight: 600;
    line-height: 16px;
    color: #000000;
}

.product-features {
    display: flex;
    gap: 24px;
}

.features-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-item img {
    width: 18px;
    height: 18px;
}

.feature-item span {
    font-size: 16px;
    line-height: 15px;
    color: #000000;
}

.product-cta {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
    min-width: 138px;
}

.visit-btn {
    background-color: #df1717;
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    line-height: 17px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: center;
    max-width: 220px;
}

.visit-btn:hover {
    background-color: #c41414;
    transform: translateY(-1px);
}

.rating-info {
    text-align: center;
}

.rating-text {
    font-size: 12px;
    line-height: 15px;
    color: #000000;
    margin-bottom: 10px;
}

.stars {
    display: flex;
    gap: 6px;
    justify-content: center;
}

.stars img {
    width: 16px;
    height: 16px;
}

/* FAQ Section */
.faq-section {
    padding: 56px 0;
}

.faq-container {
    max-width: 1002px;
    margin: 0 auto;
    padding: 0 24px;
}

.faq-header {
    margin-bottom: 26px;
}

.faq-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 25px;
    color: #235edd;
    margin-bottom: 6px;
}

.faq-subtitle {
    font-size: 14px;
    line-height: 20px;
    color: #000000;
}

.faq-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.faq-questions {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 12px 14px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.04);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-item:hover {
    background-color: #f8f9fa;
}

.faq-question {
    font-size: 14px;
    line-height: 17px;
    color: #000000;
}

.faq-icon {
    width: 22px;
    height: 22px;
}

.faq-image {
    width: 272px;
    height: 314px;
    object-fit: contain;
}

.faq-answer {
    display: none;
    font-size: 14px;
    line-height: 20px;
    color: #333;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.faq-item.expanded .faq-answer {
    display: block;
}

/* Content Sections */
.content-section {
    padding: 0;
}

.content-container {
    max-width: 1002px;
    margin: 0 auto;
    padding: 0 24px;
}

.content-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 25px;
    color: #235edd;
    margin-bottom: 8px;
}

.content-text {
    font-size: 14px;
    line-height: 20px;
    color: #000000;
    margin-bottom: 28px;
}

.content-subsection {
    margin-bottom: 40px;
}

.subsection-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 25px;
    color: #235edd;
    margin-bottom: 6px;
}

.subsection-text {
    font-size: 14px;
    line-height: 20px;
    color: #000000;
}

/* Footer */
.footer {
    background-color: #ffffff;
    padding: 40px 0;
}

.footer-container {
    max-width: 1002px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 38px;
}

.footer-brand {
    flex: 1;
    max-width: 320px;
}

.footer-logo {
    height: 28px;
    width: auto;
    margin-bottom: 30px;
}

.footer-copyright {
    font-size: 14px;
    line-height: 22px;
    color: #000000;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-column-title {
    font-size: 14px;
    line-height: 17px;
    color: #000000;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-link-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link {
    font-size: 14px;
    line-height: 17px;
    color: #000000;
    text-decoration: none;
}

.footer-link:hover {
    color: #235edd;
}

.footer-divider {
    height: 1px;
    background-color: rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}

.footer-disclaimer {
    font-size: 11px;
    line-height: 18px;
    text-align: center;
    color: rgba(0, 0, 0, 0.4);
}

/* Responsive Design */
@media (min-width: 640px) {
    .container {
        padding: 0 24px;
    }

    .hero-title {
        font-size: 28px;
        line-height: 34px;
    }

    .hero-description {
        font-size: 18px;
        line-height: 22px;
    }
}

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }

    .hero-title {
        font-size: 32px;
        line-height: 38px;
    }

    .hero-description {
        font-size: 16px;
        line-height: 24px;
    }

    .product-features {
        gap: 40px;
    }

    .faq-content {
        gap: 60px;
    }

    .footer-links {
        gap: 80px;
    }
}

@media (min-width: 1024px) {
    .container,
    .faq-container,
    .content-container,
    .footer-container {
        padding: 0;
    }
}