/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #f5f7fa;
    color: #333;
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

/* Card container */
.card {
    max-width: 800px;
    width: 100%;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Header styles */
header {
    background-color: #4aa3b1;
    color: white;
    padding: 30px;
    text-align: center;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.2rem;
    margin-left: 15px;
}

h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
    opacity: 0.9;
}

h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #4aa3b1;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* Content styles */
.content {
    display: flex;
    flex-wrap: wrap;
    padding: 30px;
    gap: 30px;
}

.services, .about {
    flex: 1;
    min-width: 250px;
}

.services ul {
    list-style-type: none;
}

.services li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.services li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4aa3b1;
    font-weight: bold;
}

.about p {
    line-height: 1.8;
}

/* Footer styles */
footer {
    background-color: #f8f9fa;
    padding: 30px;
    border-top: 1px solid #e9ecef;
}

.contact {
    margin-bottom: 25px;
}

.contact p {
    margin-bottom: 8px;
}

.cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.button {
    display: inline-block;
    background-color: #4aa3b1;
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #3a8a97;
}

/* Responsive styles */
@media (max-width: 600px) {
    .logo {
        flex-direction: column;
    }
    
    h1 {
        margin-left: 0;
        margin-top: 15px;
        font-size: 1.8rem;
    }
    
    .cta {
        flex-direction: column;
    }
    
    .button {
        text-align: center;
    }
}