/* Newsletter */
.newsletter-section {
    padding: 80px 0;
    background: #008D79; /* Primary color */
    color: white;
    text-align: center;
}
.newsletter-box {
    background: white;
    padding: 40px;
    border-radius: 24px;
    max-width: 800px;
    margin: 0 auto;
    color: #101828; /* Secondary color */
}

/* Footer */
footer {
    background: white;
    padding: 40px 0 20px;
    color: #667085;
    font-size: 0.9rem;
}
.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Reduced gap */
}
.footer-left {
    flex: 0 0 220px; /* Fixed smaller width */
    min-width: 200px;
}
.footer-right {
    flex: 1; /* Takes remaining space */
    background: #F0FDF4;
    border-radius: 24px;
    padding: 30px;
    min-width: 300px;
}
.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}
.social-icons a {
    color: #10B981;
    font-size: 1.5rem;
    transition: color 0.3s;
}
.social-icons a:hover {
    color: #059669;
}
.app-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
}
.app-btn {
    background: #101828;
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: opacity 0.3s;
    flex: 1;
    justify-content: center;
    min-width: 0;
}
.app-btn:hover {
    opacity: 0.9;
    color: white;
}
.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}
.footer-link-item {
    display: block;
    color: #475467;
    text-decoration: none;
    margin-bottom: 10px;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.9rem;
}
.footer-link-item:hover {
    color: #10B981;
}
.contact-item {
    text-align: center;
    background: white;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    height: 100%;
}
.contact-icon {
    width: 32px;
    height: 32px;
    margin: 0 auto 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}
.contact-label {
    font-weight: 700;
    color: #101828;
    margin-bottom: 2px;
    font-size: 0.9rem;
}
.contact-value {
    color: #667085;
    font-size: 0.8rem;
    word-break: break-word;
}
