body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    background: #f9fafc;
    color: #222;
}

header {
    background: linear-gradient(90deg, #008cff 0%, #00d8a7 100%);
    color: white;
    padding-bottom: 2.5rem;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.7rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.navLogo {
    text-decoration: none;
    border-bottom: 0px solid #fff;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

nav ul a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: border-bottom 0.2s;
}

nav ul a:hover {
    border-bottom: 2px solid #fff;
    text-decoration: none;
}

.hero {
    max-width: 700px;
    margin: 3rem auto 0 auto;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.cta {
    display: inline-block;
    padding: 0.9em 2em;
    background: #222222;
    color: white;
    font-weight: bold;
    border-radius: 30px;
    font-size:1.1rem;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: background 0.2s, color 0.2s;
}

.cta:hover {
    background: black;
    color: #fff;
}

main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2.5rem 1rem;
}

section {
    margin-bottom: 3.5rem;
}

h2 {
    color: #008cff;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: space-between;
}

.service {
    flex: 1 1 220px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 1px 8px #00d8a718;
    padding: 1.5rem;
    margin-bottom: 1rem;
    min-width: 220px;
    max-width: 48%;
}

.service h3 {
    color: #00b389;
    margin-top: 0;
}

#apropos p {
    font-size: 1.1rem;
    background: #fff;
    padding: 1.3rem;
    border-radius: 10px;
    box-shadow: 0 1px 8px #00d8a71a;
}

form {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 1px 8px #00d8a71a;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

label {
    font-weight: 600;
    color: #008cff;
    margin-bottom: 0.3rem;
}

input, textarea {
    padding: 0.7em;
    border-radius: 6px;
    border: 1px solid #d0e2ff;
    font-size: 1rem;
}

button[type="submit"] {
    align-self: flex-end;
    background: #222222;
    color: white;
    border: none;
    border-radius: 30px;
    padding: 0.7em 2em;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: background 0.2s;
}

button[type="submit"]:hover {
    background: #000000;
}

footer {
    background: #222222;
    color: #fff;
    text-align: center;
    padding: 1.3rem 0;
    font-size: 1rem;
    margin-top: 2rem;
}

/* Solutions section styles */
.solutions-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: space-between;
    margin-bottom: 2rem;
}
.solution {
    flex: 1 1 220px;
    background: #f7faff;
    border-radius: 14px;
    box-shadow: 0 1px 8px #00b38918;
    padding: 1.5rem;
    min-width: 220px;
    max-width: 48%;
    margin-bottom: 1rem;
    border-left: 5px solid #00b389;
    transition: box-shadow 0.2s, transform 0.2s;
}
.solution:hover {
    box-shadow: 0 4px 24px #00b38933;
    transform: translateY(-5px) scale(1.03);
}
.solution h3 {
    color: #008cff;
    margin-top: 0;
}
.slogan {
    font-size: 0.9rem;
    margin-top:-10px;
    padding-left:38px;
}
@media (max-width: 800px) {
    .services-list, .solutions-list {
        flex-direction: column;
        gap: 1rem;
    }
    .service, .solution {
        max-width: 100%;
    }
    nav {
        flex-direction: column;
        gap: 0.7rem;
    }
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0; top: 0; width: 100vw; height: 100vh;
    overflow: auto;
    background-color: rgba(0,0,0,0.45);
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 2rem 2rem 1.2rem 2rem;
    border-radius: 14px;
    width: 90%;
    max-width: 430px;
    position: relative;
    box-shadow: 0 4px 32px #00b38933;
    animation: popupOpen 0.3s;
}

@keyframes popupOpen {
    from {transform: scale(0.95);}
    to {transform: scale(1);}
}

.close {
    color: #008cff;
    position: absolute;
    top: 18px; right: 26px;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
}
.close:hover {color: #00b389;}