
   

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

        .service-card {
            background-color: #f8f9fb;
            padding: 35px 30px;
            border-radius: 8px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .service-icon {
            width: 50px;
            height: 50px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .service-icon svg {
            width: 45px;
            height: 45px;
            stroke: #4285f4;
            stroke-width: 2;
            fill: none;
        }

        .service-card h3 {
            font-size: 1.25rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 15px;
        }

        .service-card p {
            font-size: 0.95rem;
            line-height: 1.6;
            color: #555;
        }

        .highlight {
            color: #4285f4;
            text-decoration: none;
        }

        @media (max-width: 768px) {
            .container {
                padding: 40px 20px;
            }

            .header h1 {
                font-size: 2rem;
            }

            .header h2 {
                font-size: 1.4rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }
        }
.marketing-blocks {
    padding: 60px 40px;
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
}


.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #000;
}

.section-subtitle {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 50px;
    color: #333;
    max-width: 100%;
}

.section-subtitle strong {
    font-weight: 700;
}

.cards-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.cards-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0;
    cursor: grab;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #333 transparent;
}

.cards-container:active {
    cursor: grabbing;
}

.cards-container::-webkit-scrollbar {
    height: 8px;
}

.cards-container::-webkit-scrollbar-track {
    background: transparent;
    margin: 0 40px;
}

.cards-container::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 10px;
}

.cards-container::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.card {
    min-width: 320px;
    max-width: 320px;
    background: #1a1a1a;
    border-radius: 20px;
    padding: 30px;
    color: white;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
    color: white;
}

.highlight {
    display: inline-block;
}

.highlight-yellow {
    color: #FFD700;
}

.highlight-red {
    color: #FF4757;
}

.highlight-blue {
    color: #1E90FF;
}

.highlight-green {
    color: #2ECC71;
}

.highlight-purple {
    color: #9B59B6;
}

.highlight-orange {
    color: #FF8C42;
}

.card-description {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #ccc;
    flex-grow: 1;
}

.card-icon {
    width: 180px;
    height: 180px;
    margin: 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.icon-illustration {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.card-footer {
    text-align: center;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #fff;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .section-title {
        font-size: 2rem;
    }
    
    .card {
        min-width: 280px;
        max-width: 280px;
    }
}

@media (max-width: 768px) {
    .marketing-blocks {
        padding: 40px 15px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }
    
    .cards-wrapper {
        gap: 10px;
    }
    
    .card {
        min-width: 260px;
        max-width: 260px;
        padding: 25px;
    }
    
    .card-title {
        font-size: 1.5rem;
    }
    
    .card-icon {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .cards-container {
        padding: 10px 5px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
}

