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

body {
    font-family: 'Lato', Arial, sans-serif;
    background-color: white;
    min-height: 100vh;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.content {
    text-align: center;
    max-width: 100%;
}

.centered-image {
    max-width: 40%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
}

.centered-text {
    font-size: 18px;
    color: #08812d !important;
    line-height: 1.5;
    margin-top: 20px;
    font-weight: 700;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .centered-text {
        font-size: 16px;
        margin-top: 15px;
    }
    
    .centered-image {
        margin-bottom: 15px;
    }
} 