body {
    color: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 20vh;
}

h1 {
    text-align: center;
    margin-top: 7vh;
    margin-bottom: 40px;
    color: #ffffff;
    font-family: "Calistoga", system-ui;
    font-size: 3rem;
}

.card-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 7vh;
}

.card {
    background-color: #111111;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 450px;
    flex: 1 1 400px;
}

.card-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    padding: 25px;
}

.card-title {
    font-size: 24px;
    margin-bottom: 15px;
    color: #ffffff;
    font-family: "Calistoga", system-ui;
}

.card-text {
    color: #ffffff;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .card-container {
        flex-direction: column;
        align-items: center;
    }
    
    .card {
        max-width: 100%;
    }
}