body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #1f2937;
}

.accent-blue {
    background-color: #1e3a8a;
    color: white;
}

.accent-text-blue {
    color: #1e3a8a;
}

.header-bg {
    background-image: url('https://www.adecco.com/-/media/project/adecco/adecco-es/perfiles/redes/l3.jpg?h=483&iar=0&w=724&hash=CFE8FCD2FB7B103782B9D75E30836B17');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    padding-bottom: 0; 
}

.header-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 15;
}

.header-bg::after {
    content: none;
}

.cta-button {
    transition: background-color 0.3s ease, transform 0.1s ease;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.4);
    z-index: 20;
}

.cta-button:hover {
    transform: translateY(-1px) scale(1.01);
    background-color: #3b82f6;
}

.service-card {
    border: 1px solid #e5e7eb;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.service-icon-placeholder {
    font-size: 2rem;
    line-height: 1;
}

.footer {
    background-color: #1a1a2e;
    color: #e4e4e4;
    padding: 40px 20px 20px;
    font-family: Arial, sans-serif;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 20px;
}

.footer-section {
    width: 23%;
    margin-bottom: 20px;
}

.footer-section h3 {
    color: #1a6bb3;
    margin-bottom: 15px;
    font-size: 1.2em;
    border-bottom: 2px solid #ffcc00;
    padding-bottom: 5px;
}

.footer-section p {
    font-size: 0.9em;
    line-height: 1.5;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #e4e4e4;
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #1a6bb3;
    text-decoration: underline;
}

.footer-section.contact i {
    margin-right: 8px;
    color: #1a6bb3;
}

.social-links a {
    display: inline-block;
    font-size: 2em;
    margin-right: 15px;
    color: #e4e4e4;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #1a6bb3;
}

.footer-bottom {
    border-top: 1px solid #333;
    text-align: center;
    padding-top: 15px;
    font-size: 0.85em;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-section {
        width: 100%;
        text-align: center;
        margin-bottom: 30px;
    }

    .footer-section h3 {
        border-bottom: none;
        padding-bottom: 0;
    }

    .social-links {
        text-align: center;
    }
}