:root {
    --light-color: #FFFFFF;
    --dark-color: #01257D;
    --accent-color: #00AB6B;
    --text-color: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
}

header {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo img {
    height: 50px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color: var(--light-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--accent-color);
}

main {
    margin-top: 80px;
}

section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

h1, h2, h3 {
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    color: var(--dark-color);
}

h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--accent-color);
    color: var(--light-color);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #008c56;
}

.service-grid, .solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-item, .solution-item {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 5px;
    text-align: center;
    transition: transform 0.3s ease;
}

.service-item:hover, .solution-item:hover {
    transform: translateY(-5px);
}

.service-item i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.solution-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.client-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.client-grid img {
    width: 100%;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.client-grid img:hover {
    filter: grayscale(0%);
}

.testimonial-slider {
    margin-top: 2rem;
}

.testimonial {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.testimonial cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    
    font-weight: 500;
}

#counters {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 4rem 2rem;
}

.counter {
    text-align: center;
    margin: 1rem;
}

.counter h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.counter .count {
    font-size: 3rem;
    font-weight: 700;
}

.faq-item {
    margin-bottom: 2rem;
}

.faq-item h3 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

form {
    display: grid;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

input, textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

button[type="submit"] {
    background-color: var(--accent-color);
    color: var(--light-color);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #008c56;
}

footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--light-color);
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    nav ul {
        display: none;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .service-grid, .solution-grid {
        grid-template-columns: 1fr;
    }

    #counters {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
    }
}