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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

header {
    background: #4c92fc;
    padding: 1rem 0;
    text-align: center;
    color: #fff;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.text-box {
    max-width: 100%;
}

.hero h1 {
    font-size: 2.5rem;
    color: #333;
}

.hero h2 {
    font-size: 1.5rem;
    color: #555;
    margin-bottom: 1rem;
}

.button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #4c92fc;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.button.primary:hover {
    background-color: #357ae8;
}

.image-wrapper {
    max-width: 45%;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.about {
    padding: 2rem;
    background: #fff;
    margin-top: 2rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.about h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #4c92fc;
}

footer {
    text-align: center;
    padding: 1rem;
    background: #333;
    color: #fff;
    position: fixed;
    bottom: 0;
    width: 100%;
}
