
#page {
    background: linear-gradient(to right, #000000, #800000);
    color: #fff;
}

#header1 {
    padding: 6rem 2rem;
    text-align: center;
}

#header1 .logo {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: #fff;
}

#header1 .subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 0.5em;
    color: #fff;
}

#main {
    padding: 4rem 2rem;
}

#main .grid-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

#main .section {
    padding: 2rem;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

#main .section h2 {
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    text-transform: uppercase;
    color: #fff;
}

#main .section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #fff;
}

#main .section p {
    text-align: center;
    line-height: 1.8;
    font-size: 1.1rem;
    color: #fff;
}

#footer {
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#footer .footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 768px) {
    #main .grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    #footer .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    #header1 .subtitle {
        font-size: 2rem;
    }
}

@media (min-width: 1024px) {
    #main .grid-container {
        grid-template-columns: repeat(4, 1fr);
    }

    #header1 .logo {
        font-size: 6rem;
    }
}