/* Import base styles from website design */
@import url('website-design-style.css');

/* Print Design Hero Section Specific Styles */
.print-mockup {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.print-illustration {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

/* Services Header with SEE EXAMPLES button */
.services-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 20px;
}

.see-examples-btn {
    background: #F5C842;
    color: #1a1a1a;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.see-examples-btn:hover {
    background: #F39C12;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 200, 66, 0.3);
}

.see-examples-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.see-examples-btn:hover i {
    transform: translateY(2px);
}

/* Services Grid - 3 columns, 2 rows */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

/* Service Card with Icon */
.service-card {
    background: #FFFFFF;
    padding: 32px 24px;
    border-radius: 16px;
    text-align: left;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #F0F0F0;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

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

.service-icon-img {
    width: 48px;
    height: 48px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.service-card .service-name {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.service-card .service-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .services-header {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .services-title {
        margin-bottom: 0;
    }
    
    .see-examples-btn {
        align-self: flex-start;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .service-card {
        padding: 24px 20px;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
}