* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}
.contact-section .section-title{
    text-align: left !important;
}
/* Header and Navigation */
header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
}

.logo a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
}

.desktop-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin: 0 15px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #667eea;
}

.cta-button-small {
    background: #667eea;
    color: white;
    padding: 8px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    margin-left: 20px;
    transition: background 0.3s ease;
}

.cta-button-small:hover {
    background: #5a6ecc ;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    padding: 25px;
    z-index: 1000;
}

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

.mobile-nav-item {
    margin: 0 0 15px;
}

.mobile-nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    display: block;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    background-color: #f5f7ff;
    color: #667eea;
}

.mobile-cta {
    text-decoration: none;
    background: #667eea;
    color: white;
    display: block;
    padding: 12px;
    text-align: center;
    border-radius: 5px;
    font-weight: 500;
    transition: background 0.3s ease;
    box-shadow: 0 4px 6px rgba(102, 126, 234, 0.25);
    margin: 20px 0 0;
}

.mobile-cta:hover {
    background: #5a6ecc;
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
}

/* Section Styles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
.hero {
    padding: 100px 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: #667eea;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/hero-bg.jpg') center center/cover no-repeat;
    opacity: 0.1;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

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

.price-highlight {
    background: white;
    color: #667eea;
    padding: 10px 30px;
    border-radius: 50px;
    display: inline-block;
    font-size: 2rem;
    font-weight: bold;
    margin: 20px 0;
    box-shadow: 0 10px 30px rgba(255, 71, 87, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-guarantee {
    margin-top: 55px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.guarantee-check {
    display: inline-block;
    vertical-align: middle;
    margin-right: 2px;
}

.cta-button {
    background: white;
    color: #667eea;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(255, 71, 87, 0.4);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% { transform: translate3d(0,0,0); }
    40%, 43% { transform: translate3d(0, -10px, 0); }
    70% { transform: translate3d(0, -5px, 0); }
    90% { transform: translate3d(0, -2px, 0); }
}

.cta-button:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 71, 87, 0.6);
}

/* Features Section */
.features {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 3px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    opacity: 0;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    border-color: #667eea;
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #667eea;
}

/* Examples Section */
.examples {
    padding: 100px 0;
    background: white;
}

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

.example-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    opacity: 0;
}

.example-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.example-image {
    height: 200px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    padding: 20px;
}

.example-content {
    padding: 20px;
}

.example-content h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #667eea;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

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

.testimonial-card {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    height: 100%;
    opacity: 0;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
}

