/* Start custom CSS */.elementor-32186 .elementor-element.elementor-element-d96f4ea > .elementor-container{max-width:1200px;}.elementor-32186 .elementor-element.elementor-element-d96f4ea{padding:0rem 0rem 3rem 0rem;}.elementor-32186 .elementor-element.elementor-element-f1b73dd > .elementor-container{max-width:1200px;}.elementor-32186 .elementor-element.elementor-element-e1cb328 > .elementor-widget-container{box-shadow:0px 8px 20px 0px rgba(0, 0, 0, 0.15);}@media(min-width:768px){.elementor-32186 .elementor-element.elementor-element-27ed348{width:60%;}.elementor-32186 .elementor-element.elementor-element-e83d9ae{width:40%;}}/* Start custom CSS for html, class: .elementor-element-63a0318 *//* Centered Title */
.event-title {
    text-align: center;
    font-family: 'Fjalla One', Arial, sans-serif;
    font-size: 3.5rem;
    color: #BD081C;
    text-transform: uppercase;
    padding: 3rem 0px;
}

/* Inline Details */
.event-inline-details {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap; /* Makes it responsive */
}

.event-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.event-detail i {
    color: #BD081C;
    font-size: 16px;
}

/* Two-Column Layout */
.event-content {
    display: flex;
    gap: 40px;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    background: #fff;
    padding: 30px;
}

/* Left Column: Event Details */
.event-details {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.event-image-wrapper {
    text-align: center;
    margin-bottom: 20px;
}

.event-image {
    max-width: 75%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Event Description */
.event-description {
    font-size: 16px;
    color: #000;
    line-height: 1.8;
    margin-top: 20px;
}

/* Right Column: Subscription Form */
.event-form {
    flex: 0.6;
    min-width: 300px;
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.event-form h2 {
    font-family: 'Fjalla One', Arial, sans-serif;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #BD081C;
    text-align: center;
}

.FormC{
    text-align: justify;
}

.form-group {
    margin-bottom: 20px; /* Increased spacing */
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: black;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px; /* Increased padding */
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 1rem;
}

/* Align checkbox and label in the same line */
.form-group.checkbox-group {
    display: flex;
    align-items: center; /* Vertically align items */
    gap: 10px; /* Add space between checkbox and label */
}

.form-group.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0; /* Remove any default margin for the checkbox */
}

.form-group.checkbox-group label {
    margin: 0; /* Remove default margin from label */
    font-weight: bold;
    color: black;
    cursor: pointer;
}

.submit-button {
    padding: 15px;
    background-color: #BD081C;
    border: none;
    color: white;
    border-radius: 10px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
    text-align: center;
}

.submit-button:hover {
    background-color: #9A0616;
    transform: scale(1.03);
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Center the Inline Details */
    .event-inline-details {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        text-align: center;
    }

    /* Stack and Center Event Content */
    .event-content {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .event-details {
        text-align: center;
    }

    .event-image-wrapper {
        text-align: center;
    }

    .event-form {
        text-align: center;
        margin: 0 auto;
        width: 90%; /* Adjust width on smaller screens */
    }
}

@media (max-width: 480px) {
    /* Further Adjustments for Extra Small Screens */
    .event-title {
        font-size: 2.5rem; /* Smaller title size */
        padding: 2rem 0px;
    }

    .event-inline-details {
        gap: 10px; /* Reduce gap between details */
    }

    .event-detail {
        font-size: 14px; /* Reduce font size for details */
    }

    .event-content {
        padding: 20px;
    }

    .event-form {
        padding: 20px;
    }

    .form-group input,
    .form-group select {
        padding: 12px; /* Slightly smaller padding for inputs */
    }

    .submit-button {
        padding: 12px;
        font-size: 1rem;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-e1cb328 *//* Ensure form container alignment */
.event-form {
    flex: 0.6;
    min-width: 300px;
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    text-align: center;
}

/* Style the Microsoft form fields */
.marketingForm {
    max-width: 100%;
    margin: 0 auto;
    font-family: 'Noto Sans JP', Arial, sans-serif;
}

/* Style form input fields */
.marketingForm input,
.marketingForm select {
    width: 100%;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 1rem;
    margin-bottom: 15px;
}

/* Align checkbox and label */
.marketingForm .consentBlock div {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.marketingForm .consentBlock input[type="checkbox"] {
    width: auto;
}

.marketingForm .consentBlock label p {
    margin: 0;
    font-weight: bold;
    color: black;
}

/* Style submit button */
.marketingForm .submitButtonWrapper {
    text-align: center;
}

.marketingForm .submitButton {
    padding: 15px 30px;
    background-color: #BD081C;
    border: none;
    color: white;
    border-radius: 10px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.marketingForm .submitButton:hover {
    background-color: #9A0616;
    transform: scale(1.03);
}

/* disable 600px fixed width for the table inside the form */
.marketingForm table.outer {
    width: auto !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .event-form {
        width: 90%;
        margin: 0 auto;
    }

    .marketingForm input,
    .marketingForm select {
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .event-title {
        font-size: 2.5rem;
    }

    .submitButton {
        font-size: 1rem;
        padding: 12px 20px;
    }
}/* End custom CSS *//* End custom CSS */