body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f8fbff;
    color: #1e2a38;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: #ffffff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

header .logo {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 20px;
}

header .logo img {
    height: 40px;
    margin-right: 10px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: #1e2a38;
    font-weight: bold;
}

.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 50px;
    background: linear-gradient(135deg, #e6f2ff, #cce6ff);
}

.hero-text {
    max-width: 50%;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 20px;
}

.hero .btn {
    background-color: #007bff;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}

.hero .btn:hover {
    background-color: #0056b3;
}

.hero-image img {
    width: 400px;
    height: auto;
}

.offer {
    padding: 60px 50px;
    text-align: center;
}

.offer-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.offer-item {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    width: 250px;
}

.offer-item img {
    height: 60px;
    margin-bottom: 20px;
}

.contact {
    padding: 60px 50px;
    text-align: center;
    background-color: #e6f2ff;
}

.contact h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.contact p {
    font-size: 18px;
    margin-bottom: 20px;
}

.contact .contact-btn {
    background-color: #7289da;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}

.contact .contact-btn:hover {
    background-color: #5b6eae;
}

footer {
    background-color: #1e2a38;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}
