#support-organization {
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
    z-index: -1;
}

#support-organization::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.support-content {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 60px 40px;
    padding-bottom: 0;
    backdrop-filter: blur(10px);
}

.support-header {
    text-align: center;
    margin-bottom: 40px;
}

.support-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.support-header h2 {
    font-size: 2.5em;
    color: #2d3748;
    margin-bottom: 15px;
    font-weight: 700;
}

.support-header .subtitle {
    font-size: 1.2em;
    color: #667eea;
    font-weight: 600;
}

.support-text {
    font-size: 1.1em;
    color: #4a5568;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-box {
    background: linear-gradient(135deg, #f6f8fb 0%, #e9ecf5 100%);
    border-left: 5px solid #667eea;
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
}

.highlight-box h3 {
    color: #2d3748;
    font-size: 1.5em;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.highlight-box p {
    color: #4a5568;
    font-size: 1.05em;
    line-height: 1.7;
}

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

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #667eea;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.2);
}

.benefit-card .icon {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.benefit-card h4 {
    color: #2d3748;
    font-size: 1.3em;
    margin-bottom: 10px;
}

.benefit-card p {
    color: #718096;
    font-size: 0.95em;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
    text-align: center;
    margin-top: 30px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.button-container {
    text-align: center;
}

.taxes-btn {
    z-index: 5;
    position: fixed;
    padding: 10px 15px;
    background: #c62f2f;
    border-radius: 12px 0px 12px 0px;
    color: white;
    border: none;
    font-size: medium;
    cursor: pointer;
    transform: rotate(-0.25turn);
    bottom: 30%;
    right: 0%;
    padding-bottom: 80px;
    text-decoration: none;
}

@media (max-width: 768px) {
    .taxes-btn {
        right: -32%;
    }
}
@media (min-width: 769px) {
    .taxes-btn {
        right: -10%;
    }
}

@media (min-width: 1001px) {
    .taxes-btn {
        right: -3.8%;
    }
}

@media (max-width: 768px) {
    #support-organization {
        padding: 60px 15px;
        padding-bottom: 0;
    }

    .support-content {
        padding: 40px 25px;
    }

    .support-header h2 {
        font-size: 2em;
    }

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