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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #1a1a1a;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 2.5rem;
    color: #1a1a1a;
}

h2 {
    font-size: 2rem;
    color: #1a1a1a;
}

h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #2d2d2d;
}

strong {
    color: #a08968;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

em {
    color: #666;
    font-style: italic;
}

/* Bonus Banner */
.bonus-banner {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    padding: 15px 0;
    text-align: center;
    font-weight: 500;
    animation: slideDown 0.5s ease-out;
    box-shadow: 0 2px 10px rgba(220, 38, 38, 0.3);
}

.bonus-banner p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.4;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
    color: white;
}

.bonus-banner strong {
    color: white;
    font-weight: 700;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Header */
.header {
    background: linear-gradient(135deg, #2d2d2d, #4a4a4a);
    padding: 25px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    position: relative;
}

.logo {
    text-align: center;
}

.logo img {
    height: 45px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.3));
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f5f2ef, #e8e1db);
    padding: 60px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #2d2d2d;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-image {
    margin: 40px 0;
    position: relative;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(160, 137, 104, 0.2);
}

/* Floating Badges */
.floating-badges {
    position: relative;
    height: 0;
    overflow: visible;
    pointer-events: none;
}

.floating-badge {
    position: absolute;
    background: white;
    border-radius: 25px;
    padding: 12px 18px;
    box-shadow: 0 8px 25px rgba(160, 137, 104, 0.15);
    border: 2px solid #a08968;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #2d2d2d;
    z-index: 10;
    animation: floatBounce 3s ease-in-out infinite;
    white-space: nowrap;
}

.floating-badge .badge-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.floating-badge .badge-text {
    line-height: 1.2;
    text-align: center;
}

.floating-badge .badge-text strong {
    color: #a08968;
    font-weight: 700;
}

/* Individual badge positioning */
.badge-1 {
    top: -20px;
    left: -80px;
    animation-delay: 0s;
}

.badge-2 {
    top: 40px;
    right: -90px;
    animation-delay: 0.5s;
}

.badge-3 {
    top: 120px;
    left: -70px;
    animation-delay: 1s;
}

.badge-4 {
    top: 180px;
    right: -80px;
    animation-delay: 1.5s;
}

@keyframes floatBounce {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    25% {
        transform: translateY(-8px) scale(1.02);
    }
    50% {
        transform: translateY(-5px) scale(1);
    }
    75% {
        transform: translateY(-10px) scale(1.01);
    }
}

/* CTA Buttons */
.cta-button-container {
    margin: 40px 0;
}

.cta-button, .final-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #a08968, #4a4a4a);
    color: white;
    padding: 20px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(160, 137, 104, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover, .final-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(160, 137, 104, 0.4);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 8px 25px rgba(160, 137, 104, 0.3);
    }
    50% {
        box-shadow: 0 8px 25px rgba(160, 137, 104, 0.6);
        transform: scale(1.02);
    }
    100% {
        box-shadow: 0 8px 25px rgba(160, 137, 104, 0.3);
    }
}

/* Problem Section */
.problem-section {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.problem-section h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #2d2d2d;
}

.problem-section p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.alcance-image {
    margin: 40px 0;
}

.alcance-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #a08968;
}

.checkmark {
    color: #4caf50;
    font-size: 1.5rem;
    font-weight: bold;
}

/* Product Overview */
.product-overview {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f2ef, #e8e1db);
    text-align: center;
}

.product-overview h2 {
    font-size: 2.2rem;
    margin-bottom: 50px;
}

