.tai-newsletter-section {
    background-color: #EFEBE9; 
    padding: 100px 20px;
    text-align: center;
    font-family: 'Inter', -apple-system, sans-serif;
    color: #1A1A1A;
}

.tai-container {
    max-width: 800px;
    margin: 0 auto;
}

.tai-title {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.tai-highlight {
    display: block;
    font-size: 52px;
    text-transform: uppercase;
    margin-top: 10px;
}

.tai-description {
    font-size: 20px;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.5;
    font-weight: 400;
}

/* The Form Grid */
.tai-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tai-input-group {
    display: flex;
    width: 100%;
    max-width: 600px;
    gap: 15px;
}

.tai-form input[type="email"] {
    flex: 2;
    padding: 18px 30px;
    border-radius: 50px;
    border: 2px solid #1A1A1A;
    background: transparent;
    font-size: 16px;
    outline: none;
    color: #1A1A1A;
}

.tai-form input[type="email"]::placeholder {
    color: rgba(26, 26, 26, 0.7);
}

.tai-form button {
    flex: 1;
    background: #1A1A1A;
    color: #EFEBE9 !important;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tai-form button:hover {
    background: #000;
    transform: translateY(-2px);
}

/* AJAX Message Centering */
#tfe-msg {
    margin-top: 20px;
    font-weight: 700;
    font-size: 14px;
}

/* Mobile Fixes */
@media (max-width: 650px) {
    .tai-input-group { flex-direction: column; }
    .tai-title { font-size: 28px; }
    .tai-highlight { font-size: 36px; }
    .tai-newsletter-section { padding: 60px 20px; }
}