body {
  font-family: 'Raleway', sans-serif;
  margin: 40px;
  background-color: #fff;
  color: #333;
  font-size: 18px;
}

h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
}


h2.section-title {
  font-size: 30px;
  font-weight: 700;
  margin-top: 50px;
  margin-bottom: 20px;
  border-bottom: 2px solid #000;
  padding-bottom: 10px;
}


.header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.photo {
  width: 150px;
  height: 150px;
  background-color: #ccc; 
  flex-shrink: 0;
}

a {
  text-decoration: underline; /* по умолчанию подчеркивание */
  color: blue; /* цвет по умолчанию */
  transition: color 0.3s, text-decoration 0.3s;
}
a:hover {
  text-decoration: none; /* без подчеркивания при наведении */
}
a:active {
  color: red; /* красный при нажатии */
}

.contact-info {
  flex: 1;
}

.section {
  margin-top: 40px;
}

ul {
    list-style: circle inside; 
    padding-left: 0;
    margin-top: 0;
}

li {
  margin-top: 0;
}


.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 2px solid #000;
}

.footer img {
  height: 50px;
}
