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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
    font-size:18px;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

/* Typography */
h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
}

.highlight {
    color: #c41e3a;
}

.highlight-text {
    color: #c41e3a;
    font-style: italic;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #c41e3a 0%, #a01830 100%);
    color: #fff;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(196, 30, 58, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #a01830 0%, #801228 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(196, 30, 58, 0.4);
}

.btn-small {
    background: linear-gradient(135deg, #c41e3a 0%, #a01830 100%);
    color: #fff;
    padding: 8px 16px;
    font-size: 0.85rem;
}

.btn-small:hover {
    background: linear-gradient(135deg, #a01830 0%, #801228 100%);
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: row;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 30px 0 30px 30px;
    gap: 20px;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-subtitle {
    color: #555;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.hero-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 0px;
    object-fit: cover;
}

.check-icon {
    background-color: #28a745;
    color: #fff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* Signs Section */
.signs-section {
    padding: 25px 30px;
    background-color: #fff;
    position: relative;
}

.signs-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.shield-icon {
    font-size: 1.5rem;
    color: #c41e3a;
}

.signs-list {
    list-style: none;
    margin-bottom: 15px;
}

.signs-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.95rem;
    color: #444;
}

.check-red {
    color: #c41e3a;
    font-weight: bold;
    font-size: 1.1rem;
}

.signs-image {
    width: 60%;
    margin-top: 0;
    position: absolute;
    top: 0;
    right: 0;
    left: auto;
}

.signs-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 0;

}

/* Success Story Section */
.success-story {
    display: flex;
    flex-direction: row;
    padding: 30px;
    background-color: #f8f9fa;
    gap: 25px;
    align-items: center;
}

.product-image {
    flex: 0 0 350px;
}

.product-image img {
    width: 100%;
    border-radius: 0px;
}

.story-content {
    flex: 1;
}

.story-content h2 {
    margin-bottom: 15px;
    color: #333;
}

.story-content p {
    color: #555;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.story-content blockquote {
    font-size: 1.1rem;
    color: #333;
    font-style: italic;
    border-left: 3px solid #c41e3a;
    padding-left: 15px;
}

/* Products Section */
.products-section {
    padding: 30px;
    background-color: #fff;
}

.products-header {
    background: linear-gradient(135deg, #4a90a4 0%, #2c5f6f 100%);
    color: #fff;
    padding: 12px 20px;
    text-align: center;
    margin: -30px -30px 20px -30px;
}

.products-header h2 {
    color: #fff;
    font-size: 1.1rem;
}

.products-description {
    text-align: center;
    color: #555;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.products-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #ddd;
}

.products-table th {
    background-color: #f0f0f0;
    padding: 12px;
    text-align: center;
    font-weight: 600;
    color: #333;
    border-bottom: 2px solid #ddd;
}

.products-table td {
    padding: 15px 12px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.products-table tr:last-child td {
    border-bottom: none;
}

.check-green {
    color: #28a745;
    font-weight: bold;
    margin-right: 5px;
}

.stars {
    color: #ffc107;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

/* FAQ Section */
.faq-section {
    padding: 25px 30px;
    background-color: #f8f9fa;
}

.faq-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.question-icon {
    font-size: 1.5rem;
    color: #c41e3a;
}

.faq-list {
    list-style: none;
}

.faq-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    font-size: 0.95rem;
    color: #444;
}

.faq-list li strong {
    color: #333;
}

/* Limited Time Section */
.limited-section {
    padding: 25px 30px 35px;
    background-color: #fff;
    text-align: center;
}

.limited-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.hourglass-icon {
    font-size: 1.5rem;
    color: #c41e3a;
}

.limited-section p {
    color: #555;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.fire-icon {
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        margin: 0;
    }
    
    h1 {
        font-size: 1.6rem;
    }
    
    h2 {
        font-size: 1.1rem;
    }
    
    .hero {
        flex-direction: column;
        padding: 20px;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-image img {
        max-width: 100%;
        height: 200px;
        object-fit: cover;
    }
    
    .success-story {
        flex-direction: column;
        padding: 20px;
    }
    
    .product-image {
        flex: none;
        max-width: 200px;
    }
    
    .products-section {
        padding: 20px;
    }
    
    .products-header {
        margin: -20px -20px 15px -20px;
    }
    
    .products-table {
        font-size: 0.85rem;
    }
    
    .products-table th,
    .products-table td {
        padding: 10px 8px;
    }
    
    .btn-small {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    
    .signs-section,
    .faq-section,
    .limited-section {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.4rem;
    }
    
    .btn-primary {
        width: 100%;
        padding: 14px 20px;
    }
    
    .products-table {
        display: block;
        overflow-x: auto;
    }
    
    .story-content blockquote {
        font-size: 1rem;
    }
}