/* Standardized Footer Styles */

.footer {
    background: linear-gradient(to bottom, #f5f7fa 0%, #c3cfe2 100%);
    padding: 80px 20px;
    text-align: center;
    margin-top: 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer h2 {
    font-size: 36px;
    color: #4F4B45;
    margin-bottom: 20px;
}

.footer p {
    font-size: 20px;
    color: #666;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.footer-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-buttons .btn {
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s;
    display: inline-block;
}

.footer-buttons .btn-primary {
    background: #00727C;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 114, 124, 0.3);
}

.footer-buttons .btn-primary:hover {
    background: #005960;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 114, 124, 0.4);
}

.footer-buttons .btn-secondary {
    background: white;
    color: #00727C;
    border: 2px solid #00727C;
}

.footer-buttons .btn-secondary:hover {
    background: #00727C;
    color: white;
    transform: translateY(-2px);
}

.footer-quote {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(79, 75, 69, 0.2);
}

.footer-quote p {
    font-size: 14px;
    color: #666;
    font-style: italic;
    margin-bottom: 0;
    opacity: 0.8;
}

.footer-quote-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: opacity 0.3s;
}

.footer-quote-link:hover {
    opacity: 0.6;
}

/* Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 60px 20px;
    }
    
    .footer h2 {
        font-size: 28px;
    }
    
    .footer p {
        font-size: 18px;
    }
    
    .footer-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}