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

body {
    font-family: Georgia, serif;
    background-color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    background-image: url("smoke-0054.png");
    background-position: top right;
    background-size: 900px;
    background-repeat: no-repeat;

}

.card {
    width: 500px;
    padding: 50px;
    text-align: center;
}

.card h1 {
    color: #8FABD4;
    margin-bottom: 12px;
    font-size: 2.4em;
}

.card h2 {
    color: #EFECE3;
    margin-bottom: 25px;
    font-size: 1.6em;
    font-weight: normal;
}

.services {
    list-style: none;
    margin: 35px 0;
    text-align: left;
}

.services li {
    padding: 12px 0;
    border-bottom: 1px dashed #bdc3c7;
    color: #4A70A9;
    font-size: 1.15em;
}

.services li:last-child {
    border-bottom: none;
}

.tagline {
    font-style: italic;
    color: #EFECE3;
    margin-top: 20px;
    font-size: 1.1em;
}
.contact {
    margin-top: 20px;
    font-size: 1.1em;
}

.contact a {
    color: #EFECE3;
    text-decoration: none;
    border-bottom: 1px dashed #EFECE3;
}

.contact a:hover {
    border-bottom-style: solid;
}
/* Responsive adjustments */
@media (max-width: 600px) {
    .card {
        width: 100%;
        max-width: 480px;
        padding: 40px;
    }
}
