body {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    background-color: #f4f4f4;
    color: #111;
    line-height: 1.6;
}

.container {
    width: 85%;
    max-width: 1000px;
    margin: auto;
}

header {
    background: #fff;
    padding: 40px 0 20px 0;
    border-bottom: 1px solid #ddd;
    text-align: center;
}

header h1 {
    font-size: 48px;
    margin: 0;
    font-weight: normal;
}

nav {
    margin-top: 20px;
}

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #111;
    font-size: 16px;
}

nav a:hover {
    text-decoration: underline;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 0;
}

.hero-text {
    width: 50%;
}

.hero-text h2 {
    font-size: 32px;
    font-weight: normal;
}

.hero-images {
    width: 45%;
    display: flex;
    gap: 10px;
}

.hero-images img {
    width: 50%;
    height: auto;
}

.section {
    padding: 60px 0;
    background: #fff;
    margin-bottom: 20px;
}

footer {
    text-align: center;
    padding: 30px;
    font-size: 14px;
    background: #fff;
    border-top: 1px solid #ddd;
}
