* {
    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: #333;
    background: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: #f6f6f6;
    color: #333;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-nav {
    padding: 0;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-image {
    width: 143px;
    height: auto;
    display: block;
}

img {
    max-width: 100%;
}

img, svg {
    vertical-align: middle;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #0071ce;
}

.hero {
    background: #f8f9fa;
    color: #333;
    padding: 60px 0;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text-content h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #0071ce;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #555;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    color: #333;
}

.hero-feature .icon {
    background: #0071ce;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.hero-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.membership-options {
    padding: 60px 0;
    background: #f8f9fa;
}

.membership-options h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 10px;
    color: #333;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

.membership-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: relative;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #e5e5e5;
}

.card:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    z-index: 10;
}

.card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card h3 {
    padding: 20px 30px 10px;
}

.card .benefits {
    padding: 0 30px;
    flex-grow: 1;
}

.card .cta-button {
    margin: 20px 30px;
}

.card.featured {
    position: relative;
}

.card.featured:hover {
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff6b00;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #0071ce;
}

.price-container {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin: 15px 0;
    padding: 0 30px;
}

.price-currency {
    font-size: 2rem;
    font-weight: bold;
    color: #0071ce;
    margin-right: 2px;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: bold;
    color: #333;
    line-height: 1;
}

.price-period {
    font-size: 1.2rem;
    color: #666;
    margin-left: 4px;
    font-weight: 500;
}

.price {
    font-size: 3rem;
    font-weight: bold;
    color: #333;
    margin: 10px 0;
}

.price-note {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
}

.benefits {
    list-style: none;
    margin: 20px 0;
    text-align: left;
}

.benefits li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
}

.benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0071ce;
    font-weight: bold;
}

.cta-button {
    display: inline-block;
    padding: 14px 32px;
    background: #0071ce;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 20px;
    transition: background 0.2s, transform 0.2s;
    font-size: 1rem;
}

.cta-button:hover {
    background: #005ba3;
    transform: translateY(-1px);
}

.cta-button.primary {
    background: #ff6b00;
}

.cta-button.primary:hover {
    background: #e55f00;
}

.cta-button.large {
    padding: 16px 40px;
    font-size: 1.05rem;
}

.why-join {
    padding: 60px 0;
    background: #ffffff;
}

.why-join h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature {
    text-align: center;
    padding: 20px;
}

.feature h3 {
    color: #0071ce;
    margin-bottom: 10px;
}

.disclaimer {
    background: #ffffff;
    padding: 30px 0;
    border-top: 1px solid #e5e5e5;
}

.small-text {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
}

footer {
    background: #333;
    color: white;
    padding: 40px 0 20px;
    text-align: center;
}

.footer-nav {
    margin-bottom: 20px;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.9rem;
}

.footer-nav a:hover {
    text-decoration: underline;
}

.contact-info {
    font-size: 0.95rem;
    color: #ccc;
    margin-top: 15px;
}

.contact-info a {
    color: #0071ce;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.copyright, .affiliate-notice {
    font-size: 0.85rem;
    color: #999;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-text-content h1 {
        font-size: 2rem;
    }
    
    .hero-image {
        order: -1;
    }
    
    .card.featured {
        position: relative;
    }
    
    .card:hover {
        transform: scale(1.02);
    }
    
    .card.featured:hover {
        transform: scale(1.02);
    }
    
    .membership-cards {
        grid-template-columns: 1fr;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .tagline {
        margin-left: 0;
    }
}

.feature-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonials {
    padding: 60px 0;
    background: #f8f9fa;
    border-top: 1px solid #e5e5e5;
}

.testimonials h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #333;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    border: 1px solid #e5e5e5;
}

.stars {
    color: #ff6b00;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial p {
    font-style: italic;
    color: #555;
    line-height: 1.6;
}

