section.hero{
    height: 100%;
    width: 100%;
    max-width: 1600px;
    margin: 2rem auto;
}
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px;
}

.content-box {
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

section.hero .left-content,section.hero .right-content {
    flex: 1;
    padding: 20px;
}

section.hero .left-content {
    background: var(--wc-lightest-shade);
    /* color: white; */
    border-radius: 10px;
}

section.hero .left-content h2 {
    margin-bottom: 15px;
}

section.hero .left-content ul {
    list-style: none;
    padding: 0;
}

section.hero .left-content ul li {
    margin-bottom: 10px;
    font-size: 16px;
}

section.hero .right-content {
    background: white;
}

section.hero .right-content h2 {
    text-align: center;
    margin-bottom: 15px;
}

.form-group {
    margin-bottom: 15px;
}

label {
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: var(--heading-font);
}

input, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-top: 5px;
}

button {
    width: 100%;
    padding: 12px;
    background: var(--wc-red);
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
}

button:hover {
    background:var(--wc-red);
}
ul {
    margin-top: 2rem;
}
ul li strong ,ul li{
    font-size: var(--fs-body);
    font-family: var(--heading-font);
}
.calendar-container {
    /* display: flex; */
    justify-content: center;
    align-items: center;
    height: 200px;
    margin: 3rem auto;
}

.calendar {
    width: 140px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    overflow: hidden;
    position: relative;
}

.calendar-top {
    background: var(--wc-red);
    color: var(--wc-highlight-text);
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    border-bottom: 3px solid var(--wc-red);
}

.calendar-body {
    display: flex;
    justify-content: center;
    align-items: center;
    /* background: #f8f9fa; */
    padding: 15px;
    height: 100px;
}

.flip-card {
    background: white;
    width: 45px;
    height: 60px;
    margin: 0 5px;
    font-size: 40px;
    font-weight: bold;
    color: #333;
    text-align: center;
    line-height: 60px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    transition: transform 0.5s ease-in-out;
}

@media (max-width:600px) {
    section.hero .container .content-box{
        flex-direction: column;
    }
}