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

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.3;
    color: #000000;
    background-color: #f9f9f9;
    font-size: 18px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: #000000;
}

.review-link {
    color: #1e4fab;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.review-link:hover {
    color: #2D3748;
}
        
        /* Main Color Scheme (Fox News Style) */
:root {
    --primary-color: #2D3748;
    --secondary-color: #718096;
    --accent-color: #38B2AC;
    --light-color: #ffffff;
    --dark-color: #1a202c;
    --gray-color: #718096;
    --light-gray: #f0f0f0;
}
        
        /* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
        
        /* Header/Navigation */
header {
    background-color: #ffffff;
    padding: 8px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: static;
    z-index: 1000;
}

.logo {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.logo img {
    height: 40px;
}
        
        /* Hero Section */
.hero {
    background-image: url('../image/9987.png');
    background-size: cover;
    background-position: center;
    color: var(--light-color);
    padding: 15px 0;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 77%);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.2;
}

.author-date {
    font-size: 1.1rem;
    margin-top: 15px;
    color: #ddd;
}
        
        /* Introduction Section */
.intro {
    padding: 20px 0;
    background-color: var(--light-color);
    border-bottom: 1px solid #eee;
}

.intro p {
    font-size: 1.3rem;
    line-height: 1.3;
    margin-bottom: 13px;
    color: #000000;
}
        
        /* Product Rankings */
.rankings {
    padding: 20px 0;
    background-color: var(--light-color);
    position: relative;
}

.rankings h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.4rem;
    color: #000000;
}

.product-card {
    display: flex;
    margin-bottom: 20px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    background-color: var(--light-color);
    position: relative;
    transition: all 0.3s ease;
}

.product-card.top-product .product-image {
  cursor: pointer;
}

.product-card.top-product .product-image:hover img {
  transform: scale(1.05);
}

.product-card.top-product {
    border: 1px solid #c20017;
}

.product-card:not(.top-product) {
    border: 1px solid #000000;
}

.rank-badge {
    position: absolute;
    top: 0;
    left: -10px;
    color: white;
    padding: 8px 20px 8px 15px;
    font-size: 16px;
    font-weight: 800;
    z-index: 10;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    transform: skew(-10deg);
    box-shadow: 0 3px 6px rgba(0,0,0,0.3);
}

.rank-badge::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 0;
    width: 0;
    height: 0;
    border-left: 8px solid;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
}

.product-card.top-product .rank-badge {
    background: linear-gradient(135deg, #38B2AC, #2D3748);
}

.product-card.top-product .rank-badge::after {
    border-left-color: #2D3748;
}

.product-card:not(.top-product) .rank-badge {
    background: linear-gradient(135deg, #718096, #2D3748);
}

.product-card:not(.top-product) .rank-badge::after {
    border-left-color: #1a202c;
}

.product-image {
    flex: 0 0 30%;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--light-color);
    border-right: 2px solid #eee;
}

.product-image img {
    width: 100%;
    max-width: 250px;
    transition: transform 0.3s ease;
}

.product-card.top-product .product-image img:hover {
    transform: scale(1.05);
}

.brand-name {
    margin-top: 8px;
    font-weight: 600;
    color: #000000;
    text-align: center;
    font-size: 1.1rem;
}

.product-details {
    flex: 0 0 50%;
    padding: 15px;
    border-right: 2px solid #eee;
}

.product-details h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: #000000;
}

.pros-list, .cons-list {
    margin-bottom: 12px;
}

.pros-list li, .cons-list li {
    list-style: none;
    margin-bottom: 8px;
    position: relative;
    padding-left: 35px;
    font-size: 1.1rem;
    font-weight: 400;
    color: #000000;
}

.pros-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    background: #28a745;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
}

.cons-list li:before {
    content: '✗';
    position: absolute;
    left: 0;
    top: 0;
    background: #dc3545;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
}

.product-rating {
    flex: 0 0 20%;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f9f9f9;
}

.rating-score {
    font-size: 3rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 8px;
}

