
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #005f99;
    color: white;
    padding: 15px 50px;
}

.logo {
    font-size: 1.5em;
    font-weight: bold;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #f0db4f;
}

.username {
    font-weight: bold;
    font-size: 1em;
}


.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100vh; 
    background: linear-gradient(to right, #e6f7ff, #ffffff);
    padding: 0 80px;
}

.hero-left {
    flex: 1;
    padding-right: 30px;
}

.hero-left h1 {
    font-size: 3em;
    color: #004d80;
    margin-bottom: 20px;
}

.hero-left p {
    font-size: 1.1em;
    color: #333;
    line-height: 1.6;
    margin-bottom: 30px;
}

.hero-left button {
    background-color: #005f99;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

.hero-left button:hover {
    background-color: #004070;
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-right img {
    max-width: 90%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}


.content-section {
    padding: 60px 80px;
    line-height: 1.7;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #005f99;
    color: white;
}
