.tpc-d4d17be8-wrapper {
    font-family: 'Inter', sans-serif;
    --navy: #0F2341;
    --gold: #C8A15A;
    --white: #FFFFFF;
    --light-gray: #F7F7F7;
    --teal: #2B8C8C;
    --gray: #555555;
}

/* Part 1: Two Columns */
.tpc-d4d17be8-part-one {
    background-color: var(--light-gray);
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    width: 100%;
}
.tpc-d4d17be8-container {
    max-width: 1200px;
    width: 100%;
}
.tpc-d4d17be8-columns {
    display: flex;
    gap: 60px;
    position: relative;
}
.tpc-d4d17be8-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
}
.tpc-d4d17be8-col.animated {
    opacity: 1;
}
.tpc-d4d17be8-col-left.animated {
    animation: tpc-d4d17be8-fadeLeft 0.8s ease forwards;
}
.tpc-d4d17be8-col-right.animated {
    animation: tpc-d4d17be8-fadeRight 0.8s ease forwards;
}

@keyframes tpc-d4d17be8-fadeLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes tpc-d4d17be8-fadeRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

.tpc-d4d17be8-divider {
    position: absolute;
    left: 50%;
    top: 12.5%;
    transform: translateX(-50%);
    width: 2px;
    height: 75%;
    background-color: var(--gold);
}

.tpc-d4d17be8-eyebrow {
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 0 15px 0;
}
.tpc-d4d17be8-heading {
    font-family: 'Playfair Display', serif;
    color: var(--navy);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 20px 0;
    font-size: 36px;
}
.tpc-d4d17be8-body {
    color: var(--gray);
    font-size: 18px;
    line-height: 1.7;
    margin: 0;
}

/* Part 2: CTA Block */
.tpc-d4d17be8-part-two {
    background-color: var(--navy);
    padding: 90px 20px;
    display: flex;
    justify-content: center;
    text-align: center;
    width: 100%;
}
.tpc-d4d17be8-cta-container {
    max-width: 700px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.tpc-d4d17be8-part-two .tpc-d4d17be8-heading,
.tpc-d4d17be8-part-two .tpc-d4d17be8-body {
    color: var(--white);
}
.tpc-d4d17be8-part-two .tpc-d4d17be8-heading {
    font-size: 50px;
}
.tpc-d4d17be8-button {
    display: inline-block;
    margin-top: 30px;
    padding: 16px 34px;
    background: transparent;
    color: var(--white);
    border: 2px solid var(--teal);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.tpc-d4d17be8-button:hover {
    background: var(--teal);
    color: var(--white);
}

/* Popup Modal */
.tpc-d4d17be8-popup-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(15, 35, 65, 0.85);
    backdrop-filter: blur(5px);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.tpc-d4d17be8-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}
.tpc-d4d17be8-popup-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transform: translateY(20px);
    transition: all 0.3s ease;
    text-align: left;
}
.tpc-d4d17be8-popup-overlay.active .tpc-d4d17be8-popup-card {
    transform: translateY(0);
}
.tpc-d4d17be8-popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--gray);
    cursor: pointer;
    line-height: 1;
}
.tpc-d4d17be8-popup-card .tpc-d4d17be8-heading {
    font-size: 28px;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
    color: var(--navy);
}
.tpc-d4d17be8-popup-card .tpc-d4d17be8-body {
    font-size: 16px;
    margin-bottom: 25px;
    color: var(--gray);
}
.tpc-d4d17be8-form-group {
    margin-bottom: 15px;
}
.tpc-d4d17be8-form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    box-sizing: border-box;
}
.tpc-d4d17be8-submit {
    width: 100%;
    padding: 16px;
    background: var(--gold);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 10px;
}
.tpc-d4d17be8-submit:hover {
    background: #b58f4a;
}

/* Responsive */
@media (max-width: 1024px) {
    .tpc-d4d17be8-heading { font-size: 30px; }
    .tpc-d4d17be8-part-two .tpc-d4d17be8-heading { font-size: 40px; }
    .tpc-d4d17be8-columns { gap: 40px; }
}
@media (max-width: 767px) {
    .tpc-d4d17be8-columns {
        flex-direction: column;
        gap: 50px;
    }
    .tpc-d4d17be8-divider { display: none; }
    .tpc-d4d17be8-heading { font-size: 26px; }
    .tpc-d4d17be8-part-two .tpc-d4d17be8-heading { font-size: 32px; }
    .tpc-d4d17be8-part-one, .tpc-d4d17be8-part-two { padding: 60px 20px; }
    .tpc-d4d17be8-popup-card { padding: 30px 20px; }
}
