body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    margin: 0;
    padding: 0;
    /* color: #333; */
    color: #2C3E50;
    background: #f4f7f9;
}

.container {
    max-width: 960px;
    margin: 50px auto;
    padding: 40px;
    background: #fff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
}

h1, h2 {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600;
}

h1 {
    font-size: 2.8em;
    border-bottom: 3px solid #e1e8ee;
    padding-bottom: 15px;
    letter-spacing: -1px;
}

h2 {
    font-size: 2em;
    color: #34495e;
}

p {
    margin-bottom: 25px;
    /* color: #555; */
    color: #2C3E50;
    font-size: 1.1em;
}

ul {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
    color: #2C3E50;
}

li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1.1em;
}

li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #3498db;
    font-size: 1.2em;
}

.services {
    margin-top: 40px;
}

.services h3 {
    color: #34495e;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1.6em;
}

.services ul {
    margin-bottom: 30px;
}

.contact-cta {
    text-align: center;
    margin-top: 50px;
}

.contact-cta a {
    display: inline-block;
    padding: 15px 35px;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.contact-cta a:hover {
    background-color: #2980b9;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(41, 128, 185, 0.4);
}