.stars {
    color: #f2b01e;
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.user-ratings {
    font-size: 1.2rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 12px;
    text-align: center;
}

.cta-button {
    display: block;
    width: 100%;
    padding: 15px 12px;
    text-align: center;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.primary-button {
    background-color: #38B2AC;
    color: var(--light-color);
    border: none;
}

.primary-button:hover {
    background-color: #2D3748;
}

.secondary-button {
    background-color: transparent;
    color: #000000;
    border: 1px solid #718096;
}

.secondary-button:hover {
    background-color: #718096;
    color: var(--light-color);
}

.non-clickable-button {
    background-color: transparent;
    color: #000000;
    border: 1px solid #000000;
    cursor: default;
    pointer-events: none;
}

.discount-tag {
    background-color: #dc3545;
    color: white;
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 12px;
    display: inline-block;
    position: relative;
}

.discount-tag::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #dc3545;
}

.shipping-info {
    font-size: 1rem;
    color: #000000;
    text-align: center;
}

.methodology h2 {
    margin-bottom: 20px;
    color: #000000;
    font-size: 2.4rem;
}

.methodology-points {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 15px;
}

.method-point {
    flex: 1;
    min-width: 200px;
    padding: 15px;
    background-color: var(--light-color);
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.method-point h3 {
    margin-bottom: 8px;
    color: #000000;
    font-size: 1.4rem;
}
        
        /* Detailed Review */
.detailed-review {
    padding: 25px 0;
    background-color: #f9f9f9;
}

.detailed-review h2 {
    margin-bottom: 20px;
    color: #000000;
    font-size: 2.4rem;
    text-align: center;
}

.top-product-highlight {
    display: flex;
    margin-bottom: 20px;
    border: 1px solid #c20017;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    background-color: var(--light-color);
    position: relative;
    transition: all 0.3s ease;
    height: auto;
    min-height: 240px;
    padding-top: 40px;
}

.top-product-highlight .rank-badge {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    background: linear-gradient(135deg, #38B2AC, #38B2AC);
    color: white;
    font-size: 18px;
    font-weight: 800;
    z-index: 10;
    transform: none;
    box-shadow: 0 3px 6px rgba(0,0,0,0.3);
    border-radius: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.award-icon {
    font-size: 1.5rem;
    color: #FFD700;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
    margin: 0 12px;
    transition: transform 0.3s ease;
}

.award-icon:hover {
    transform: scale(1.2);
}

@media (max-width: 992px) {
    .award-icon {
        font-size: 1.2rem;
        margin: 0 8px;
    }
}

@media (max-width: 768px) {
    .award-icon {
        font-size: 1.0rem;
        margin: 0 6px;
    }
}

.highlight-image {
    flex: 0 0 30%;
    padding: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-right: 2px solid #eee;
}

.highlight-details {
    flex: 0 0 50%;
    padding: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    border-right: 2px solid #eee;
}

.highlight-details h3 {
    color: #000000;
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.highlight-details p {
    color: #000000;
    font-size: 1rem;
    margin-bottom: 12px;
}

.highlight-details .pros-list li,
        .highlight-details .cons-list li {
    font-weight: 400;
}

.highlight-cta {
    flex: 0 0 20%;
    padding: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #f9f9f9;
}

.article-content {
    line-height: 1.4;
}

.article-content p {
    margin-bottom: 13px;
    font-size: 1.2rem;
    color: #000000;
}

.article-content h3 {
    margin: 13px 0 8px;
    color: #000000;
    font-size: 1.8rem;
}

.article-content h1 {
    color: #000000;
}

.bottom-cta {
    margin: 25px 0;
    text-align: center;
}

.bottom-cta .cta-button {
    display: block;
    width: 100%;
    margin: 20px 0;
    padding: 20px;
    font-size: 1.5rem;
}       
        /* Author Section */
.author-section {
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: var(--light-gray);
    border-radius: 5px;
    margin-top: 25px;
}

.author-image {
    flex: 0 0 80px;
    margin-right: 20px;
}

.author-image img {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.author-bio h3 {
    margin-bottom: 5px;
    color: #000000;
    font-size: 1.4rem;
}

.author-bio p {
    font-size: 1.0rem;
    color: #000000;
    line-height: 1.4;
}
        
        /* Footer */
footer {
    background-color: #ffffff;
    color: #000000;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #eee;
}

.footer-links {
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 10px;
}

.footer-links a {
    color: #2D3748;
    margin: 0;
    font-size: 1.1rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.footer-links a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-links {
        gap: 5px;
    }
    
    .footer-links a {
        font-size: 0.9rem;
        padding: 5px;
    }
}

@media (max-width: 480px) {
    .footer-links {
        gap: 3px;
    }
    
    .footer-links a {
        font-size: 0.8rem;
        padding: 3px;
    }
}

.copyright {
    font-size: 1rem;
    color: #000000;
}

.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--light-color);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    padding: 30px;
    display: none;
    z-index: 1000;
    width: 350px;
    animation: fadeIn 0.5s forwards;
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: #000000;
    font-weight: bold;
}

.popup-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    text-align: center;
}

.popup-image {
    margin-bottom: 20px;
    width: 150px;
    height: 150px;
}

.popup-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.popup-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.popup-details h3 {
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: #000000;
}

.popup-price {
    margin-bottom: 30px;
    font-weight: 700;
    color: #dc3545;
    font-size: 1.8rem;
}

.popup .cta-button {
    margin-top: auto;
    width: 100%;
    padding: 15px;
    font-size: 1.3rem;
}

.skyscraper-widget {
    position: fixed;
    right: 20px;
    top: 120px;
    width: 300px;
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    padding: 20px;
    z-index: 500;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.skyscraper-header {
    text-align: center;
    margin-bottom: 12px;
}

.skyscraper-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.skyscraper-score {
    font-size: 48px;
    font-weight: 800;
    color: #000;
    line-height: 1;
    margin-bottom: 5px;
}

.skyscraper-rating {
    font-size: 16px;
    color: #28a745;
    font-weight: 600;
    margin-bottom: 12px;
}

.skyscraper-stars {
    color: #f2b01e;
    font-size: 20px;
    margin-bottom: 12px;
}

.skyscraper-users {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.skyscraper-metrics {
    margin-bottom: 20px;
}

.metric-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.metric-label {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.metric-score {
    font-size: 14px;
    font-weight: 700;
    color: #000;
}

.metric-bar {
    width: 100%;
    height: 8px;
    background-color: #e0e0e0;
    border-radius: 4px;
    margin-top: 5px;
    overflow: hidden;
}

.metric-fill {
    height: 100%;
    background-color: #38B2AC;
    border-radius: 4px;
    transition: width 0.3s ease;
}

.skyscraper-pros {
    margin-bottom: 12px;
}

.skyscraper-section-title {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
}

.skyscraper-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.skyscraper-list li {
    font-size: 13px;
    color: #333;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    line-height: 1.4;
}

.skyscraper-list.pros li:before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    background: #28a745;
    color: white;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 800;
}

.skyscraper-list.cons li:before {
    content: '✗';
    position: absolute;
    left: 0;
    top: 0;
    background: #dc3545;
    color: white;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 800;
}

.skyscraper-cons {
    margin-bottom: 20px;
}

.skyscraper-cta {
    text-align: center;
}

.skyscraper-button {
    display: block;
    width: 100%;
    padding: 12px 20px;
    background-color: #38B2AC;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.skyscraper-button:hover {
    background-color: #2D3748;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,107,53,0.3);
}
        
        /* Responsive Design */
@media (max-width: 1024px) {
    .skyscraper-widget {
        display: none;
    }
}

@media (max-width: 992px) {
    .product-card {
        flex-direction: column;
    }

    .product-image, .product-details, .product-rating {
        flex: 0 0 100%;
        border-right: none;
    }

    .product-image {
        padding-bottom: 0;
        border-bottom: 2px solid #eee;
    }

    .product-details {
        border-bottom: 2px solid #eee;
    }

    .product-rating {
        border-top: none;
    }

    .top-product-highlight {
        flex-direction: column;
        min-height: auto;
    }

    .highlight-image, .highlight-details, .highlight-cta {
        flex: 0 0 100%;
        border-right: none;
    }

    .highlight-image {
        border-bottom: 2px solid #eee;
    }

    .highlight-details {
        border-bottom: 2px solid #eee;
    }

    .popup {
        width: 90%;
        height: 400px;
        padding: 20px;
    }
}

@media (max-width: 992px) {
    .top-product-highlight {
        padding-top: 35px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .methodology-points {
        flex-direction: column;
    }

    .method-point {
        margin-bottom: 12px;
    }

    .logo {
        justify-content: center;
    }

    .popup {
        width: 95%;
    }
}
        
        /* Lazy Loading for Images */
.lazy-load {
    opacity: 0;
    transition: opacity 0.3s ease-in;
}

.lazy-load.loaded {
    opacity: 1;
}
        
        /* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-left {
    font-size: 36px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 10px;
}

.logo-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.1;
    border-left: 1px solid #000;
    padding-left: 10px;
}

.logo-line1 {
    font-size: 14px;
    font-weight: 700;
    text-transform: lowercase;
}

.logo-line2 {
    font-size: 14px;
    font-weight: 700;
    text-transform: lowercase;
}

@media (max-width: 768px) {
    .logo-left {
        font-size: 28px;
    }

    .logo-right {
        padding-left: 8px;
    }

    .logo-line1,
            .logo-line2 {
        font-size: 12px;
        font-weight: 700;
    }
}

@media (max-width: 480px) {
    .logo-left {
        font-size: 24px;
    }

    .logo-right {
        padding-left: 6px;
    }

    .logo-line1,
            .logo-line2 {
        font-size: 15px;
        font-weight: 700;
    }
}

.skyscraper-widget {
    position: sticky;
    top: 20px;
    width: 300px;
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    padding: 20px;
    z-index: 500;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin-left: 20px;
    flex-shrink: 0;
}

.article-content {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 30px;
}

.article-text {
    flex: 1;
    max-width: calc(100% - 340px);
}

@media (max-width: 1024px) {
    .skyscraper-widget {
        display: none;
    }

    .article-content {
        display: block;
    }

    .article-text {
        max-width: 100%;
    }
}

.summary-date {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.9rem;
    color: #666;
    text-align: left;
    margin-bottom: 5px;
}

.summary-box {
    background-color: #fbdb95;
    padding: 12px 15px;
    border-radius: 6px;
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    border-left: 3px solid #fbdb95;
}

.summary-content {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.0rem;
    line-height: 1.3;
    color: #333;
}

.article-text .highlight-image {
    width: 100%;
    padding: 0;
    margin: 20px 0;
}

.article-text .highlight-image img {
    width: 100%;
    max-width: 100%;
}

.media-logos-section {
    display: flex;
    justify-content: space-between;
    margin: 20px 0 30px;
    width: 100%;
}

.media-logo {
    flex: 1;
    text-align: center;
    padding: 0 10px;
}

.media-logo img {
    max-width: 100%;
    height: 60px;
    object-fit: contain;
    transition: all 0.3s ease;
}

h3 em {
    color: #0297c9;
    font-style: normal;
    font-weight: 600;
    display: block;
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .media-logos-section {
        flex-wrap: wrap;
        margin: 15px 0 25px;
    }

    .media-logo {
        flex: 0 0 48%;
        margin-bottom: 12px;
        height: 50px;
        padding: 0 5px;
    }

    .media-logo img {
        height: 35px;
    }
}

.instruction-steps p {
    margin-left: 2em;
    font-style: italic;
    margin-bottom: 12px;
    position: relative;
    padding-left: 1.5em;
}

.step-circle {
    position: absolute;
    left: 0;
    width: 1.5em;
    height: 1.5em;
    background: #38B2AC;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-style: normal;
}

.disclaimer {
    font-size: 0.7rem;
    display: block;
    margin-top: 10px;
    line-height: 1.4;
}

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    overflow: hidden;
}

.carousel-slide {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide img {
    width: 100%;
    flex-shrink: 0;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}


.faq-container {
    margin-top: 20px;
}

.faq-item {
    margin-bottom: 10px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
}

.faq-question {
    padding: 15px;
    background-color: #f9f9f9;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #f0f0f0;
}

.faq-question .toggle-icon {
    font-size: 1.2rem;
    font-weight: bold;
}

.faq-answer {
    padding: 0 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #ffffff;
}

.faq-answer.open {
    max-height: 500px;
    padding: 15px;
    border-top: 1px solid #e0e0e0;
}

.feature-item {
    background-color: #f0f8ff;
    border: 2px dashed #38B2AC;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    display: flex;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background-color: #e0f0ff;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.feature-number {
    font-size: 24px;
    font-weight: 800;
    color: #38B2AC;
    margin-right: 15px;
    min-width: 30px;
}

.feature-content {
    flex: 1;
    font-size: 1.1rem;
    line-height: 1.4;
}