:root {
    --dark-blue: #001e50;
    /* Approximate Volkswagen Dark Blue */
    --darker-blue: #001b48;
    --cyan-highlight: #00b1eb;
    --white: #ffffff;
    --gray-text: #cccccc;
    --input-bg: #ffffff;
    --button-bg: #005698;
    /* A lighter blue for the button */
    --button-hover: #00457a;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark-blue);
    /* Dark background for the page outside modal */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    flex-wrap: wrap;
}

.modal-overlay {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.top-logo {
    width: 60px;
    height: auto;
    margin-bottom: 20px;
}

.modal-container {
    background-color: var(--white);
    width: 100%;
    max-width: 1086px;
    border-radius: 8px;
    overflow: hidden;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); */
}

.modal-header {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
}

.modal-body {
    background-color: var(--dark-blue);
    padding: 40px;
    color: var(--white);
}

.content-wrapper {
    display: flex;
    gap: 40px;

    align-items: center;
}

/* Left Column */
.left-column {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.main-title {
    font-size: 2.2rem;
    line-height: 1.1;
    color: var(--cyan-highlight);
    margin-bottom: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.italic-text {
    font-style: italic;
}

.address {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 30px;
    font-weight: 700;
    text-transform: uppercase;
}

.promo-image-container {
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
}

.promo-image {
    width: 100%;
    height: auto;
    display: block;
}

.event-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 32px 0px;
    background-color: var(--darker-blue);
      padding-left: 10px ;
    padding-right: 10px;
}

.event-info p {
    color: var(--white);
    max-width: 1044px;

}

.event-info .address-pin {
    font-weight: 700;
}

.date-time {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--white);
}

.date-time .icon {
    font-size: 1.2rem;
}

/* Right Column */
.right-column {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sub-headline {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 15px;
    line-height: 1.4;
}

.highlight {
    color: var(--cyan-highlight);
    font-weight: 700;
}

.call-to-action {
    font-size: 0.85rem;
    margin-bottom: 25px;
}

.cyan-text {
    color: var(--cyan-highlight);
    font-weight: 700;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.lead-form input,
.lead-form select {
    padding: 15px;
    border-radius: 5px;
    border: none;
    font-family: inherit;
    font-size: 1rem;
}

.submit-btn {
    background-color: #006e9e;
    /* Adjusted to match image better */
    color: var(--white);
    border: none;
    padding: 15px;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #005c85;
}

.legal-text {
    font-size: 0.5rem;
    text-align: center;
    color: var(--gray-text);
    margin-bottom: 15px;
  
}

.legal-text a {
    color: var(--cyan-highlight);
    text-decoration: none;
}

.disclaimer {
    font-size: 0.55rem;
    text-align: center;
    color: #889bb3;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .modal-body {
        padding: 20px;
    }

    .main-title {
        font-size: 1.8rem;
    }
}