article {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* article h1 styling */
article  h1 {
    color: #2c3e50;
    font-size: 2em;
    margin-bottom: 10px;
}

article  p {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 20px;
}

/* Section styling */
section h2 {
    color: #2c3e50;
    font-size: 1.5em;
    margin-top: 20px;
    margin-bottom: 10px;
    border-bottom: 2px solid #e67e22;
    padding-bottom: 5px;
}

section p {
    margin-bottom: 15px;
}

section ul, section ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

section li {
    margin-bottom: 8px;
}

/* Pricing details */
.pricing {
    font-size: 1.2em;
    margin-top: 20px;
}

.old-price {
    text-decoration: line-through;
    color: #e74c3c;
    margin-right: 10px;
}

.new-price {
    color: #27ae60;
    font-weight: bold;
}

/* CTA button */
.cta-button {
    display: inline-block;
    padding: 10px 20px;
    color: #fff;
    background-color: #3498db;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 15px;
    transition: background-color 0.3s ease;
    margin-left: 30%;
}

.cta-button:hover {
    background-color: #2980b9;
}


article a {
    color: #3498db;
    text-decoration: none;
    font-weight: bold;
}

article a:hover {
    text-decoration: underline;
}
