:root {
    --primary: #ff0000;   
    --primary-2: #ff4500;   

    --text-light: #ffffff;
    --shadow-color: rgba(0, 0, 0, 0.15);

    --gradient-speed: 5s;
}

.header, .footer {
    width: 100%;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
    color: var(--text-light);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blocks {
    position: relative; 
    overflow: hidden;  
    color: var(--text-light);
}

.blocks > * {
    position: relative;
    z-index: 1;
}

.footer > * {
    position: relative;
    z-index: 1;
}

.header {
    border-radius: 0 0 30px 30px;
}

.footer {
    border-radius: 30px 30px 0 0;
}

.footer a {
    color: #ffffff;
    text-decoration: none;
}

.footer a:hover {
    color: #ffeaea;
    text-decoration: underline;
}

.footer h6 {
    color: #ffffff;
    margin-bottom: 10px;
}

.footer ul li {
    margin-bottom: 6px;
}

.footer .text-muted {
    color: rgba(255,255,255,0.7) !important;
}

.header::before, 
.footer::before, 
.blocks::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,   
        var(--primary) 0%,
        var(--primary-2) 100%
    );
    z-index: 0;
}

.header-content, .footer-content {
    max-width: 960px;
    width: 100%;
    position: relative;
    z-index: 1;
}