@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  font-family: "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

section {
  scroll-margin-top: 100px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  z-index: 1000;
  padding: 1rem;
  transition: all 0.3s ease;
}
header .header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}
header .logo {
  display: block;
  width: 20%;
  font-size: 1.8rem;
  font-weight: 300;
  color: #2c5282;
  letter-spacing: 0.1em;
}
@media (max-width: 1024px) {
  header .logo {
    padding-right: 10%;
    width: 75%;
  }
}
header .logo a {
  display: flex;
  align-content: center;
  width: 100%;
  height: 100%;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 3rem;
  margin: 0;
  padding: 0;
}
@media (max-width: 768px) {
  nav ul {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
    border-top: 1px solid rgba(44, 82, 130, 0.1);
    flex-direction: column;
    gap: 0;
    padding: 2rem;
  }
  nav ul.active {
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  nav li {
    margin-bottom: 1.5rem;
  }
}
nav a {
  text-decoration: none;
  color: #333;
  font-weight: 400;
  font-size: 0.95rem;
  position: relative;
  transition: color 0.3s ease;
}
@media (min-width: 769px) {
  nav a:hover {
    color: #2c5282;
  }
  nav a:hover::after {
    width: 100%;
  }
  nav a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2c5282;
    transition: width 0.3s ease;
  }
}
@media (max-width: 768px) {
  nav a {
    font-size: 1.2rem;
    display: block;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(44, 82, 130, 0.1);
  }
  nav a:hover {
    color: #2c5282;
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 30px;
  height: 30px;
  justify-content: space-between;
  padding: 5px 0;
}
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
}
.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: #333;
  border-radius: 1px;
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-video .video-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}
.hero-video .video-player.active {
  opacity: 1;
}
.hero-video .video-player.fade-out {
  opacity: 0;
}
.hero-video .video-player.fade-in {
  opacity: 1;
}
.hero-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-video img.show {
  opacity: 1;
}
.hero .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(44, 82, 130, 0.6), rgba(74, 144, 226, 0.4), rgba(123, 184, 111, 0.2));
  z-index: 2;
}
.hero-content {
  text-align: center;
  color: #fff;
  z-index: 10;
  position: relative;
  max-width: 900px;
  padding: 0 2rem;
}
.hero-title {
  font-size: 4rem;
  font-weight: 200;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeInUp 1.5s ease-out 0.5s forwards;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}
.hero-subtitle {
  font-size: 2rem;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeInUp 1.5s ease-out 1s forwards;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}
.hero-description {
  font-size: 1.3rem;
  line-height: 1.8;
  margin-bottom: 4rem;
  opacity: 0;
  animation: fadeInUp 1.5s ease-out 1.5s forwards;
  font-weight: 300;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.video-controls {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 11;
}
.video-controls .video-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}
.video-controls .video-indicator:hover {
  border-color: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}
.video-controls .video-indicator.active {
  background: #fff;
  border-color: #fff;
}

.cta-button {
  display: inline-block;
  padding: 1.5rem 4rem;
  background: linear-gradient(135deg, #4a90e2, #7bb86f);
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  transition: all 0.4s ease;
  opacity: 0;
  animation: fadeInUp 1.5s ease-out 2s forwards;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}
.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}
.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.cta-button:hover::before {
  left: 100%;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(80px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.section-title {
  font-size: 3.5rem;
  font-weight: 200;
  margin-bottom: 2rem;
  color: #2c5282;
  letter-spacing: 0.05em;
}

.section-subtitle {
  font-size: 1.3rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.8;
}

.services {
  padding: 10rem 0;
  background: #fafafa;
}
.services-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
}
.services .section-intro {
  text-align: center;
  margin-bottom: 8rem;
}

.service-section {
  margin-bottom: 12rem;
  position: relative;
  /* 奇数番目のサービス（01、03）: テキスト左、画像右 */
  /* 偶数番目のサービス（02、04）: 画像左、テキスト右 */
}
.service-section:nth-child(odd) .service-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 6rem;
  align-items: center;
}
.service-section:nth-child(odd) .slide-in-left {
  order: 1;
}
.service-section:nth-child(odd) .slide-in-right {
  order: 2;
}
.service-section:nth-child(even) .service-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 6rem;
  align-items: center;
}
.service-section:nth-child(even) .slide-in-left {
  order: 1;
}
.service-section:nth-child(even) .slide-in-right {
  order: 2;
}
.service-content {
  padding: 2rem 0;
}
.service-number {
  font-size: 6rem;
  font-weight: 100;
  color: rgba(44, 82, 130, 0.1);
  line-height: 1;
  margin-bottom: 1rem;
}
.service-title {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 2rem;
  color: #2c5282;
  letter-spacing: 0.02em;
}
.service-description {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 3rem;
  line-height: 1.8;
  font-weight: 300;
}
.service-features {
  list-style: none;
  padding: 0;
}
.service-features li {
  padding: 1rem 0;
  font-size: 1.1rem;
  color: #666;
  border-bottom: 1px solid #eee;
  position: relative;
  padding-left: 2rem;
  font-weight: 300;
}
.service-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #7bb86f;
  border-radius: 50%;
}
.service-image {
  width: 100%;
  height: 450px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}
