*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: #333333;
  background-color: #f8f9fa;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  color: #4a90e2;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.site-header {
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 10;
}
.site-header .logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.site-header .logo-container h1 {
  font-size: 1.5rem;
  color: #2c3e50;
}
.site-header .main-nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.site-header .main-nav ul li a {
  font-weight: 500;
  padding: 0.5rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}
.site-header .main-nav ul li a:hover {
  border-bottom-color: #4a90e2;
  color: #4a90e2;
}

.section {
  padding: 4rem 0;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.intro-section {
  background: linear-gradient(135deg, #4a90e2 0%, #6ab0ff 100%);
  color: #ffffff;
  text-align: center;
}
.intro-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}
.intro-section .intro-text {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}
.intro-section .hero-image {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tips-section {
  background: #ffffff;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.tips-grid li {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #4a90e2;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tips-grid li:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.forms-section {
  background: #f8f9fa;
}

.forms-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}
.forms-wrapper .form-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.forms-wrapper .form-card h3 {
  margin-bottom: 1rem;
  color: #2c3e50;
}
.forms-wrapper .form-card form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.forms-wrapper .form-card form label {
  font-weight: 500;
  color: #333333;
}
.forms-wrapper .form-card form input {
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.forms-wrapper .form-card form input:focus {
  outline: none;
  border-color: #4a90e2;
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.2);
}
.forms-wrapper .form-card form button {
  background-color: #4a90e2;
  color: #ffffff;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.forms-wrapper .form-card form button:hover {
  background-color: #357abd;
  transform: translateY(-2px);
}
.forms-wrapper .form-card form button:active {
  transform: translateY(0);
}
.forms-wrapper .form-card form button:focus-visible {
  outline: 3px solid rgba(74, 144, 226, 0.5);
  outline-offset: 2px;
}
.forms-wrapper .form-card form button {
  margin-top: 0.5rem;
}

.site-footer {
  background: #2c3e50;
  color: #ffffff;
  text-align: center;
  padding: 2rem 0;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .site-header .logo-container {
    margin-bottom: 0;
  }
  .site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
  }
  .forms-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .container {
    padding: 0 4rem;
  }
  .intro-section h2 {
    font-size: 2.8rem;
  }
}
@media (max-width: 480px) {
  .main-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .site-header {
    text-align: center;
  }
}

/*# sourceMappingURL=styles.css.map */
