/* Reset some default styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: Open Sans, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
    box-sizing: border-box;
    background-color: #f4f4f9;
    color: #333;
    height: 100vh;
}

/* Main container styles */
.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    height: 100%;
}

/* Responsive image styling */
.responsive-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* Main heading */
h1 {
    font-size: 2.5rem;
    margin: 0;
    color: #0073e6;
}

/* Tagline styling */
.tagline {
    font-size: 1.2rem;
    margin-top: 10px;
    color: #555;
    max-width: 600px;
}

h1 {
    font-size: 2.5rem; /* Base font size for the entire h1 */
    font-weight: bold;
    color: #333;
}

.highlight {
    font-size: 3rem; /* Make the AI part larger */
    color: #0073e6; /* Optional: change color for emphasis */
}

/* Responsive adjustments */
@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }
    .tagline {
        font-size: 1rem;
    }
}
