:root {
    --primary: #1a5f7a;
    --secondary: #00a878;
    --accent: #ff6b35;
    --light: #f8f9fa;
    --dark: #212529;
    --gray: #6c757d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    line-height: 1.6;
    color: var(--dark);
    background-color: #fff;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

header {
    background-color: var(--primary);
    color: white;
    padding: 20px 0;
}

.hero {
    background-color: var(--primary);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
}

.highlight {
    color: var(--accent);
    font-weight: bold;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: var(--accent);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s, background-color 0.3s;
    margin: 10px;
}

.btn:hover {
    transform: translateY(-3px);
    background-color: #e85a2a;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.section {
    padding: 70px 0;
}

h2 {
    font-size: 2.3rem;
    margin-bottom: 25px;
    color: var(--primary);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.problem {
    background-color: #f8f9fa;
}

.problem-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}

.problem-text {
    flex: 1;
    min-width: 300px;
}

.problem-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.alert-box {
    background-color: #ffe8e0;
    border-left: 5px solid var(--accent);
    padding: 15px 20px;
    margin: 30px 0;
    font-weight: 500;
}

.features {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 40px;
}

.feature {
    flex: 1;
    min-width: 300px;
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.feature h3 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
}

.templates {
    background-color: #f0f7fa;
}

.templates-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.templates-text {
    flex: 1;
    min-width: 300px;
}

.templates-list {
    flex: 1;
    min-width: 300px;
    background-color: white;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.template-item {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.check {
    color: var(--secondary);
    font-weight: bold;
}

.price {
    background-color: white;
    text-align: center;
}

.price-tag {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent);
    margin: 20px 0;
}

.compare {
    background-color: #f0f7fa;
}

.comparison {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.comparison-col {
    flex: 1;
    min-width: 300px;
    background-color: white;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.comparison-col h3 {
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    margin-bottom: 25px;
}

.comparison-item {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.cross {
    color: #dc3545;
    font-weight: bold;
}

.testimonials {
    background-color: white;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 3fr);
    gap: 30px;
    margin-top: 40px;
}


.faq {
    background-color: #f0f7fa;
}

.faq-item {
    background-color: white;
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background-color: #f8f9fa;
    font-weight: 600;
    cursor: pointer;
}

.faq-answer {
    padding: 20px;
    border-top: 1px solid #eee;
}

.cta {
    background-color: var(--primary);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.cta h2 {
    color: white;
}

.countdown {
    font-size: 1.6rem;
    margin: 30px 0;
    font-weight: 600;
}

footer {
    background-color: var(--dark);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.trust-badge {
    background-color: white;
    padding: 15px 25px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--dark);
}

.guarantee {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 5px;
    max-width: 600px;
    margin: 0 auto;
}
.logo{
    width: 75px;
}
.image-1{
    width: 100%;
    height: auto;
}
.f-links{
    margin-top: 15px;
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
}
.f-links li a{
    color: white;
    text-decoration: none;
}
.thumb-image{
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .price-tag {
        font-size: 2.5rem;
    }
    .f-links{
        gap: 10px;
        flex-wrap: wrap;
    }
    .testimonial-grid {
        display: grid;
        grid-template-columns: repeat(2, 5fr);
        gap: 30px;
        margin-top: 40px;
    }
}