* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    color: #212529;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    padding: 40px 0 60px;
    text-align: center;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.logo {
    background: white;
    padding: 20px 40px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.logo img {
    height: 60px;
    width: auto;
}

h1 {
    font-size: 3rem;
    font-weight: 300;
    color: #495057;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.subtitle {
    font-size: 1.4rem;
    color: #6c757d;
    font-weight: 300;
}

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

.service-card {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #dc3545, #ff6b7a);
}

.service-card.it::before {
    background: linear-gradient(90deg, #007bff, #4dabf7);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: #e9ecef;
    transform: scale(1.05);
}

.service-icon svg {
    width: 40px;
    height: 40px;
}

.service-card h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #343a40;
    font-weight: 500;
}

.service-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 30px;
}

.service-list {
    list-style: none;
    text-align: left;
    margin-top: 25px;
}

.service-list li {
    padding: 8px 0;
    color: #495057;
    position: relative;
    padding-left: 25px;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.contact {
    background: linear-gradient(135deg, white 0%, #f8f9fa 100%);
    padding: 80px 50px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    text-align: center;
    margin: 80px 0;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #dc3545, #007bff, #28a745);
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #343a40;
    font-weight: 600;
    background: linear-gradient(135deg, #495057, #6c757d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact > p {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.contact-item {
    padding: 35px 25px;
    background: white;
    border-radius: 18px;
    transition: all 0.4s ease;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #17a2b8);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.contact-item:hover::before {
    transform: scaleX(1);
}

.contact-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,123,255,0.15);
    border-color: #007bff;
}

.contact-item h3 {
    color: #495057;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-item h3::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #007bff;
    border-radius: 50%;
    display: inline-block;
}

.contact-item p, .contact-item a {
    color: #6c757d;
    text-decoration: none;
    font-size: 1.05rem;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.contact-item a {
    font-weight: 500;
}

.contact-item a:hover {
    color: #007bff;
    text-decoration: underline;
}

.contact-cta {
    margin-top: 50px;
    padding: 25px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 15px;
    color: white;
    text-align: center;
}

.contact-cta h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: white;
}

.contact-cta p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

footer {
    text-align: center;
    padding: 40px 0;
    color: #6c757d;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .logo-container {
        gap: 30px;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .services {
        grid-template-columns: 1fr;
        gap: 30px;
        margin: 60px 0;
    }
    
    .contact {
        padding: 60px 30px;
    }
    
    .contact h2 {
        font-size: 2.2rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .contact-item {
        padding: 25px 20px;
    }
}
