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

body {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Arial', sans-serif;
    text-align: left;
    margin: 0;
    padding: 40px 20px;
    line-height: 1.6;
    min-height: 100vh;
}

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

.headline {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 40px;
    text-align: left;
    line-height: 1.2;
    color: #ffffff;
}

p {
    font-size: 1.3em;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: left;
    color: #ffffff;
}

.highlight {
    color: #ffdf6e;
    font-weight: bold;
}

h2 {
    font-size: 1.8em;
    margin-top: 50px;
    margin-bottom: 30px;
    font-weight: bold;
    color: #ffffff;
}

ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

li {
    font-size: 1.3em;
    line-height: 1.8;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    color: #ffffff;
}

li:before {
    content: "–";
    position: absolute;
    left: 0;
    color: #ffffff;
}

.price {
    font-size: 2em;
    font-weight: bold;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #ffffff;
}

.button {
    display: inline-block;
    background-color: #ffffff;
    color: #000000;
    padding: 20px 40px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    border-radius: 0;
    margin: 30px 0;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    max-width: 500px;
    border: 2px solid #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.button:hover {
    background-color: #000000;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    body {
        padding: 20px 15px;
    }
    
    .headline {
        font-size: 2em;
    }
    
    p, li {
        font-size: 1.1em;
    }
    
    .price {
        font-size: 1.6em;
    }
    
    .button {
        font-size: 1em;
        padding: 18px 30px;
    }
}

