* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #f5f7fa;
    color: #222;
}

/* HEADER */
.header {
    height: 70px;
    background: #0f172a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
}

.menu a {
    color: #fff;
    text-decoration: none;
    margin-left: 25px;
    font-weight: 500;
    transition: color 0.3s;
}

.menu a:hover {
    color: #38bdf8;
}

/* TOP CONTENT */
.top-content {
    padding: 60px 40px;
    background: linear-gradient(135deg, #e0f2fe, #f8fafc);
}

.content-box {
    max-width: 1100px;
    margin: auto;
}

.content-box h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

.content-box p {
    font-size: 18px;
    color: #555;
    margin-bottom: 25px;
}

.highlights {
    list-style: none;
}

.highlights li {
    font-size: 16px;
    margin-bottom: 10px;
}

/* TURO FRAME */
.turo-frame {
    height: calc(100vh - 350px);
    border-top: 2px solid #e5e7eb;
}

.turo-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
}