/* Toolkit Section */
.toolkit-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 80px 0;
    color: #fff;
}

.toolkit-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.toolkit-header {
    text-align: center;
    margin-bottom: 60px;
}

.toolkit-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin: 0 0 24px 0;
    letter-spacing: 2px;
    line-height: 1.2;
}

.toolkit-header .highlight {
    color: #fff;
    font-weight: 900;
}

.toolkit-header p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #e0e0e0;
    margin: 0 auto;
    max-width: 800px;
}

.toolkit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.toolkit-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.toolkit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.toolkit-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(45deg, #6a3bc2, #e94e1b, #c2478a);
    display: flex;
    align-items: center;
    justify-content: center;
}

.toolkit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.toolkit-card:hover .toolkit-image img {
    transform: scale(1.1);
}

/* Placeholder background patterns for when images aren't available */
.toolkit-card:nth-child(1) .toolkit-image {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 50%, #ff9ff3 100%);
}

.toolkit-card:nth-child(2) .toolkit-image {
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 50%, #6c5ce7 100%);
}

.toolkit-card:nth-child(3) .toolkit-image {
    background: linear-gradient(135deg, #a29bfe 0%, #6c5ce7 50%, #fd79a8 100%);
}

.toolkit-card:nth-child(4) .toolkit-image {
    background: linear-gradient(135deg, #fd79a8 0%, #fdcb6e 50%, #e17055 100%);
}

.toolkit-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    padding: 24px;
    line-height: 1.4;
    color: #fff;
    text-align: left;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .toolkit-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .toolkit-header h2 {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .toolkit-section {
        padding: 60px 0;
    }

    .toolkit-container {
        padding: 0 16px;
    }

    .toolkit-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .toolkit-header h2 {
        font-size: 2rem;
        margin-bottom: 16px;
    }

    .toolkit-header {
        margin-bottom: 40px;
    }

    .toolkit-image {
        height: 160px;
    }

    .toolkit-card h3 {
        font-size: 0.95rem;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .toolkit-header h2 {
        font-size: 1.6rem;
    }

    .toolkit-header p {
        font-size: 1rem;
    }

    .toolkit-image {
        height: 140px;
    }
}