* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #0A8754;
    --light-green: #E6F5EF;
    --white: #FFFFFF;
    --dark-text: #333333;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--white);
    color: var(--dark-text);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    line-height: 1.6; /* Added from existing code */
}

.container {
    width: 100%;
    max-width: 1440px;
    padding: 2rem;
    margin: 0 auto; /* Added from existing code */
    min-height: 100vh; /* Added from existing code */
    display: flex; /* Added from existing code */
    flex-direction: column; /* Added from existing code */
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

header {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: #0D8A3F;
}

.gear {
    animation: spin 20s linear infinite;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
}

.hero {
    text-align: center;
    margin-bottom: 60px;
}

.message-container {
    text-align: center;
    max-width: 800px;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    position: relative;
}

h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: #0D8A3F;
}

.accent-line {
    height: 4px;
    width: 100px;
    background-color: var(--primary-green);
    margin: 0 auto;
}

.hero p {
    font-size: 1.5rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

.automation-graphics {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
}

.graphic-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.graphic-item:hover {
    transform: translateY(-10px);
}

.graphic-item p {
    margin-top: 10px;
    font-weight: 500;
    color: #0D8A3F;
}

.image-container {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(10, 135, 84, 0.15);
    position: relative;
}

.main-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Add a subtle green overlay to the image */
.image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 135, 84, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

footer {
    text-align: center;
    padding: 30px 0;
    margin-top: auto;
}

.animated-gear {
    margin-bottom: 20px;
}

.rotating-gear {
    animation: spin 10s linear infinite;
    transform-origin: center;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Responsive design */
@media (min-width: 768px) {
    .content {
        flex-direction: row;
        align-items: center;
        gap: 4rem;
    }
    
    .message-container {
        flex: 1;
        text-align: left;
    }
    
    .accent-line {
        margin: 0;
    }
    
    .image-container {
        flex: 1;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .automation-graphics {
        gap: 20px;
    }
    
    .graphic-item svg {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 767px) {
    h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .automation-graphics {
        flex-direction: column;
        align-items: center;
    }
    
    .container {
        padding: 1.5rem;
    }
}
