* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #FFFFFF;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

.container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.center-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.logo {
    max-width: 200px;
    height: auto;
    display: block;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: #007BFF;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #0056B3;
}

/* Hidden SEO Keywords Background - White color */
.hidden-keywords {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    font-size: 12px;
    color: #FFFFFF;
    line-height: 1.4;
    text-align: justify;
    z-index: -1;
    opacity: 1;
}

.hidden-keywords p {
    margin-bottom: 10px;
}

/* SEO Content Section */
.seo-content {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    font-size: 11px;
    color: #CCCCCC;
    line-height: 1.6;
    text-align: justify;
}

.seo-content p {
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .logo {
        max-width: 150px;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 16px;
    }
    
    .seo-content {
        font-size: 10px;
        padding: 30px 15px;
    }
}

