.contact-page {
    padding-top: 120px;
    padding-bottom: 80px;
    background: #fff;
}


.newsletter-section {
    padding: 80px 0;
    background: #fff;
}

/* Card = same idea as profile-card / pricing-card */
.newsletter-card {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 50px 40px;
    border-radius: 32px;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    text-align: center;
    transition: all 0.3s ease;
}

.newsletter-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.newsletter-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #111;
}

.newsletter-content p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 30px;
}

/* Form */
.newsletter-form {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

/* Floating input (like your contact form style) */
.input-group {
    position: relative;
    flex: 1;
    max-width: 320px;
}

.input-group input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid #ddd;
    background: #fff;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.25s ease;
}

.input-group label {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    font-size: 0.85rem;
    color: #999;
    pointer-events: none;
    transition: 0.2s ease;
    background: #fff;
    padding: 0 5px;
}

/* Floating effect */
.input-group input:focus,
.input-group input:not(:placeholder-shown) {
    border-color: #111;
}

.input-group input:focus + label,
.input-group input:not(:placeholder-shown) + label {
    top: -8px;
    font-size: 0.7rem;
    color: #111;
}

/* Button (consistent with your system) */
.subscribe-btn {
    padding: 14px 24px;
    border-radius: 14px;
    border: none;
    background: #111;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.subscribe-btn:hover {
    background: #000;
    transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 768px) {
    .newsletter-card {
        padding: 30px 20px;
        border-radius: 24px;
        margin: 0 15px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .input-group {
        max-width: 100%;
        width: 100%;
    }

    .subscribe-btn {
        width: 100%;
    }
}