/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
    background-color: #FFFFFF;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: #000000;
    padding: 12px 0;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.logo {
    color: #ffffff;
    font-weight: 900;
    font-size: 20px;
    letter-spacing: 1px;
}

.logo span {
    color: #ff0000;
}

/* Subheader */
.subheader {
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    padding: 8px 0;
    font-size: 14px;
    border-top: 1px solid #333;
}

.subheader-text {
    font-size: 12px;
    color: #cccccc;
}

/* Section spacing */
section {
    margin-bottom: 40px;
}

/* Hero section */
.hero {
    text-align: center;
    padding: 25px 0 20px;
    background-color: #f9f9f9;
    border-radius: 0;
    margin-top: 0;
    border-bottom: 1px solid #e0e0e0;
}

h1 {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 12px;
    line-height: 1.2;
}

.subtitle {
    font-size: 16px;
    color: #333333;
    max-width: 90%;
    margin: 0 auto 15px;
}

/* Product single */
.product-single {
    text-align: center;
    margin: 30px auto;
    max-width: 300px;
    background: transparent;
    border: none;
}

.product-image {
    margin-bottom: 20px;
    background: transparent;
    border: none;
}

.product-image img {
    max-width: 130%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    border: none;
    transform: scale(1.3);
}

/* Benefits section */
.benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background-color: #FFFFFF;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #E0E0E0;
    margin-bottom: 25px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.check-icon {
    color: #000000;
    font-weight: bold;
    font-size: 16px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.1);
}

.check-icon i {
    font-size: 10px;
}

.benefit-item p {
    margin: 0;
    font-size: 14px;
    color: #333333;
}

/* Key features */
.key-features {
    display: flex;
    justify-content: space-between;
    margin: 30px 0;
    flex-wrap: wrap;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
}

.feature {
    flex: 1;
    text-align: center;
    min-width: 150px;
    margin-bottom: 20px;
    padding: 0 10px;
}

.feature-icon {
    font-size: 24px;
    margin-bottom: 8px;
    color: #000000;
}

.feature-icon i {
    font-size: 26px;
}

.feature-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #000;
}

.feature-desc {
    font-size: 12px;
    color: #666;
}

/* CTA section */
.cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 50px;
    background-color: #000000;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    transition: background-color 0.3s ease;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    max-width: 400px;
}

.cta-button i {
    margin-left: 8px;
}

.cta-button:hover {
    background-color: #333333;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    font-size: 12px;
    color: #555555;
    margin-top: 10px;
}

.badge {
    display: inline-flex;
    align-items: center;
    margin: 0 8px;
}

.badge i {
    margin-right: 5px;
    color: #000000;
}

/* Payment methods */
.payment-methods {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 30px;
    padding: 15px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.payment-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 100%;
    max-width: 200px;
    overflow: visible;
}

.payment-img {
    width: auto;
    max-width: 200px;
    height: auto;
    display: inline-block;
    object-fit: contain;
    transform: scale(1.0);
}

/* Footer */
.footer {
    background-color: #000000;
    padding: 20px 0;
    text-align: center;
    margin-top: 40px;
    color: #ffffff;
}

.footer p {
    font-size: 12px;
    color: #999999;
    max-width: 90%;
    margin: 10px auto 0;
}

.footer-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 20px 0;
}

.footer-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 12px;
    color: #cccccc;
}

.icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #333333;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    font-size: 16px;
}

.icon-circle i {
    font-size: 16px;
    color: #ffffff;
}

.footer-links {
    margin-bottom: 10px;
    font-size: 12px;
}

.footer-link {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Responsive styles */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 22px;
    }
    
    .cta-button {
        width: 100%;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 8px;
    }
    
    .subtitle {
        max-width: 100%;
        font-size: 14px;
    }
    
    .key-features {
        flex-direction: column;
        gap: 20px;
    }
    
    .feature {
        min-width: 100%;
    }
    
    .payment-img {
        max-width: 100%;
    }
    
    .footer p {
        max-width: 100%;
    }
    
    .footer-icons {
        gap: 20px;
    }
} 