.benefits-list {
    display: grid;
    gap: 20px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.bullet {
    color: #a08968;
    font-size: 1.5rem;
    font-weight: bold;
}

.product-image {
    margin: 40px 0;
}

.product-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Social Proof Section */
.social-proof {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.social-proof h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.social-proof-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

.social-proof h3 {
    font-size: 1.8rem;
    margin: 40px 0 30px 0;
    color: #2d2d2d;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.testimonial-item img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.engagement-text {
    font-size: 1.3rem;
    margin: 50px 0 30px 0;
    color: #2d2d2d;
    font-weight: 500;
}

.engagement-benefits {
    display: grid;
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
}

/* Image Testimonials Masonry Layout */
.image-testimonials {
    column-count: 4;
    column-gap: 20px;
    margin: 40px 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.image-testimonial-item {
    break-inside: avoid;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: inline-block;
    width: 100%;
}

.image-testimonial-item:hover {
    transform: translateY(-5px);
}

.image-testimonial-item img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: top;
}

/* Written Testimonials */
.written-testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
    border-left: 4px solid #a08968;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #2d2d2d;
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
}

.testimonial-content p:before {
    content: '"';
    font-size: 4rem;
    color: #a08968;
    position: absolute;
    top: -20px;
    left: -15px;
    font-family: serif;
    opacity: 0.3;
}

.testimonial-author {
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
}

.testimonial-author strong {
    color: #a08968;
    font-size: 1rem;
    display: block;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
    font-style: normal;
}

/* Product Examples */
.product-examples {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f2ef, #e8e1db);
    text-align: center;
}

.product-examples h2 {
    font-size: 2.2rem;
    margin-bottom: 50px;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 50px 0;
}

.example-item {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.example-item h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #2d2d2d;
}

.example-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Customization Section */
.customization-section {
    padding: 80px 0;
    background: white;
}

.customization-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
}

.customization-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.customization-features {
    display: grid;
    gap: 20px;
}

.customization-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Success Story */
.success-story {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f2ef, #e8e1db);
    text-align: center;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.story-text h2 {
    font-size: 2rem;
    text-align: left;
}

/* What's Included */
.whats-included {
    padding: 80px 0;
    background: white;
}

.whats-included h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
}

.included-items {
    display: grid;
    gap: 40px;
    margin-bottom: 60px;
}

.item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 30px;
    align-items: center;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #a08968;
}

.item-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.item-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #2d2d2d;
}

.item-content p {
    margin-bottom: 15px;
    color: #555;
}

.pricing {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.original-price {
    color: #999;
    font-size: 0.9rem;
}

.current-price {
    color: #4caf50;
    font-weight: 600;
    font-size: 1.1rem;
}

.bonus-section {
    background: linear-gradient(135deg, #f5f2ef, #e8e1db);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 3px solid #a08968;
}

.bonus-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #4a4a4a;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f2ef, #e8e1db);
}

.pricing-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
    margin-bottom: 50px;
}

.pricing-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.pricing-breakdown h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #2d2d2d;
}

.price-items {
    display: grid;
    gap: 15px;
    margin-bottom: 30px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.price {
    color: #999;
    font-weight: 500;
}

.total-value {
    background: #f5f2ef;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin: 30px 0;
    border: 2px solid #a08968;
}

.total-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4a4a4a;
}

.special-offer {
    text-align: center;
    margin: 30px 0;
}

.special-offer h3 {
    font-size: 1.5rem;
    color: #2d2d2d;
}

.final-pricing {
    text-align: center;
}

.pricing-card {
    background: white;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 3px solid #a08968;
    max-width: 500px;
    margin: 0 auto;
}

.product-logo img {
    height: 50px;
    margin-bottom: 30px;
    filter: brightness(0.8) contrast(1.2);
}

.final-price {
    margin-bottom: 30px;
}

.from-price {
    font-size: 1.2rem;
    color: #666;
    display: block;
    margin-bottom: 10px;
}

.installment-price {
    font-size: 3rem;
    font-weight: 700;
    color: #a08968;
    margin-bottom: 10px;
}

.cash-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: #4caf50;
}

.final-cta-button {
    width: 100%;
    margin: 30px 0;
    padding: 25px;
    font-size: 1.3rem;
}

.security-badges img {
    max-width: 200px;
    height: auto;
}

/* Guarantee Section */
.guarantee-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f2ef, #e8e1db);
}

.guarantee-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
}

.guarantee-image img {
    width: 100%;
    height: auto;
    max-width: 300px;
}

.guarantee-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2d2d2d;
}

.guarantee-text p {
    font-size: 1.1rem;
    color: #555;
}

/* Author Section */
.author-section {
    padding: 80px 0;
    background: white;
}

.author-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
}

.author-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.author-text h3 {
    color: #a08968;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.author-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.author-text p {
    font-size: 1.1rem;
    color: #555;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f2ef, #e8e1db);
}

.faq-section h6 {
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #a08968;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #2d2d2d;
}

.faq-items {
    display: grid;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    font-size: 1.2rem;
    color: #2d2d2d;
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: #a08968;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f8f9fa;
}

.faq-answer p {
    padding: 0 25px 25px 25px;
    margin: 0;
    color: #555;
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    background: #25d366;
    color: white;
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    animation: bounce 2s infinite;
}

