body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: black;
    font-size: 14px;
    min-height: 100vh;

    background: linear-gradient(to top,
            #2f7a2f 0%,
            #5fae3c 50%,
            #94CB3A 100%);
}

.container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 20px;
}

.logo {
    text-align: center;
    margin-bottom: 50px;
}

.logo img {
    max-width: 200px;
}

.layout {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.left {
    flex: 2;
}

.right {
    flex: 1;
}

h2 {
    padding-bottom: 5px;
    color: black;
    font-weight: 400;
    margin-top: 0;
}

h3 {
    font-weight: 600;
}

p {
    line-height: 1.6;
    margin: 0
}

ul {
    padding-left: 20px;
}

li {
    margin-bottom: 6px;
}

a {
    color: #1b5e20;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.box {
    background: rgba(255, 255, 255, 0.85);
    padding: 18px;
    margin-bottom: 15px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(4px);

}

.services-title {
    font-size: 24px;
    margin-bottom: 15px;
    color: white;
    font-weight: 500;
}

@media (max-width: 768px) {
    .layout {
        flex-direction: column;
    }
}
