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

body {
    font-family: Arial, sans-serif;
    background-color: #f5f7f9;
    color: #1c2b36;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    text-wrap: balance;
}

/* Header */
.header {
    padding: 20px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 40px;
}

/* Hero */
.hero {
    padding: 60px 0;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text {
    max-width: 550px;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.highlight {
    color: #2ea3f2;
}

.hero-text p {
    font-size: 16px;
    margin-bottom: 25px;
    color: #555;
}

/* Buttons */
.btn {
    display: inline-block;
    background-color: #2ea3f2;
    color: white;
    padding: 12px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    margin-bottom: 20px;
}

.btn-small {
    padding: 8px 16px;
}

/* Tags */
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tags span {
    background-color: #e6eef5;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
}

/* Image */
.hero-image img {
    max-width: 500px;
    width: 100%;
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

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