@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 {
  line-height: 1.6;
  margin: 0;
  padding: 0;
  color: #333;
  background-color: #fff;
}

main {
  max-width: 960px;
  margin: auto;
}

#intro h1 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

#intro p {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

#intro img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

#service {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    margin-top: 20px;
}

#service h1 {
    font-size: 32px;
    font-weight: bold;
    color: #000;
    margin-bottom: 36px;
}

#service ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 20px; 
    justify-items: center;
}

#service li {
    width: 100%;
    max-width: 350px; 
    background: #fff;
    border-radius: 10px; 
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    transition: transform 0.2s;
}

#service li:hover {
    transform: translateY(-5px);
}

#service li img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

#service li a {
    display: block;
    padding: 15px;
    text-decoration: none;
    font-size: 18px;
    color: #000;
    font-weight: bold;
    text-align: center;
}
#service li a:hover {
    color: #780000;
}

#faq {
  padding: 50px 0px;
  background-color: #fff;
  color: #000;
  margin-top: 10px;
}

.faq-content {
  display: flex;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  gap: 40px;
}

.faq-text {
  flex: 1 1 40%;
  padding-bottom: 20px;
}

.faq-text h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 30px;
}

.faq-text h3 {
    color: #780000;
    font-weight: bold;
  }

.faq-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.faq-text ul li {
  margin-bottom: 30px;
  border-bottom: 2px solid #000000;
  padding-bottom: 20px;
}

.faq-text ul li a:hover {
  color: #780000;
}

.faq-image {
  flex: 1 1 50%;
}

.faq-image img {
  width: 100%;
  border-radius: 10px;
  display: block;
}

footer {
  background-color: #fff;
  padding: 40px 0;
  font-family: sans-serif;
  margin-top: 20px;
}

#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;
}