#summary {
    background: linear-gradient(135deg, var(--color9) 0%, #5a9e5a 100%);
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#summary::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

#summary h2 {
    color: var(--color1);
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: bold;
    position: relative;
    z-index: 1;
}

#summary .summary-intro {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

#summary .div1 {
    display: flex;
    justify-content: center;
    width: 100%;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

#summary .div1 .column {
    width: 30%;
    background: var(--color1);
    color: var(--color6);
    margin-right: 20px;
    border-radius: 15px;
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#summary .div1 .column:last-child {
    margin-right: 0;
}

#summary .div1 .column:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

#summary .column-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
}

#summary .column-header .title {
    color: var(--color9);
    font-size: 1.8rem;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 20px;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.2;
}

#summary .column-header .image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
}

#summary .column-header .image svg {
    color: var(--color9);
    width: 80px;
    height: 80px;
}

#summary .description {
    line-height: 1.6;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

#summary .description p {
    margin-bottom: 1rem;
    color: var(--color4);
}

#summary .description p strong {
    color: var(--color6);
}

#summary .button {
    background-color: var(--color9);
    border-radius: 50px;
    color: var(--color1);
    border: 2px solid var(--color9);
    padding: 12px 30px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
    align-self: center;
    animation: subtleShake 2.5s ease-in-out infinite;
}

#summary .button:hover {
    background-color: var(--color1);
    color: var(--color9);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

@media screen and (max-width: 768px) {
    #summary {
        padding: 40px 15px;
    }

    #summary h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    #summary .summary-intro {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    #summary .div1 {
        flex-direction: column;
        align-items: stretch;
    }

    #summary .div1 .column {
        width: 90%;
        margin-right: 0;
        margin-bottom: 20px;
        padding: 25px 20px;
    }

    #summary .div1 .column:last-child {
        margin-bottom: 0;
    }

    #summary .column-header .title {
        font-size: 1.5rem;
        min-height: 50px;
    }

    #summary .column-header .image {
        height: 80px;
    }

    #summary .column-header .image svg {
        width: 60px;
        height: 60px;
    }

    #summary .button {
        width: 90%;
        max-width: 250px;
    }
}
