* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --border-radius: 8px;
    --card-background: #f8f9fa;
    --sk-body-text-color: #1d1d1f;
    --text-button: #fff;
    --text-button-rgb: 255, 255, 255;
    --dark-secondary: rgba(60, 60, 60, 0.6);
    --text-primary: #fff;
    --text-secondary: #6B7280;
    --dark-light: rgba(60, 60, 60, 0.4);

}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
    margin: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

footer {
    background: #d8c9ae;
    color: #fff;
    padding: 50px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 30px;
    color: #000000;
    font-weight: 600;
    position: relative;
    font-family: 'Rubik', sans-serif;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    width: 40%;
    height: 4px;
    background: #F97316;
    bottom: 0px;
    left: -2.5%;
    transform: skewX(-15deg) rotate(-2deg);
    transition: all 0.2s ease-in-out;
}


.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 8px;
}

.footer-column a {
    color: #333;
    font-family: 'Rubik', sans-serif;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}


.footer-column a:hover {
    color: #EA580C;
}

.social-links-footer {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.social-link-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
}

.social-link-footer:hover {
    /* background: #EA580C; */
    transform: translateY(-2px);
    /* stroke: white; */
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 20px;
    text-align: center;
    color: #000000;
    font-size: 14px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}
