.top-bar {
    background: #0d5c63;
    color: #fff;
    padding: 8px 0;
    font-size: 13px;
}

.top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-header {
    background: #fff;
    border-bottom: 1px solid #eee;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-menu li {
    list-style: none;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}
.hero {
    background: #5f6f75;
    padding: 120px 0;
    color: #fff;
}

.hero-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
}

.hero-left {
    width: 50%;
}

.hero-left h1 {
    font-size: 48px;
    margin-bottom: 25px;
}

.hero-left p {
    line-height: 1.6;
    margin-bottom: 25px;
}

.btn-primary {
    background: #1abc9c;
    padding: 15px 35px;
    border-radius: 40px;
    color: #fff;
    text-decoration: none;
}

.hero-right {
    width: 420px;
}

.form-box {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.form-box h3 {
    margin-bottom: 25px;
    color: #333;
}

.form-box input {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.apply-btn {
    width: 100%;
    padding: 14px;
    background: #0d5c63;
    border-radius: 30px;
    border: none;
    color: #fff;
}

