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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
}

.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("/?originalUrl=https%3A%2F%2Fmillennialapps.com%2Fimages%2Fhero-bg.jpg");
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 20px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
    font-weight: 300;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 10px;
    font-weight: 300;
}

.what-we-offer {
    text-align: center;
    padding: 60px 20px;
}

.what-we-offer h2 {
    margin-bottom: 40px;
    font-weight: 300;
}

.services {
    display: flex;
    justify-content: center;
    gap: 100px;
    margin-bottom: 40px;
}

.service-type {
    text-align: center;
}

.service-type img {
    width: 50px;
    margin-bottom: 15px;
}

.service-type h3 {
    font-weight: 300;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.card {
    padding: 30px;
    color: white;
    text-align: left;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card h4 {
    font-weight: 400;
    margin-bottom: 15px;
}

.card.gold { background-color: #E5C07B; }
.card.coral { background-color: #E06C75; }
.card.blue { background-color: #61AFEF; }
.card.mint { background-color: #98C379; }

.arrow {
    color: white;
    text-decoration: none;
    font-size: 1.5em;
}

.signup {
    text-align: center;
    padding: 60px 20px;
    background-color: #f5f5f5;
}

.chat-icon {
    font-size: 2em;
    margin-bottom: 20px;
}

.signup h2 {
    font-weight: 300;
    margin-bottom: 10px;
}

.signup p {
    color: #666;
    margin-bottom: 5px;
}

.signup-form {
    max-width: 600px;
    margin: 30px auto;
    display: flex;
    gap: 10px;
}

.signup-form input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
}

.signup-form button {
    padding: 10px 20px;
    background-color: #333;
    color: white;
    border: none;
    cursor: pointer;
}

footer {
    background-color: #333;
    color: white;
    padding: 40px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-content h3, .footer-content h4 {
    font-weight: 300;
    margin-bottom: 15px;
}

.footer-content p {
    color: #999;
    font-size: 0.9em;
}

.copyright {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #666;
    font-size: 0.8em;
}
