* {
      box-sizing: border-box;
}

body {
      margin: 0;
      font-family:'Times New Roman', Times, serif;
      background-color: #fafbfc;
      color: #2c3e50;
      line-height: 1.6;
}

header {
      background: #e8e8e8;
      color: white;
      text-align: center;
      padding: 20px;
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

header h1 {
      margin: 0 0 10px 0;
      font-size: 2.5rem;
      font-weight: 700;
      letter-spacing: -0.5px;
}

header p {
      margin: 0;
      font-size: 1.1rem;
      font-weight: 300;
      opacity: 0.95;
}

#hero {
      display: flex;
      align-items: center;
      gap: 40px;
      background-color: #e8e8e8;
      padding: 50px;
      border-radius: 8px;
      margin: 30px auto;
      max-width: 1000px;
      width: 90%;
}

.hero-text {
      flex: 1;
      font-family: 'Times New Roman', serif;
}

.hero-text h1 {
      margin: 0 0 15px 0;
      font-size: 2.5rem;
      font-weight: 700;
      color: #2c3e50;
}

.hero-text p {
      margin: 0;
      font-size: 1.1rem;
      color: #34495e;
}

.hero-photo {
      flex: 1;
      text-align: center;
}

.hero-photo figure {
      margin: 0;
}

.hero-photo img {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

nav ul {
      list-style: none;
      padding: 20px 0 0 0;
      margin: 0;
      display: flex;
      justify-content: flex-start;
      gap: 30px;
}

nav a {
      color: #2c3e50;
      text-decoration: none;
      font-weight: 500;
      transition: opacity 0.3s ease;
}

nav a:hover {
      opacity: 0.8;
}

.about-link {
      background-color: #B0C4DE;
      padding: 10px 15px;
      border-radius: 6px;
      display: inline-block;
      color: #2c3e50 !important;
}

.about-link:hover {
      opacity: 0.9;
}

.container {
      width: 90%;
      max-width: 900px;
      margin: 40px auto;
}

.section {
      background-color: white;
      padding: 35px;
      margin-bottom: 30px;
      border-radius: 8px;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
      transition: box-shadow 0.3s ease;
}

.section:hover {
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.section h2 {
      color: #2c3e50;
      margin: 0 0 20px 0;
      font-size: 1.8rem;
      font-weight: 600;
}

.about-me {
      background-color: lightsteelblue;
      padding: 35px;
      margin: 80px auto 30px auto;
      border-radius: 8px;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
      max-width: 600px;
}

.about-me h2 {
      color: #2c3e50;
      margin: 0 0 20px 0;
      font-size: 1.8rem;
      font-weight: 600;
}

ul {
      padding-left: 20px;
      margin: 0;
}

li {
      margin-bottom: 12px;
      color: #34495e;
}

.interest-image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      margin-top: 15px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

footer {
      text-align: center;
      padding: 30px 20px;
      color: #7f8c8d;
      font-size: 0.95rem;
      border-top: 1px solid #ecf0f1;
      margin-top: 40px;
}

@media (max-width: 600px) {
      header h1 {
            font-size: 2rem;
      }

      header p {
            font-size: 1rem;
      }

      nav ul {
            flex-wrap: wrap;
            gap: 15px;
      }

      .container {
            margin: 30px auto;
      }

      .section {
            padding: 25px;
            margin-bottom: 20px;
      }

      .section h2 {
            font-size: 1.5rem;
      }
}