/* Newsletter Section */
.newsletter-section {
    background: #F5F6ED;
    padding: 24px;
    position: relative;
}

.newsletter-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.newsletter-card {
    background-color: #2a2a2a;
    border-radius: 16px;
    padding: 32px 48px;
    color: white;
    position: relative;
}

.newsletter-close {
    position: absolute;
    top: 32px;
    right: 48px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    transition: opacity 0.2s;
    background: none;
    border: none;
    padding: 0;
}

.newsletter-close:hover {
    opacity: 0.7;
}

.newsletter-close svg,
.newsletter-close img {
    width: 100%;
    height: 100%;
    filter: brightness(0) saturate(100%) invert(89%) sepia(8%) saturate(424%) hue-rotate(299deg) brightness(98%) contrast(91%);
}

.newsletter-greeting {
    color: #F0BDC1;
    font-size: 20px;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.newsletter-headline {
    font-size: 30px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 0;
    letter-spacing: -0.02em;
    color: #F0BDC1;
}

.newsletter-description {
    font-size: 30px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
    color: #F0BDC1;
    max-width: 700px;
}

.newsletter-form {
    display: flex;
    gap: 0;
    border-bottom: 1px solid #F0BDC1;
    padding-bottom: 12px;
    max-width: 700px;
}

.newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    color: #F0BDC1;
    font-size: 20px;
    outline: none;
    letter-spacing: -0.02em;
}

.newsletter-input::placeholder {
    color: #f0bdc18c;
}

.newsletter-button {
    background: transparent;
    border: none;
    color: #F0BDC1;
    font-size: 20px;
    cursor: pointer;
    padding: 0 12px;
    letter-spacing: -0.02em;
    transition: opacity 0.2s;
}

.newsletter-button:hover {
    opacity: 0.8;
}

.newsletter-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 16px;
    }

    .newsletter-container {
        padding: 0;
    }

    .newsletter-card {
        padding: 32px;
    }

    .newsletter-close {
        top: 32px;
        right: 32px;
        width: 16px;
        height: 16px;
    }

    .newsletter-headline,
    .newsletter-description {
        font-size: 20px;
    }

    .newsletter-greeting,
    .newsletter-input,
    .newsletter-button {
        font-size: 16px;
    }
}