.testimonial .author {
    font-style: normal;
    font-weight: bold;
    color: #0071ce;
    margin-top: 15px;
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-text-content h1 {
        font-size: 2rem;
    }
    
    .hero-image {
        order: -1;
    }
    
    .card:hover {
        transform: scale(1.02);
    }
    
    .card.featured:hover {
        transform: scale(1.02);
    }
    
    .membership-cards {
        grid-template-columns: 1fr;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .nav-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 15px;
    }
}

/* Cookie Consent Banner */
.cookie-consent {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #333;
    color: white;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 9999;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-consent p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    flex: 1;
    min-width: 250px;
}

.cookie-consent a {
    color: #0071ce;
    text-decoration: underline;
}

.cookie-consent a:hover {
    color: #5ba3e0;
}

.cookie-accept-btn {
    background: #0071ce;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    white-space: nowrap;
}

.cookie-accept-btn:hover {
    background: #005ba3;
}

@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-accept-btn {
        width: 100%;
    }
}

/* Conversion Optimization Styles */
.limited-offer {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b00 0%, #ff8c00 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

.guarantee-text {
    margin-top: 15px;
    font-size: 0.95rem;
    color: #0071ce;
    font-weight: 600;
}

.savings-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff6b00 0%, #ff8c00 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: bold;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(255, 107, 0, 0.3);
}

.savings-badge.basic {
    background: linear-gradient(135deg, #0071ce 0%, #0056a3 100%);
    box-shadow: 0 4px 10px rgba(0, 113, 206, 0.3);
}

.value-prop {
    color: #0071ce;
    font-weight: 600;
    font-size: 1rem;
    margin: 10px 30px;
    padding: 0;
}

.urgency-text {
    color: #ff6b00;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 15px 30px 20px;
    padding: 0;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    color: #333;
    font-weight: 500;
}

.trust-icon {
    color: #0071ce;
    font-size: 1.2rem;
    font-weight: bold;
}

.cta-button.pulse:hover {
    animation: none;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .trust-indicators {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .limited-offer {
        font-size: 0.85rem;
        padding: 6px 16px;
    }
}

/* Vertical Offer Card */
.vertical-offer-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid #dee2e6;
}

.vertical-card-content {
    display: flex;
    flex-direction: row;
    gap: 25px;
    padding: 25px;
    align-items: center;
}

.vertical-card-image {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
}

.vertical-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vertical-card-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vertical-card-label {
    display: inline-block;
    background: #0071ce;
    color: white;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    width: fit-content;
}

.vertical-card-title {
    font-size: 1rem;
    color: #333;
    margin: 0;
    line-height: 1.5;
    font-weight: 600;
}

.vertical-card-title strong {
    color: #0071ce;
}

.vertical-card-description {
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
}

.vertical-card-description p {
    margin: 5px 0;
}

.vertical-card-description strong {
    color: #ff6b00;
}

.vertical-card-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 0 15px;
    min-width: 200px;
}

.vertical-card-highlight {
    background: #ff6b00;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.75rem;
    text-align: center;
    line-height: 1.3;
    font-weight: 600;
}

.btn-vertical-primary {
    display: inline-block;
    background: #0071ce;
    color: white;
    padding: 10px 25px;
    border-radius: 6px;
    font-size: 0.9rem;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
    text-align: center;
    width: 100%;
}

.btn-vertical-primary:hover {
    background: #005ba3;
}

@media (max-width: 992px) {
    .vertical-card-content {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    
    .vertical-card-image {
        width: 100%;
        height: 180px;
    }
    
    .vertical-card-cta {
        width: 100%;
        min-width: auto;
        padding: 0;
    }
    
    .vertical-card-title {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .vertical-card-content {
        padding: 15px;
    }
    
    .vertical-card-image {
        height: 150px;
    }
    
    .vertical-card-title {
        font-size: 0.9rem;
    }
    
    .btn-vertical-primary {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .vertical-card-description {
        font-size: 0.85rem;
    }
}

/* Top Offers Section */
.top-offers {
    padding: 40px 0;
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
}

.top-offers .vertical-offer-card {
    margin-bottom: 15px;
}

.top-offers .vertical-offer-card:last-child {
    margin-bottom: 0;
}