.service-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(44, 82, 130, 0.1), rgba(123, 184, 111, 0.1));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}
.service-image:hover img {
  transform: scale(1.05);
}
.service-image:hover::before {
  opacity: 1;
}

.testimonials {
  padding: 10rem 0;
  position: relative;
  overflow: hidden;
}
.testimonials-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  z-index: 1;
}
.testimonials-bg .parallax-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  will-change: transform;
}
.testimonials-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.85) 0%, rgba(118, 75, 162, 0.85) 50%, rgba(44, 82, 130, 0.9) 100%);
  z-index: 2;
}
.testimonials-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
  position: relative;
  z-index: 3;
  color: #fff;
}
.testimonials-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6rem;
  margin-top: 6rem;
}
.testimonials .section-title {
  color: #fff;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.testimonial {
  padding: 3rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}
.testimonial:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.testimonial-text {
  font-size: 1.3rem;
  font-style: italic;
  margin-bottom: 2rem;
  line-height: 1.8;
  font-weight: 300;
  color: #fff;
}
.testimonial-author {
  font-weight: 400;
  font-size: 1rem;
  opacity: 0.9;
  color: #fff;
}
.testimonial-large .testimonial-text {
  font-size: 1.6rem;
}
.testimonial-large .testimonial-author {
  font-size: 1.1rem;
}

.company {
  padding: 8rem 0;
}
.company-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
}
.company-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  margin-top: 4rem;
}
.company-main-info {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.company-basic h3 {
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  color: #2c5282;
  letter-spacing: 0.02em;
}
.company-basic-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.company-hours h3 {
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 1rem;
  color: #2c5282;
  letter-spacing: 0.02em;
}
.company-hours p {
  font-size: 1.1rem;
  color: #555;
  font-weight: 300;
}
.company-details {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.company-services h3 {
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  color: #2c5282;
  letter-spacing: 0.02em;
}
.company-partners h3 {
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 1rem;
  color: #2c5282;
  letter-spacing: 0.02em;
}
.company-partners p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  font-weight: 300;
}

.services-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.services-columns ul {
  list-style: none;
  padding: 0;
}
.services-columns ul li {
  padding: 0.5rem 0;
  font-size: 1rem;
  color: #555;
  position: relative;
  padding-left: 1.5rem;
  font-weight: 300;
}
.services-columns ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #7bb86f;
  font-weight: bold;
}

.info-item {
  border-bottom: 1px solid #eee;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.info-label {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.5rem;
  font-weight: 300;
}
.info-value {
  font-size: 1.1rem;
  color: #333;
  font-weight: 400;
}

