/* Edwin Tech Support Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f7f7f7;
    color: #222;
}
header {
    background: linear-gradient(
        to bottom,
        #0a0a0a 0%,
        #0a1a30 70%,
        #0a254a 100%
    );
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.container {
    max-width: 800px;
    margin: 40px auto;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
h1 {
    margin-top: 0;
}
.section {
    margin-bottom: 30px;
}

.cta-btn {
    display: inline-block;
    padding: 14px 24px;
    background: #0078ff;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: bold;
}
.cta-btn:hover {
    background: #005fcc;
}
.price-box {
    background: #eef4ff;
    padding: 20px;
    border-left: 5px solid #0078ff;
    margin: 20px 0;
    border-radius: 8px;
}
footer {
    text-align: center;
    padding: 20px;
    font-size: 14px;
    color: #555;
}
/* How It Works */
.how-it-works {
    padding-left: 20px;
    line-height: 1.6;
    font-size: 16px;
    margin-top: 10px;
}

.how-it-works li {
    margin-bottom: 12px;
}

/* About Me spacing + readability */
.section p {
    line-height: 1.6;
    margin-bottom: 12px;
}

.divider {
    border: 0;
    height: 1px;
    background: #ddd;
    margin: 50px 0;
}
