.newsletter-section {
    background-color: #000000;
    padding: 3rem 0;
}

.newsletter-title {
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-size: 24px;
}

.newsletter-form {
    display: flex;
    margin-bottom: 2rem;
}

.newsletter-input {
    flex-grow: 1;
    padding: 10px 15px;
    font-size: 1rem;
    background: transparent;
    border-bottom: 1px solid #646464;
    border-top: none;
    border-right: none;
    border-left: none;
    color: #fff;
}

.newsletter-input:focus {
    outline: none;
    border-bottom-color: #212529;
}

.newsletter-btn {
    background-color: transparent;
    color: white;
    border-top: 2px solid #ffff;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s;
    border-bottom: 1px solid #646464;
    border-left: none;
}

.brand-section {
    margin-top: 2rem;
}

.brand-description {
    color: #6c757d;
    margin: 20px;
    font-size: 12px;
}

.brand-info {
    color: #6c757d;
    font-size: 0.9rem;
}

.text-copy-right {
    color: #6c757d;
    font-size: 12px;
}

/* Responsive */
@media (max-width: 768px) {
    .brand-description {
        margin-top: 15px;
        width: 100%;
    }
}