/* General Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

/* Header */
header {
    background: #2c3e50;
    color: #fff;
    padding-top: 30px;
    min-height: 70px;
    border-bottom: #e8491d 3px solid;
    text-align: center;
}

header h1 {
    margin: 0;
    padding: 10px 0;
    font-size: 2.5em;
}

header p {
    margin: 0;
    padding-bottom: 20px;
    font-size: 1.2em;
}
/* *
 * Global Styles
 * Sets up a clean base with a professional font and consistent box model.
 */
/* * { */
    /* box-sizing: border-box
    margin: 0;
    padding: 0;
} */ */

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4; /* A soft background color for the body */
    color: #333; /* Default text color */
}

/* Navigation */
nav {
    background: #34495e;
    color: #fff;
    padding: 15px 0;
    text-align: center;
}

nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

nav ul li {
    display: inline;
    padding: 0 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1em;
}

nav ul li a:hover {
    color: #e8491d;
}

/* Sections */
section {
    padding: 20px 0;
    margin-bottom: 20px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

section h2 {
    text-align: center;
    color: #2c3e50;
    border-bottom: 2px solid #e8491d;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 2em;
}

.content-block {
    padding: 0 20px;
}

.content-block h3 {
    color: #e8491d;
}

.content-block ul {
    list-style-type: disc;
    padding-left: 20px;
}

.content-block ul li {
    margin-bottom: 10px;
}

/* Contact Form */
form {
  background-color: #fff;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 6px;
  max-width: 500px;
  margin-top: 10px;
}

form label {
  display: block;
  margin-top: 10px;
  font-weight: bold;
}

form input,
form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #bbb;
  border-radius: 4px;
  font-size: 1rem;
}

form button {
  margin-top: 15px;
  background-color: #4a90e2;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

form button:hover {
  background-color: #357ab8;
}

/* Footer */
footer {
    background: #2c3e50;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
}
/* CV Download Button */
.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #e8491d;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.btn:hover {
    background-color: #cf3d16;
}

