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

body {
    background: #f4f7fb;
    color: #10231f;
}

.header {
    background: white;
    padding: 18px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 6px 25px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 24px;
    font-weight: 900;
    color: #126b3f;
}

.header nav {
    display: flex;
    gap: 18px;
    align-items: center;
}

.header nav a {
    text-decoration: none;
    color: #1f2937;
    font-weight: 700;
}

.btn-outline {
    border: 2px solid #126b3f;
    padding: 10px 16px;
    border-radius: 10px;
    color: #126b3f !important;
}

.btn-login {
    background: #126b3f;
    padding: 12px 18px;
    border-radius: 10px;
    color: white !important;
}

.hero {
    min-height: 85vh;
    padding: 70px 8%;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 40px;
    background: linear-gradient(135deg, #e7f8ef, #ffffff, #eaf1ff);
}

.hero-text span {
    background: #dff7e8;
    color: #126b3f;
    padding: 8px 15px;
    border-radius: 30px;
    font-weight: 800;
}

.hero-text h1 {
    margin-top: 22px;
    font-size: 48px;
    line-height: 1.1;
    color: #08251f;
}

.hero-text p {
    margin-top: 20px;
    font-size: 18px;
    color: #4b5563;
    line-height: 1.7;
}

.hero-actions {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

.hero-actions a {
    text-decoration: none;
    background: #126b3f;
    color: white;
    padding: 14px 20px;
    border-radius: 10px;
    font-weight: 800;
}

.hero-actions .secondary {
    background: #0b5ed7;
}

.hero-card {
    background: white;
    padding: 35px;
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.15);
}

.hero-card h3 {
    font-size: 28px;
    margin-bottom: 18px;
    color: #08251f;
}

.hero-card p {
    padding: 12px;
    background: #f1f5f9;
    margin: 10px 0;
    border-radius: 10px;
    font-weight: 700;
}

.services {
    padding: 70px 8%;
    text-align: center;
}

.services h2 {
    font-size: 36px;
    margin-bottom: 35px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

.service-card h3 {
    margin-bottom: 12px;
}

.service-card p {
    color: #566274;
    line-height: 1.6;
}

footer {
    background: #08251f;
    color: white;
    text-align: center;
    padding: 25px;
}

.login-body {
    min-height: 100vh;
    background: linear-gradient(135deg, #08251f, #126b3f, #0b5ed7);
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-wrapper {
    width: 92%;
    max-width: 1100px;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 430px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}

.login-info {
    background: #08251f;
    color: white;
    padding: 60px;
}

.login-info h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

.login-info p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.login-info a {
    color: #a7f3d0;
    text-decoration: none;
    font-weight: 800;
}

.login-card {
    padding: 45px;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.login-card h2 {
    color: #08251f;
    margin-bottom: 5px;
}

.login-card label {
    font-weight: 700;
}

.login-card input {
    padding: 13px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
}

.login-card button {
    margin-top: 10px;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background: #126b3f;
    color: white;
    font-weight: 900;
    cursor: pointer;
}

.login-card button:hover {
    background: #0e5131;
}

.login-card a {
    color: #126b3f;
    font-weight: 800;
}

.alert-error {
    background: #ffe0e0;
    color: #b00020;
    padding: 12px;
    border-radius: 10px;
    font-weight: 700;
}

.alert-ok {
    background: #dff7e8;
    color: #126b3f;
    padding: 12px;
    border-radius: 10px;
    font-weight: 700;
}