/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Color Scheme */
:root {
  --dark-blue: #0a1f44;
  --white: #ffffff;
  --black: #111111;
  --accent: #007bff;
  --light-blue: #2262d2;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--dark-blue);
  color: var(--white);
  line-height: 1.6;
}

/* Header */
header {
  background-color: var(--black);
  padding: 1rem 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

header .container {
  width: 90%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header h1 {
  color: var(--white);
  font-size: 1.8rem;
  letter-spacing: 1px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--accent);
}

/* Hero Section */
#hero {
  text-align: center;
  padding: 3rem 1rem;
  background-color: var(--light-blue);
}

.profile-pic {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--white);
  margin-bottom: 1rem;
}

#hero h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

#hero p {
  color: #e0e0e0;
  font-size: 1rem;
}

/* Content Sections */
.content-section {
  width: 80%;
  margin: 2rem auto;
  background-color: #2262d2;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.content-section h2 {
  border-bottom: 2px solid var(--accent);
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.content-section p, .content-section ul {
  font-size: 1rem;
  color: #eaeaea;
}

ul {
  list-style-type: square;
  margin-left: 1.5rem;
}

/* Footer */
footer {
  text-align: center;
  background-color: var(--black);
  padding: 1.5rem 0;
  font-size: 0.9rem;
}

footer a {
  color: var(--accent);
  text-decoration: none;
  margin: 0 0.5rem;
}

footer a:hover {
  text-decoration: underline;
}
.bottom-heart {
    max-width: 100px;
    height: auto;
}
