:root {
    --primary-blue: #2c5a7f;
    --text-dark: #333333;
    --bg-light: #f4f7fb;
    --white: #ffffff;
    --accent-gold: #d4af37;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    padding-top: 80px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--white);
    padding: 10px 8%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
}

.nav-logo {
    height: 75px;
    width: auto;
    object-fit: contain;
    cursor: pointer;
    image-rendering: -webkit-optimize-contrast;
}

.logo h2 {
    color: var(--primary-blue);
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 1px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-blue);
}

.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 8%;
    background-color: var(--bg-light);
    min-height: 70vh;
}

.hero-content {
    flex: 1;
    padding-right: 50px;
}

.hero-content h1 {
    font-size: 50px;
    color: var(--primary-blue);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 30px;
}

.benefits {
    list-style: none;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 2.2;
    font-size: 16px;
}

.form-container {
    flex: 0.6;
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-top: 5px solid var(--primary-blue);
}

.form-container h3 {
    text-align: center;
    color: var(--primary-blue);
    font-size: 26px;
}

.form-subtitle {
    text-align: center;
    margin-bottom: 25px;
    font-size: 14px;
    color: #666;
}

.form-container form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-container input {
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    outline: none;
}

.form-container input:focus {
    border-color: var(--primary-blue);
}

.submit-btn {
    padding: 15px;
    background-color: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #1a3c57;
}

.toggle-text {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
}

.toggle-text a {
    color: var(--primary-blue);
    font-weight: bold;
    text-decoration: none;
}

.dashboard {
    padding: 80px 8%;
    background-color: var(--white);
}

.dashboard-header {
    text-align: center;
    margin-bottom: 50px;
}

.dashboard-header h2 {
    color: var(--primary-blue);
    font-size: 36px;
    margin-bottom: 10px;
}

.dashboard-header p {
    color: #666;
    font-size: 18px;
}

.dashboard-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.dashboard-card {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 40px;
    width: 45%;
    min-width: 300px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #e1e8f0;
}

.dashboard-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.dashboard-card h3 {
    color: var(--primary-blue);
    font-size: 24px;
    margin-bottom: 15px;
}

.dashboard-card p {
    color: #555;
    margin-bottom: 25px;
    font-size: 15px;
    line-height: 1.5;
}

.service-list {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
    padding-left: 20px;
}

.service-list li {
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-dark);
    position: relative;
}

.service-list li::before {
    content: "→";
    color: var(--primary-blue);
    position: absolute;
    left: -20px;
}

.action-btn {
    padding: 12px 25px;
    background-color: var(--white);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}

.application-section {
    padding: 80px 8%;
    background-color: var(--bg-light);
    min-height: 100vh;
}

.application-section label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.application-section input[type="file"] {
    width: 100%;
    padding: 10px;
    border: 1px dashed var(--primary-blue);
    background: var(--white);
    border-radius: 6px;
    cursor: pointer;
}

.application-section input[type="file"]::file-selector-button {
    background-color: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    margin-right: 15px;
    transition: background 0.3s ease;
}

.application-section input[type="file"]::file-selector-button:hover {
    background-color: #1a3c57;
}