/* --- Global Styles --- */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa; /* Light grey background */
    color: #333;
    line-height: 1.7;
}

.container {
    max-width: 900px;
    margin: 40px auto;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    text-align: center;
}

h1, h2 {
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 15px;
}

h2 {
    font-size: 1.8rem;
    color: #007bff; /* Primary brand color (blue) */
    margin-top: 40px;
    margin-bottom: 15px;
}

p, li {
    font-size: 1.1rem;
    color: #555;
}

.section {
    margin: 50px 0;
}

/* --- Hero Section --- */
.hero .subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

/* --- The CTA Button (Most Important) --- */
.cta-button {
    display: inline-block;
    background-color: #007bff;
    color: #ffffff;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

/* --- Solution List --- */
ul {
    list-style: none;
    padding: 0;
    display: inline-block;
    text-align: left;
    margin-top: 20px;
}

li {
    margin-bottom: 10px;
}

/* --- Footer --- */
footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    color: #999;
    font-size: 0.9rem;
}