.glass-section {
    display: flex;
    justify-content: center;
    margin: 60px 0;
}

.glass-box {
    width: 84%;
    max-width: 1150px;
    padding: 40px;

    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);

    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    color: white;

    transition: 0.3s ease;
}

.glass-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
}

.glass-box h2 {
    margin-bottom: 20px;
    font-size: 42px;
    background: linear-gradient(
    90deg,
    #8b5cf6,
    #3b82f6,
    #22d3ee
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass-box p {
    line-height: 1.7;
    opacity: 0.85;
    font-size: 18px;
}

.glass-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;

    border-radius: 10px;
    background: linear-gradient(
        90deg,
        #8b5cf6,
        #3b82f6,
        #22d3ee
    );
    color: white;
    text-decoration: none;

    transition: 0.3s;
}

.glass-btn:hover {
    opacity: 0.8;
}