﻿* {
    color: white;
    max-width: 1500px;
}

.services-content h2 {
    font-size: 2.4rem;
    line-height: 1.4;
    margin-bottom: 50px;
    background: rgba(0,0,0,0.35);
    padding: 20px;
}

.services-box {
    background: rgba(0,0,0,0.35);
    padding: 20px;
    margin-bottom: 50px;
}

    .services-box h3,
    .contact-box h3 {
        font-size: 2.4rem;
        margin-bottom: 20px;
    }

    .services-box ul {
        padding-left: 30px;
    }

    .services-box li {
        font-size: 2rem;
        margin-bottom: 15px;
        font-weight: bold;
    }

.contact-box {
    background: rgba(0,0,0,0.35);
    padding: 20px;
}

    .contact-box a {
        color: white;
        text-decoration: none;
        font-size: 2rem;
        font-weight: bold;
    }

.slide-in {
    opacity: 0;
    transform: translateX(-120px);
    animation: slideIn 1.2s ease forwards;
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {

    .logo {
        width: 180px;
        right: 20px;
        top: 20px;
    }

    .content {
        padding: 20px;
    }

        .content h1 {
            font-size: 2.8rem;
        }

    .btn {
        width: 240px;
        font-size: 1.1rem;
    }

    .services-content h2 {
        font-size: 1.4rem;
    }

    .services-box li,
    .contact-box a {
        font-size: 1.2rem;
    }

    .services-box h3,
    .contact-box h3 {
        font-size: 1.6rem;
    }
}