.testimonial-stars {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.testimonial-author {
    font-weight: bold;
    color: #ffd700;
}

/* Guarantees */
.guarantees {
    padding: 100px 0;
    background: #2ecc71;
    color: white;
    text-align: center;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: #f8f9fa;
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 3px solid transparent;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.pricing-card-highlight {
    border-color: #667eea;
}

.pricing-card-premium {
    border-color: #ff4757;
    transform: scale(1.05);
}

.pricing-card-premium:hover {
    transform: translateY(-10px) scale(1.05);
}

.pricing-tag {
    position: absolute;
    top: -15px;
    right: 25px;
    background: #fff;
    color: #667eea;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(255, 71, 87, 0.3);
}

.pricing-header {
    padding: 30px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.pricing-card-premium .pricing-header {
    background: linear-gradient(135deg, #ff4757 0%, #ff6b81 100%);
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.pricing-price {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.pricing-delivery {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 10px;
}

.pricing-features {
    padding: 30px;
    flex-grow: 1;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.pricing-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.pricing-features .check {
    margin-right: 10px;
    flex-shrink: 0;
}

.pricing-button {
    display: inline-block;
    background: #667eea;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    margin: 20px;
    transition: all 0.3s ease;
}

.pricing-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.pricing-button-premium {
    background: #ff4757;
}

.pricing-button-premium:hover {
    box-shadow: 0 10px 30px rgba(255, 71, 87, 0.4);
}

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

.guarantee-item {
    padding: 20px;
    transition: all 0.3s ease;
}

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

.guarantee-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.guarantee-item h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* Order Form */
.order-form {
    padding: 100px 0;
    background: #f8f9fa;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #667eea;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid #e1e8ed;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.price-summary {
    background: #667eea;
    color: white;
    padding: 25px;
    border-radius: 15px;
    margin: 30px 0;
    text-align: center;
}

.premium-summary {
    background: linear-gradient(135deg, #ff4757 0%, #ff6b81 100%);
}

/* Offer Selection Styling */
.offer-selection {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 10px;
}

.offer-option {
    position: relative;
}

.offer-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.offer-label {
    display: block;
    background: white;
    border: 2px solid #667eea;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.offer-label-premium {
    border-color: #ff4757;
}

.offer-option input[type="radio"]:checked + .offer-label {
    background: #f0f4ff;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    transform: translateY(-5px);
}

.offer-option input[type="radio"]:checked + .offer-label-premium {
    background: #fff0f0;
    box-shadow: 0 10px 30px rgba(255, 71, 87, 0.3);
}

.offer-option input[type="radio"]:focus + .offer-label {
    outline: 2px solid rgba(102, 126, 234, 0.5);
    outline-offset: 2px;
}

.offer-name {
    display: block;
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #333;
}

.offer-price {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 5px;
    color: #667eea;
}

.offer-label-premium .offer-price {
    color: #ff4757;
}

.offer-delivery {
    display: block;
    font-size: 0.9rem;
    color: #666;
}

.offer-tag {
    position: absolute;
    top: -10px;
    right: 10px;
    background: #ff4757;
    color: white;
    padding: 3px 10px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: bold;
    box-shadow: 0 3px 10px rgba(255, 71, 87, 0.3);
}

.price-summary h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.submit-btn {
    width: 100%;
    background: #ff4757;
    color: white;
    padding: 20px;
    border: none;
    border-radius: 15px;
    font-size: 1.3rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #ff3742;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 71, 87, 0.4);
}

/* Urgency */
.urgency {
    background: #ff0000;
    color: white;
    padding: 10px 0;
    font-weight: 600;
    text-align: center;
    position: relative;
    z-index: 1001;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.urgency-text {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    letter-spacing: 0.5px;
    font-weight: bold;
}

.urgency-text .lightning {
    display: inline-flex;
    align-items: center;
    animation: pulse 1.5s infinite;
}

.urgency-text .message {
    margin: 0 5px;
}

.urgency-text .countdown {
    font-weight: 700;
    background: white;
    color: #ff0000;
    padding: 2px 6px;
    border-radius: 3px;
    margin: 0 3px;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.7; }
}

/* Footer */
.footer {
    background: #f5f7ff;
    padding: 50px 0 20px;
    color: #333;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin-bottom: 30px;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #333;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #667eea;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 20px;
    padding: 10px 0;
}

.footer-copyright {
    font-size: 0.9rem;
    color: #fff;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: #fff;
    text-decoration: none;
    margin-left: 15px;
    font-size: 0.9rem;
    
}

.footer-contact {
    flex: 1 1 250px;
    text-align: left;
    padding: 0 15px;
}

.footer-heading {
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.footer-heading-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: white;
    border-radius: 2px;
}

.contact-item {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-icon {
    margin-right: 12px;
}

.footer-divider {
    border: 0;
    height: 1px;
    background-color: rgba(255,255,255,0.2);
    margin: 0 0 30px;
}

.footer-links {
    flex: 1 1 250px;
    text-align: left;
    padding: 0 15px;
}

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

.footer-link-item {
    margin-bottom: 12px;
}

.footer-link {
    color: white;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-link:hover {
    transform: translateX(5px);
    opacity: 0.8;
}

.footer-company {
    flex: 1 1 300px;
    text-align: left;
    padding: 0 15px;
}

.company-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.company-title-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: white;
    border-radius: 2px;
}

.company-description {
    max-width: 400px;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 25px;
}

.footer-sections {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    gap: 30px;
}

.site-footer {
    background: #667eea;
    color: white;
    padding: 60px 20px 40px;
    text-align: center;
}

/* Examples Section Styles */
.examples {
    background: #f8f9fa;
    padding: 60px 0;
}

.section-title {
    color: #333;
    text-align: center;
    margin-bottom: 15px;
    font-size: 2rem;
}

.section-subtitle {
    color: #555;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    line-height: 1.6;
}

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

.example-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.example-image {
    height: 220px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.example-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

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

.example-content {
    padding: 20px;
    text-align: center;
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.example-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.image-placeholder {
    text-align: center;
}

.visit-button {
    display: inline-block;
    background: #667eea;
    color: white;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.visit-button:hover {
    background: #5a6ecc;
    transform: translateY(-2px);
}

/* Pricing Section Styles */
.pricing-tag {
    background: #fff;
    color: #667eea;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 6px 16px;
    border-radius: 20px;
    position: absolute;
    top: 10px;
    right: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid #e0e0e0;
}

.pricing-card-highlight {
    position: relative;
    z-index: 2;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.pricing-card-highlight .pricing-button {
    background: #667eea;
}

.pricing-header.blue-header {
    background: #667eea;
    color: white;
}

.pricing-card.blue-border {
    border-color: #667eea;
}

.pricing-button.blue-button {
    background: #667eea;
}

.order-form {
    padding: 60px 0;
    background: #f8f9fa;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.order-form-title {
    text-align: center;
    color: #667eea;
    margin-bottom: 30px;
}

.secure-note {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: #666;
}

.secure-icon {
    display: inline-block;
    vertical-align: middle;
    margin-right: 2px;
}

/* Testimonials Section Styles */
.testimonials {
    background: #667eea;
    padding: 60px 0;
}

.testimonials .section-title {
    color: white;
    margin-bottom: 40px;
}

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

.testimonial-card {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 25px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.testimonial-stars {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-text {
    color: white;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    color: white;
    font-weight: 600;
    text-align: right;
}

/* Guarantees Section Styles */
.guarantees {
    background: #f8f9fa;
    color: #333;
    padding: 60px 0;
}

.guarantees .section-title {
    color: #667eea;
}

.guarantees .section-subtitle {
    color: #333;
}

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

.guarantee-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    padding: 30px;
    text-align: center;
    border-top: 4px solid #667eea;
    transition: all 0.3s ease;
    cursor: pointer;
}

.guarantee-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(102,126,234,0.2);
}

.guarantee-icon {
    margin-bottom: 20px;
    background: rgba(102,126,234,0.1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.guarantee-card h4 {
    color: #667eea;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.guarantee-card p {
    color: #555;
    line-height: 1.6;
}

.footer-legal a:not(:last-child):after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    height: 12px;
    width: 1px;
    background-color: #ddd;
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

/* Animation */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .examples-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 992px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero {
        padding: 80px 0 60px;
    }
    
    .features, .examples, .testimonials, .guarantees, .pricing, .order-form {
        padding: 80px 0;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .pricing-card-premium {
        transform: scale(1.03);
    }
    
    .pricing-card-premium:hover {
        transform: translateY(-10px) scale(1.03);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    /* Offer Selection Mobile Styles */
    .offer-selection {
        grid-template-columns: 1fr;
    }
    
    .offer-label {
        padding: 15px;
    }
    
    .offer-name {
        font-size: 1rem;
    }
    
    .offer-price {
        font-size: 1.5rem;
    }
    
    .offer-option input[type="radio"]:checked + .offer-label {
        transform: translateY(-3px);
    }
    
    .price-highlight {
        font-size: 1.5rem;
        padding: 8px 20px;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .form-container {
        margin: 0 20px;
        padding: 30px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid, .examples-grid, .testimonials-grid, .guarantees-grid, .pricing-grid {
        gap: 20px;
    }
    
    .pricing-card-premium {
        transform: scale(1);
    }
    
    .pricing-card-premium:hover {
        transform: translateY(-10px) scale(1);
    }
    
    .pricing-price {
        font-size: 2.5rem;
    }
    
    .pricing-features {
        padding: 20px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .price-highlight {
        font-size: 1.3rem;
        padding: 8px 15px;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .feature-icon {
        font-size: 3rem;
    }
    
    .feature-card h3 {
        font-size: 1.3rem;
    }
    
    .form-container {
        padding: 25px 15px;
    }
    
    .submit-btn {
        font-size: 1.1rem;
        padding: 15px;
    }
    
    .example-image {
        height: 150px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .pricing-header h3 {
        font-size: 1.3rem;
    }
    
    .pricing-price {
        font-size: 2.2rem;
    }
    
    .pricing-features li {
        font-size: 0.9rem;
    }
    
    .pricing-button {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}

/* Legal Pages Styles */
.legal-content {
    padding: 80px 0;
    background-color: #f9fafc;
}

.legal-section {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    padding: 40px;
    margin-bottom: 40px;
}

.legal-title {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}

.legal-title span {
    margin-right: 15px;
    font-size: 2rem;
}

.legal-subsection {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.legal-subsection:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.legal-subsection h3 {
    color: #667eea;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.legal-subsection h4 {
    color: #555;
    font-size: 1.1rem;
    margin: 20px 0 10px;
}

.legal-subsection p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.legal-subsection ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.legal-subsection li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.update-date {
    color: #777;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

/* Responsive styles for legal pages */
@media (max-width: 768px) {
    .legal-section {
        padding: 25px;
    }
    
    .legal-title {
        font-size: 1.5rem;
    }
    
    .legal-subsection h3 {
        font-size: 1.2rem;
    }
}