* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    position: relative;
    text-align: center;
}

/* Background overlay for dim effect */
.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.85); /* Dark elegant overlay */
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    max-width: 700px;
    width: 90%;
    padding: 40px 20px;
}

/* Logo Styling */
.logo {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #ffffff;
}

.logo span {
    color: #c5a880; /* Elegant Gold color */
}

/* Content Styling */
.content h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #f1f5f9;
}

.content p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.6;
    color: #cbd5e1;
    margin-bottom: 30px;
}

/* Form Styling */
.subscribe-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.subscribe-form input[type="email"] {
    padding: 14px 20px;
    width: 65%;
    min-width: 260px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 0.95rem;
    backdrop-filter: blur(5px);
}

.subscribe-form input[type="email"]::placeholder {
    color: #94a3b8;
}

.subscribe-form button {
    padding: 14px 28px;
    background-color: #c5a880;
    border: none;
    border-radius: 6px;
    color: #1e293b;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.subscribe-form button:hover {
    background-color: #b39368;
}

/* Messages */
.success-msg {
    color: #4ade80;
    margin-bottom: 15px;
}

.error-msg {
    color: #f87171;
    margin-bottom: 15px;
}

/* Footer */
footer {
    margin-top: 50px;
    font-size: 0.85rem;
    color: #64748b;
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .logo { font-size: 1.8rem; }
    .content h2 { font-size: 1.5rem; }
    .subscribe-form input[type="email"] { width: 100%; }
    .subscribe-form button { width: 100%; }
}