* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f5f5f5;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    background: url('background-image.jpg') no-repeat center center;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    background: #fff;
    padding: 10px 20px;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #333;
    margin-bottom: 10px;
}

.top-bar .highlight {
    color: #ff6200;
    font-weight: bold;
}

.logo-search {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 80px;
}

.search input {
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 150px;
}

main {
    flex: 1;
    padding: 20px;
    color: #fff;
    text-align: center;
}

.promo-text h1 {
    font-size: 36px;
    line-height: 1.2;
    color: #1a237e;
    margin-bottom: 10px;
}

.promo-text p {
    font-size: 18px;
    color: #333;
}

.slogan {
    margin: 20px 0;
    font-size: 24px;
    font-weight: bold;
    color: #ff6200;
}

.slogan .highlight {
    color: #1a237e;
}

.price-section {
    margin: 20px 0;
}

.price-section p {
    font-size: 18px;
    color: #333;
}

.price {
    font-size: 48px;
    font-weight: bold;
    color: #ff6200;
    margin: 10px 0;
}

.cta {
    background: #1a237e;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
}

footer {
    background: #ff6200;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-text p {
    font-size: 16px;
    color: #fff;
}

.cta-footer {
    background: #1a237e;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

.whatsapp img {
    width: 40px;
}