.wf-container {
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.wf-header {
    margin-bottom: 30px;
}

.wf-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    font-family: "Roboto", sans-serif;
}

.wf-dates-wrap {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.6);
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.wf-dates {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
    font-family: "Roboto Slab", serif;
}

.wf-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    font-family: "Roboto", sans-serif;
}

/* Passport Section */
.wf-passport-section {
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: left;
}

.wf-passport-content {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.wf-passport-title {
    font-size: 1.8rem;
    color: #6EC1E4;
    margin-bottom: 15px;
    font-weight: 600;
}

.wf-passport-desc {
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.5;
}

.wf-btn {
    display: inline-block;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
    align-self: flex-start;
}

.wf-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    color: #fff;
}

.wf-passport-img {
    flex: 1;
    min-width: 300px;
    min-height: 500px;
    background-size: cover;
    background-position: center;
}

/* Features Grid */
.wf-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.wf-feature-item {
    background: #ffffff;
    padding: 0;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.02);
    overflow: hidden;
}

.wf-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.wf-feature-img {
    height: 320px;
    width: 100%;
    background-size: cover;
    background-position: center;
}

.wf-feature-text {
    font-weight: 600;
    font-size: 1.1rem;
    padding: 20px 15px;
}

.wf-footer {
    margin-top: 20px;
}

.wf-vibe-badge {
    display: inline-block;
    color: #fff;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 500;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .wf-features {
        grid-template-columns: 1fr 1fr;
    }
    .wf-title {
        font-size: 2rem;
    }
    .wf-passport-section {
        flex-direction: column-reverse;
    }
    .wf-passport-img {
        min-height: 200px;
    }
}

@media (max-width: 480px) {
    .wf-features {
        grid-template-columns: 1fr;
    }
    .wf-passport-content {
        padding: 25px;
    }
}