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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #f8f9fa;
}

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj/wAARCABkAJYDASIAAhEBAxEB/8QAGwABAAMBAQEBAAAAAAAAAAAAAAQFBgMBAgf/xAA2EAACAQMCBAQDBwUFAAAAAAABAgMABBEFITIxMUEGIlFhFHGBMkKRobHBFSNS0fAWM2Jygv/EABUBAQEAAAAAAAAAAAAAAAAAAAAB/8QAFBEBAAAAAAAAAAAAAAAAAAAAAP/aAwDAQACEQMRAD8A/qmlKBSlKBSlKBSlKBSlKBSlKD') center/cover;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-title {
    color: white;
    font-size: 72px;
    font-weight: 600;
    letter-spacing: -1px;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    min-height: 400px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}

.service-card.animate {
    opacity: 1;
    transform: translateY(0);
}

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

.service-image {
    width: 40%;
    background: linear-gradient(135deg, #1498D5 0%, #0354A2 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.service-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.05);
    transform: skewX(-15deg);
    left: -50%;
}

.service-content {
    width: 60%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-label {
    color: #0066cc;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.service-title {
    color: #333;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    padding-right: 150px;
}

.service-description {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
    padding-right: 150px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
}

.service-metrics {
    position: absolute;
    top: 40px;
    right: 40px;
    text-align: right;
    width: 130px;
}

.metric-number {
    color: #0066cc;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.metric-label {
    color: #666;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.details-button {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, #1498D5 0%, #0354A2 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    margin-top: auto;
    align-self: flex-start;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.details-button:hover {
    background: linear-gradient(135deg, #0e7dbd 0%, #023d82 100%);
    transform: translateX(5px);
    filter: brightness(1.1);
}

.details-button::after {
    content: '→';
    font-size: 16px;
}

.social-footer {
    background: #003d7a;
    padding: 30px 0;
    text-align: center;
}

.social-title {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
}

.copyright {
    background: #002d5a;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 48px;
    }

    .service-card {
        flex-direction: column;
    }

    .service-image {
        width: 100%;
        height: 200px;
    }

    .service-content {
        width: 100%;
        padding: 30px 20px;
    }

    .service-title {
        padding-right: 0;
    }

    .service-description {
        padding-right: 0;
    }

    .service-metrics {
        position: static;
        margin-top: 20px;
        text-align: left;
    }
}