.access {
  padding: 8rem 0;
  background: #fafafa;
}
.access-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
}
.access-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 6rem;
  margin-top: 4rem;
}
.access-info {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.access-address h3 {
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  color: #2c5282;
  letter-spacing: 0.02em;
}
.access-address .address-main {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: #333;
  font-weight: 400;
}
.access-address .contact-info p {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #555;
}
.access-address .contact-info p strong {
  color: #2c5282;
  font-weight: 500;
}
.access-address .contact-info p a {
  color: #7bb86f;
  text-decoration: none;
  font-weight: 500;
}
.access-address .contact-info p a:hover {
  text-decoration: underline;
}
.access-train h3 {
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  color: #2c5282;
  letter-spacing: 0.02em;
}
.access-train ul {
  list-style: none;
  padding: 0;
}
.access-train ul li {
  padding: 0.8rem 0;
  font-size: 1.1rem;
  color: #555;
  position: relative;
  padding-left: 1.5rem;
  font-weight: 300;
  border-bottom: 1px solid #eee;
}
.access-train ul li::before {
  position: absolute;
  left: 0;
  top: 0.8rem;
}
.access-train ul li strong {
  color: #2c5282;
  font-weight: 500;
}
.access-hours h3 {
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  color: #2c5282;
  letter-spacing: 0.02em;
}
.access-hours p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 0.5rem;
  font-weight: 300;
}
.access-hours p strong {
  color: #2c5282;
  font-weight: 500;
}
.access-map .map-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
}
.access-map .map-container iframe {
  display: block;
  width: 100%;
  height: 600px;
  border: none;
}
.access-map .map-note {
  font-size: 0.9rem;
  color: #666;
  font-style: italic;
  text-align: center;
  font-weight: 300;
}

.contact {
  padding: 10rem 0;
  background: #2c5282;
  color: #fff;
}
.contact-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 3rem;
}
.contact-title {
  font-size: 3.5rem;
  font-weight: 200;
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
  text-align: center;
}
.contact-description {
  font-size: 1.3rem;
  margin-bottom: 4rem;
  font-weight: 300;
  line-height: 1.8;
  text-align: center;
}
.contact-info {
  text-align: center;
  margin-top: 4rem;
}
.contact-info .phone-number {
  font-size: 3rem;
  font-weight: 100;
  margin: 2rem 0;
  color: #7bb86f;
  letter-spacing: 0.05em;
}
.contact-info p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  opacity: 0.9;
}
.contact-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.contact-button {
  display: inline-block;
  padding: 1.2rem 2.5rem;
  background: transparent;
  color: #fff;
  text-decoration: none;
  font-weight: 300;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  border: 2px solid #fff;
  position: relative;
  overflow: hidden;
}
.contact-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #fff;
  transition: left 0.3s ease;
  z-index: -1;
}
.contact-button:hover {
  color: #2c5282;
  transform: translateY(-3px);
}
.contact-button:hover::before {
  left: 0;
}
.contact-form-container {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 4rem;
}
.contact-form-container h3 {
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 2rem;
  text-align: center;
  color: #fff;
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}
.contact-form .form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 400;
  color: #fff;
  font-size: 0.95rem;
}
.contact-form .form-group .required {
  color: #ff6b6b;
  font-weight: 600;
}
.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.contact-form .form-group input::placeholder,
.contact-form .form-group select::placeholder,
.contact-form .form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
  outline: none;
  border-color: #7bb86f;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(123, 184, 111, 0.2);
}
.contact-form .form-group input:invalid,
.contact-form .form-group select:invalid,
.contact-form .form-group textarea:invalid {
  border-color: #ff6b6b;
}
.contact-form .form-group select {
  cursor: pointer;
}
.contact-form .form-group select option {
  background: #2c5282;
  color: #fff;
}
.contact-form .form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.contact-form .privacy {
  margin: 2rem 0;
}
.contact-form .privacy .checkbox-label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.4;
}
.contact-form .privacy .checkbox-label input[type=checkbox] {
  display: none;
}
.contact-form .privacy .checkbox-label .checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  margin-right: 0.8rem;
  margin-top: 2px;
  position: relative;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.contact-form .privacy .checkbox-label .checkmark::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 6px;
  width: 4px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.contact-form .privacy .checkbox-label input:checked + .checkmark {
  background: #7bb86f;
  border-color: #7bb86f;
}
.contact-form .privacy .checkbox-label input:checked + .checkmark::after {
  opacity: 1;
}
.contact-form .privacy .checkbox-label .privacy-text a {
  color: #7bb86f;
  text-decoration: underline;
}
.contact-form .privacy .checkbox-label .privacy-text a:hover {
  color: #fff;
}

