@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
*{
  margin:0;
  padding:0;
  }

body {
  font-family: Inter;
}
header {
  background-color: white;
  padding: 20px 40px;
}
  
#header {
  transition: top 0.4s ease;
}

#headerInner {
  display: flex;
  justify-content: space-between;
  align-items: center;
} 

nav ul {
  list-style: none;
  display: flex;
  gap: 40px;
  align-items: center;
}

nav ul li a {
  text-decoration: none;
  color: black;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #780000;
}

nav ul li .button {
  background-color: #780000;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  transition: background-color 0.3s;
}

nav ul li .button:hover {
  background-color: #ffffff;
}

body {
  font-family: Inter;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  color: #333;
  background-color: #fff;
}

main {
  max-width: 960px;
  margin: auto;
}

.slide img{
    width: 100%;
    border-radius: 12px;
    display: block;
  }

#intro h1 {
  font-size: 36px;
  font-weight: 500;
  font-style: italic;
  margin-top: 30px;
  margin-bottom: 30px;
  justify-self: center;
}

#intro::after {
  content: "";
  display: block;
  width: 90%;
  height: 2px;
  background: #000;
  margin: 15px auto;
}

#intro2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  margin: 30px auto;
  padding: 0 20px;
}

#intro2 h1 {
  color: #780000;
  font-size: 30px;
  font-weight: bold;
  white-space: nowrap;
  margin: 0; 
}

#intro2 p {
  font-size: 18px;
  line-height: 1.6;
  max-width: 600px;
}

#we {
  padding: 50px 20px;
  background: #fff;
}

.we-list {
  display: flex;
  flex-direction: column;
  gap: 50px;
  max-width: 1100px;
  margin: auto;
}

.we-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.we-text {
  flex: 1;
  min-width: 280px;
}

.we-text h1 {
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 10px;
}

.we-text p {
  font-size: 16px;
  color: #444;
  margin-bottom: 15px;
}

.button {
  background-color: #eee;
  color: #000;
  padding: 10px 18px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  display: inline-block;
  transition: background 0.3s ease;
}

.button:hover {
  background-color: #ccc;
}

.we-image {
  flex: 1;
  min-width: 280px;
}

.we-image img {
  width: 100%;
  border-radius: 10px;
  display: block;
}

#innos {
  max-width: 960px;
  padding-top: 50px;
  font-family: sans-serif;
  color: #333;
  position: relative;
}

.innos-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.innos-header h2 {
  font-size: 30px;
  font-weight: 700;
}

.innos-header .all-innos {
  font-size: 14px;
  font-weight: bold;
  color: #780000;
  text-decoration: none;
}

.innos-header .all-innos:hover {
  color: #c64646;
}

.innos-slider {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  white-space: nowrap;
  padding-bottom: 20px;
  min-width: 960px;
}

.innos-list {
  list-style: none;
  display: inline-flex;
  gap: 30px;
  padding: 0;
  margin: 0;
}

.innos-list li {
  width: 465px;
  vertical-align: top;
}

.innos-list li img {
  width: 100%;
  border-radius: 10px;
}

.innos-list h3 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  margin-top: 15px;
  max-width: 465px;
}

.innos-list p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-top: 10px;
  max-width: 465px;
}

.innos-slider::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.innos-slider::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.innos-slider::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

.innos-slider::-webkit-scrollbar-thumb:hover {
  background: #555;
}

footer {
  background-color: #fff;
  padding: 40px 0;
  font-family: sans-serif;
  margin-top: 40px;
}

#download-background {
  background-color: #f7f7f7;
  width: 100%;
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#download {
  max-width: 960px;
  width: 100%;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: sans-serif;
}

#download h2 {
  font-size: 28px;
  font-weight: bold;
  margin: 0;
}

#download .button {
  background-color: black;
  color: white;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

#download .button:hover {
  background-color: #333;
}

#footerInner {
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-top: 30px;
  margin-left: 150px;
}

#footerLeft {
  flex: 1 1 300px;
}

#footerLogo img {
  max-width: 300px;
}

.social-block {
  margin-top: 20px;
  margin-left: 20px;
}

.social-block p {
  color: #999;
  margin-bottom: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.social-icons {
  display: flex;
  gap: 16px;
}

.buttons-icon {
  font-size: 22px;
  transition: color 0.3s;
}

.facebook i { color: #999; }
.linkedin i { color: #999; }
.youtube i { color: #999; }
.instagram i { color: #999; }

.buttons-icon:hover i {
  filter: brightness(0.8);
  cursor: pointer;
}

#footerRight {
  display: flex;
  flex: 2 1 600px;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-column {
  min-width: 150px;
}

.footer-column h2 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 10px;
}

.footer-column a {
  text-decoration: none;
  color: #444;
  font-size: 14px;
}

.footer-column a:hover {
  color: #000;
}

#footerCopyright {
  text-align: right;
  padding: 10px 20px;
  margin-right: 150px;
}

#footerCopyright p {
  display: inline-block;
  background-color: #d9d9d9;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
}