body {
    margin: 0;
    font-family: "Helvetica Neue", Arial, sans-serif;
    background: #f3f4f6;
    color: #111111;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 48px;
    background: transparent;
}

.logo {
    font-size: 22px;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 24px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #111;
    font-size: 14px;
}

.contact-btn {
    border: 2px solid #ef2b0a;
    padding: 8px 14px;
    color: #ef2b0a;
    border-radius: 4px;
}

/* HERO */
.hero {
    display: flex;
    justify-content: space-between;
    padding: 80px 60px;
}

.hero-left {
    max-width: 600px;
}

.hero-left h1 {
    font-size: 64px;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-left p {
    font-size: 18px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 32px;
}

.primary-btn {
    background: black;
    color: white;
    padding: 14px 24px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
}

/* RIGHT VISUAL (abstract Abridge-style block) */
.hero-right {
    position: relative;
    width: 400px;
    height: 400px;
}

.shape {
    width: 100%;
    height: 100%;
    background: #ef2b0a;
    border-radius: 40% 60% 50% 70%;
    opacity: 0.9;
}

.content {
    max-width: 800px;
    margin: 80px auto;
    padding: 0 20px;
}

.content h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.content h2 {
    margin-top: 40px;
    font-size: 24px;
}

.content p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 16px;
}

.content ul {
    margin-top: 16px;
    color: #4b5563;
}