.form-submit {
  width: 100%;
  padding: 1.2rem 2rem;
  background: linear-gradient(135deg, #7bb86f, #4a90e2);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}
.form-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
.form-submit:active {
  transform: translateY(-1px);
}
.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

footer {
  background: #1a202c;
  color: #fff;
  padding: 2rem 0;
  text-align: center;
}
footer .footer-content {
  max-width: 1400px;
  margin: 0 auto;
  font-weight: 300;
  opacity: 0.8;
}

.fade-in {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease-out;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-100px);
  transition: all 1s ease-out;
}
.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(100px);
  transition: all 1s ease-out;
}
.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 1024px) {
  .service-section:nth-child(odd) .service-layout,
  .service-section:nth-child(even) .service-layout,
  .testimonials-layout,
  .company-layout,
  .access-layout {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .service-section:nth-child(odd) .service-layout .slide-in-left,
  .service-section:nth-child(even) .service-layout .slide-in-left,
  .testimonials-layout .slide-in-left,
  .company-layout .slide-in-left,
  .access-layout .slide-in-left {
    order: initial;
  }
  .service-section:nth-child(odd) .service-layout .slide-in-right,
  .service-section:nth-child(even) .service-layout .slide-in-right,
  .testimonials-layout .slide-in-right,
  .company-layout .slide-in-right,
  .access-layout .slide-in-right {
    order: initial;
  }
  .company-basic-grid,
  .services-columns {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  * {
    max-width: 100vw;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  body {
    width: 100%;
    overflow-x: hidden;
  }
  section {
    scroll-margin-top: 80px;
    width: 100%;
    max-width: 100vw;
  }
  .hero {
    padding: 80px 0 0;
    width: 100vw;
    max-width: 100%;
  }
  .hero-title {
    font-size: 2rem;
    word-break: keep-all;
    overflow-wrap: break-word;
  }
  .hero-subtitle {
    font-size: 1.5rem;
  }
  .hero-content {
    padding: 0 1rem;
    width: 100%;
    max-width: calc(100vw - 2rem);
  }
  .hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    word-break: keep-all;
  }
  .cta-button {
    padding: 1rem 2rem;
    font-size: 1rem;
    width: auto;
    max-width: calc(100vw - 4rem);
    text-align: center;
  }
  .section-title {
    font-size: 2.5rem;
    word-break: keep-all;
  }
  .contact-title {
    font-size: 2.5rem;
  }
  .contact-info .phone-number {
    font-size: 2.5rem;
    word-break: break-all;
  }
  .contact-buttons {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .contact-form-container {
    padding: 2rem 1rem;
    width: 100%;
    max-width: calc(100vw - 2rem);
    margin: 0 auto 4rem;
  }
  .contact-content {
    padding: 0 1rem;
    width: 100%;
    max-width: 100vw;
  }
  nav ul {
    display: none;
    position: fixed;
    top: 540px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    border-top: 1px solid rgba(44, 82, 130, 0.1);
    flex-direction: column;
    gap: 0;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  nav ul.mobile-active {
    display: flex;
  }
  nav li {
    margin-bottom: 1.5rem;
  }
  nav li:last-child {
    margin-bottom: 0;
  }
  nav a {
    font-size: 1.2rem;
    display: block;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(44, 82, 130, 0.1);
  }
  nav a::after {
    display: none;
  }
  nav a:hover {
    color: #2c5282;
  }
  .hamburger {
    display: flex;
  }
  .services-container,
  .testimonials-container,
  .company-container,
  .access-container {
    padding: 0 1rem;
    width: 100%;
    max-width: 100vw;
  }
  .service-number {
    font-size: 4rem;
  }
  .service-title {
    font-size: 2rem;
    word-break: keep-all;
  }
  .service-content {
    padding: 1rem 0;
    width: 100%;
  }
  .service-image {
    width: 100%;
    height: 250px;
  }
  .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .header-content {
    padding: 0 1rem;
    width: 100%;
  }
  .company,
  .access {
    padding: 6rem 0;
  }
  .company-main-info, .company-details, .company-info,
  .access-main-info,
  .access-details,
  .access-info {
    gap: 2rem;
    width: 100%;
  }
  .services-columns {
    grid-template-columns: 1fr;
    gap: 1rem;
    width: 100%;
  }
  .access-map {
    width: 100%;
  }
  .access-map .map-container {
    width: 100%;
    max-width: calc(100vw - 2rem);
    margin: 0 auto;
  }
  .access-map .map-container iframe {
    height: 300px;
    width: 100%;
  }
  .testimonials {
    width: 100vw;
    max-width: 100%;
  }
  .testimonials .parallax-image {
    background-attachment: scroll !important;
  }
  .testimonials-bg {
    height: 100%;
    width: 100%;
  }
  .testimonials-container {
    width: 100%;
    padding: 0 1rem;
  }
  .testimonials-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
    width: 100%;
  }
  .testimonial {
    padding: 2rem 1rem;
    width: 100%;
    max-width: calc(100vw - 2rem);
    margin: 0 auto;
  }
  .video-controls {
    bottom: 2rem;
  }
  .video-controls .video-indicator {
    width: 10px;
    height: 10px;
  }
  .contact-form {
    width: 100%;
  }
  .contact-form .form-row {
    grid-template-columns: 1fr;
    gap: 0;
    width: 100%;
  }
  .contact-form .form-group {
    width: 100%;
  }
  .contact-form .form-group input,
  .contact-form .form-group select,
  .contact-form .form-group textarea {
    width: 100%;
    max-width: 100%;
    font-size: 16px;
  }
  footer {
    width: 100%;
    padding: 2rem 0;
  }
  footer .footer-content {
    width: 100%;
    padding: 0;
  }
}
.privacy-policy {
  padding: 8rem 0 6rem;
  background: #fff;
  min-height: 100vh;
}

.privacy-container {
  margin: 0 auto;
  padding: 0 2rem;
}

.privacy-title {
  font-size: 3rem;
  font-weight: 200;
  margin-bottom: 2rem;
  color: #2c5282;
  text-align: center;
  letter-spacing: 0.05em;
}

.privacy-content {
  padding: 3rem;
}
.privacy-content h2 {
  font-size: 1.5rem;
  font-weight: 500;
  color: #2c5282;
  margin: 2rem 0 1rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #7bb86f;
}
.privacy-content h3 {
  font-size: 1.2rem;
  font-weight: 500;
  color: #2c5282;
  margin: 1.5rem 0 0.8rem 0;
}
.privacy-content p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  color: #333;
}
.privacy-content ul,
.privacy-content ol {
  margin: 1rem 0 1rem 2rem;
}
.privacy-content li {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 0.5rem;
  color: #333;
}
.privacy-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}
.privacy-content th,
.privacy-content td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #eee;
}
.privacy-content th {
  background: #2c5282;
  color: #fff;
  font-weight: 500;
}

.contact-info {
  background: #2c5282;
  color: #fff;
  padding: 2rem;
  border-radius: 10px;
  margin-top: 3rem;
}
.contact-info h3 {
  color: #fff;
  margin-bottom: 1rem;
}
.contact-info p {
  color: #fff;
  margin-bottom: 0.5rem;
}

.back-link {
  display: inline-block;
  margin-top: 2rem;
  padding: 1rem 2rem;
  background: #7bb86f;
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  transition: all 0.3s ease;
  font-weight: 500;
}
.back-link:hover {
  background: #2c5282;
  transform: translateY(-2px);
}

.effective-date {
  text-align: right;
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .privacy-policy {
    padding: 6rem 0 4rem;
  }
  .privacy-container {
    padding: 0 1rem;
  }
  .privacy-title {
    font-size: 2rem;
  }
  .privacy-content {
    padding: 2rem 1.5rem;
  }
  .privacy-content table {
    font-size: 0.9rem;
  }
  .privacy-content th,
  .privacy-content td {
    padding: 0.8rem 0.5rem;
  }
}

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