.whatsapp-button:hover {
    background: #20ba5a;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-button svg {
    width: 30px;
    height: 30px;
    fill: white;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Footer */
.footer {
    background: #2d2d2d;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-text p {
    margin: 5px 0;
    color: #ccc;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .image-testimonials {
        column-count: 3;
        column-gap: 18px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .bonus-banner p {
        font-size: 0.9rem;
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    /* Adjust floating badges for tablets */
    .floating-badge {
        padding: 10px 14px;
        font-size: 0.75rem;
    }
    
    .badge-1 {
        left: -60px;
        top: -10px;
    }
    
    .badge-2 {
        right: -70px;
        top: 30px;
    }
    
    .badge-3 {
        left: -50px;
        top: 100px;
    }
    
    .badge-4 {
        right: -60px;
        top: 160px;
    }
    
    .problem-section,
    .product-overview,
    .social-proof,
    .product-examples,
    .customization-section,
    .success-story,
    .whats-included,
    .pricing-section,
    .guarantee-section,
    .author-section,
    .faq-section {
        padding: 50px 0;
    }
    
    .customization-grid,
    .story-content,
    .pricing-content,
    .guarantee-content,
    .author-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .examples-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .image-testimonials {
        column-count: 2;
        column-gap: 15px;
        margin: 30px 0;
    }
    
    .written-testimonials {
        grid-template-columns: 1fr;
        gap: 25px;
        margin: 40px 0;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    .testimonial-content p:before {
        font-size: 3rem;
        top: -15px;
        left: -10px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-button, .final-cta-button {
        padding: 18px 30px;
        font-size: 1.1rem;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
    
    .installment-price {
        font-size: 2.5rem;
    }
    
    .cash-price {
        font-size: 1.3rem;
    }
    
    .story-text h2,
    .guarantee-text h2,
    .author-text h2 {
        text-align: center;
    }
    
    .story-text,
    .guarantee-text,
    .author-text {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .bonus-banner p {
        font-size: 0.85rem;
        padding: 0 10px;
        line-height: 1.3;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    /* Adjust floating badges for mobile */
    .floating-badge {
        padding: 8px 12px;
        font-size: 0.7rem;
        border-radius: 20px;
    }
    
    .badge-1 {
        left: 10px;
        top: -10px;
    }
    
    .badge-2 {
        right: 10px;
        top: 15px;
    }
    
    .badge-3 {
        left: 5px;
        top: 70px;
    }
    
    .badge-4 {
        right: 5px;
        top: 110px;
    }
    
    .floating-badge .badge-icon {
        font-size: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .installment-price {
        font-size: 2rem;
    }
    
    .cash-price {
        font-size: 1.2rem;
    }
    
    .whatsapp-button {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        padding: 12px;
    }
    
    .whatsapp-button svg {
        width: 25px;
        height: 25px;
    }
    
    .cta-button, .final-cta-button {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .pricing-card {
        padding: 25px 15px;
    }
    
    .image-testimonials {
        column-count: 1;
        column-gap: 0;
    }
    
    .image-testimonial-item {
        margin-bottom: 15px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-answer p {
        padding: 0 20px 20px 20px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation for images */
img {
    transition: opacity 0.3s ease;
}

img:not([src]) {
    opacity: 0;
}

/* Accessibility improvements */
a:focus,
button:focus {
    outline: 2px solid #a08968;
    outline-offset: 2px;
}

/* Purchase Notifications */
.purchase-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    padding: 15px 20px;
    z-index: 1000;
    transform: translateX(-120%);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-left: 4px solid #4caf50;
    max-width: 300px;
}

.purchase-notification.show {
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.notification-avatar {
    font-size: 1.5rem;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #a08968, #4a4a4a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notification-text {
    color: #2d2d2d;
    font-size: 0.9rem;
    line-height: 1.4;
}

.notification-text strong {
    color: #a08968;
    font-weight: 600;
}

.notification-time {
    display: block;
    color: #666;
    font-size: 0.8rem;
    margin-top: 2px;
}

/* Responsive adjustments for notifications */
@media (max-width: 768px) {
    .purchase-notification {
        left: 10px;
        right: 10px;
        max-width: none;
        bottom: 10px;
    }
}

/* Print styles */
@media print {
    .bonus-banner,
    .cta-button,
    .final-cta-button,
    .purchase-notification {
        display: none;
    }
}
