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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.6;
  color: #222222;
  background-color: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #ffffff;
  z-index: 100;
}

.nav-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 60px;
}

.nav-logo a {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333333;
  text-decoration: none;
}

.nav-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.nav-link {
  color: #222222;
  text-decoration: none;
  font-weight: 400;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.nav-link:hover {
  color: #666666;
}
.nav-link.nav-link-contact {
  background: linear-gradient(135deg, #666666 0%, #4d4d4d 100%);
  color: white;
  padding: 0.5rem 1rem;
  font-weight: 600;
  -webkit-box-shadow: 0 2px 8px rgba(102, 102, 102, 0.2);
          box-shadow: 0 2px 8px rgba(102, 102, 102, 0.2);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.nav-link.nav-link-contact:hover {
  color: white;
  background: linear-gradient(135deg, #595959 0%, #404040 100%);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 12px rgba(102, 102, 102, 0.3);
          box-shadow: 0 4px 12px rgba(102, 102, 102, 0.3);
}

.hamburger {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.hamburger:hover {
  background-color: rgba(102, 102, 102, 0.1);
}
.hamburger .bar {
  width: 25px;
  height: 3px;
  margin: 3px 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: #222222;
  border-radius: 2px;
}
.hamburger.active .bar:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(7px, 6px);
          transform: rotate(45deg) translate(7px, 6px);
}
.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}
.hamburger.active .bar:nth-child(3) {
  -webkit-transform: rotate(-45deg) translate(7px, -6px);
          transform: rotate(-45deg) translate(7px, -6px);
}

.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  color: #000000;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2rem 0;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(102, 102, 102, 0.1), rgba(102, 102, 102, 0.05));
  -webkit-animation: float 8s ease-in-out infinite;
          animation: float 8s ease-in-out infinite;
}
.shape.shape-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  right: 10%;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.shape.shape-2 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 5%;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
.shape.shape-3 {
  width: 100px;
  height: 100px;
  top: 50%;
  left: 20%;
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}

@-webkit-keyframes float {
  0%, 100% {
    -webkit-transform: translateY(0px) rotate(0deg);
            transform: translateY(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(-30px) rotate(180deg);
            transform: translateY(-30px) rotate(180deg);
  }
}

@keyframes float {
  0%, 100% {
    -webkit-transform: translateY(0px) rotate(0deg);
            transform: translateY(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(-30px) rotate(180deg);
            transform: translateY(-30px) rotate(180deg);
  }
}
.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 20px;
  width: 100%;
  position: relative;
  z-index: 3;
}

.hero-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  text-align: left;
  width: 100%;
  max-width: 800px;
}

.hero-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  text-align: left;
}

.hero-content-centered {
  text-align: center;
  max-width: 900px;
}

.hero-badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 0.5rem 1.5rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.badge-icon {
  font-size: 1.2rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  color: #222222;
  margin: 0;
}
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.6;
  color: #666666;
  margin: 0;
}
@media (max-width: 768px) {
  .hero-subtitle {
    font-size: 1.1rem;
  }
}

.hero-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .hero-cta {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  color: #666666;
  cursor: pointer;
  z-index: 10;
}
.scroll-indicator:hover {
  color: #333333;
}

.scroll-text {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  border: 2px solid currentColor;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.scroll-arrow:hover {
  background-color: currentColor;
  color: white;
}

.hero-main {
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-accent {
  background: linear-gradient(45deg, #ffffff, #e0e0e0, #b0b0b0, #808080);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.2rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.stat-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.3);
}

.hero-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.btn-glow {
  position: relative;
  overflow: hidden;
  -webkit-box-shadow: 0 8px 32px rgba(0, 123, 204, 0.3);
          box-shadow: 0 8px 32px rgba(0, 123, 204, 0.3);
}
.btn-glow::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, 0.2)), to(transparent));
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  -webkit-transition: left 0.5s;
  transition: left 0.5s;
}
.btn-glow:hover::before {
  left: 100%;
}

.btn-icon {
  width: 20px;
  height: 20px;
  margin-left: 0.5rem;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.btn-glow:hover .btn-icon {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}

.btn {
  background-color: #333333;
  color: white;
  border: 1px solid #333333;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 400;
  text-decoration: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  cursor: pointer;
}
.btn:hover {
  background-color: #1a1a1a;
  border-color: #1a1a1a;
}
.btn.btn-secondary {
  background-color: transparent;
  color: #333333;
  border: 1px solid transparent;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 400;
  text-decoration: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 2px solid #333333;
}
.btn.btn-secondary:hover {
  background-color: rgba(0, 0, 0, 0);
  border-color: rgba(0, 0, 0, 0);
}
.btn.btn-secondary:hover {
  background-color: #333333;
  color: white;
}

section {
  padding: 160px 0;
}

.section-title {
  font-size: 2rem;
  font-weight: 600;
  text-align: left;
  margin-bottom: 2.5rem;
  color: #222222;
  position: relative;
  padding-bottom: 0.75rem;
}
.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 2px;
  opacity: 0.6;
}

.section-subtitle {
  font-size: 1.2rem;
  font-weight: 600;
  text-align: left;
  margin-bottom: 1rem;
  color: #222222;
}

.about {
  background-color: #ffffff;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.about-text p {
  font-size: 1.1rem;
  color: #666666;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about-stats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.stat {
  text-align: center;
}
.stat h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 0.5rem;
}
.stat p {
  color: #666666;
  font-weight: 500;
}

.about-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.about-avatar {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 3px solid #e0e0e0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.services {
  background-color: #ffffff;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  margin-left: auto;
  margin-right: auto;
  counter-reset: service;
  margin-top: 120px;
}

.service-card {
  padding: 2rem;
  position: relative;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.service-card-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #222222;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .service-card-title {
    font-size: 20px;
  }
}

.service-card-description {
  color: #666666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .service-card-description {
    font-size: 14px;
  }
}

.service-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}

.service-icon span {
  display: block;
}

.service-icon-number {
  margin-left: 10px;
  margin-right: 10px;
}

.service-icon-text {
  position: relative;
  margin-left: 10px;
}
.service-icon-text::before {
  content: "";
  width: 2px;
  height: 16px;
  background-color: #666666;
  position: absolute;
  left: -10px;
  top: 5px;
}

.service-card-image {
  width: 100%;
  height: 21vw;
}
@media (max-width: 768px) {
  .service-card-image {
    height: 37vw;
  }
}
.service-card-image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.service-features {
  list-style: none;
  margin-bottom: 1.5rem;
}
.service-features li {
  color: #666666;
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}
.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #666666;
  font-weight: bold;
}

.service-price {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid #e0e0e0;
}

.price-from {
  font-size: 1.2rem;
  font-weight: 600;
  color: #666666;
}

.news {
  background-color: #ffffff;
}

.news-page {
  padding: 2rem 0 4rem;
  background-color: #ffffff;
  min-height: 100vh;
}

.page-header {
  text-align: center;
  margin-bottom: 3rem;
}
.page-header .page-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #222222;
  margin-bottom: 1rem;
}
.page-header .page-description {
  font-size: 1.1rem;
  color: #666666;
  margin: 0;
}

.news-list-page {
  max-width: 800px;
  margin: 0 auto;
}

.news-item-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid #e0e0e0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}
.news-item-page:hover {
  background-color: #ffffff;
  border-radius: 8px;
}
.news-item-page:last-child {
  border-bottom: none;
}

.news-date-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 100px;
  padding: 0.5rem;
}

.date-year {
  font-size: 0.8rem;
  color: #666666;
  font-weight: 500;
}

.date-month-day {
  font-size: 1.2rem;
  font-weight: 600;
  color: #666666;
}

.news-content-page {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.news-content-page .news-title-page {
  font-size: 1.3rem;
  font-weight: 600;
  color: #222222;
  margin: 0 0 0.8rem 0;
  line-height: 1.4;
}
.news-content-page .news-title-page a {
  text-decoration: none;
  color: inherit;
}
.news-content-page .news-title-page a:hover {
  color: #666666;
}
.news-content-page .news-excerpt {
  color: #666666;
  line-height: 1.6;
  margin: 0 0 1rem 0;
  font-size: 0.95rem;
}

.news-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.news-tag {
  display: inline-block;
  background-color: #ffffff;
  color: #666666;
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid #e0e0e0;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  margin: 3rem 0;
}

.pagination-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.8rem;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  color: #222222;
  text-decoration: none;
  font-size: 0.9rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.pagination-link:hover:not(.disabled):not(.current) {
  background-color: #666666;
  color: white;
  border-color: #666666;
}
.pagination-link.current {
  background-color: #666666;
  color: white;
  border-color: #666666;
}
.pagination-link.disabled {
  color: #666666;
  cursor: not-allowed;
  opacity: 0.5;
}

.news-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.news-cta {
  text-align: right;
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .news-cta {
    text-align: center;
  }
}

.news-single {
  background-color: #ffffff;
  padding: 2rem 0 4rem;
}

.news-article {
  max-width: 800px;
  margin: 0 auto;
}

.news-article-header {
  margin-bottom: 1.5rem;
}

.news-article-title {
  font-size: 2rem;
  font-weight: 700;
  color: #222222;
  margin: 0 0 0.5rem 0;
}

.news-article-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}

.news-article-content {
  color: #222222;
  line-height: 1.9;
}

.news-article-content p {
  margin: 0 0 1.2rem 0;
}

.news-article-tags {
  margin-top: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.news-article-tags a {
  display: inline-block;
  background-color: #ffffff;
  color: #666666;
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid #e0e0e0;
  text-decoration: none;
}

.news-article-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
}

.news-article-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.news-content-wrapper {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 3rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.news-list {
  max-width: 800px;
}

.news-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid #e0e0e0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}
.news-item:hover {
  background-color: #ffffff;
  border-radius: 8px;
}
.news-item:last-child {
  border-bottom: none;
}

.news-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 80px;
  padding: 0.5rem;
}

.date-year {
  font-size: 0.8rem;
  color: #666666;
  font-weight: 500;
}

.date-month-day {
  font-size: 1.2rem;
  font-weight: 600;
  color: #666666;
}

.news-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.news-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #222222;
  margin: 0 0 0.5rem 0;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .news-content h3 {
    font-size: 20px;
  }
}
.news-content h3 a {
  text-decoration: none;
  color: inherit;
}
.news-content h3 a:hover {
  color: #666666;
}
.news-content p {
  color: #666666;
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}
@media (max-width: 768px) {
  .news-content p {
    display: none;
  }
}

.company {
  background-color: #ffffff;
}

.company-summary {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.company-basic {
  background-color: white;
  padding: 2.5rem;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}
.company-basic h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #222222;
  margin: 0 0 1rem 0;
}
.company-basic p {
  color: #666666;
  line-height: 1.6;
  margin: 0 0 2rem 0;
  font-size: 1rem;
}

.company-highlights {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

.highlight-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.8rem;
  padding: 0.8rem;
  background-color: #f8f9fa;
  border-radius: 6px;
  border-left: 3px solid #666666;
}
.highlight-item .highlight-icon {
  font-size: 1.2rem;
  min-width: 24px;
}
.highlight-item span:last-child {
  color: #555555;
  font-size: 0.95rem;
  font-weight: 500;
}

.company-cta {
  background-color: white;
  padding: 2.5rem;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  text-align: center;
}
.company-cta h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #222222;
  margin: 0 0 1rem 0;
}
.company-cta p {
  color: #666666;
  line-height: 1.6;
  margin: 0 0 2rem 0;
  font-size: 0.95rem;
}

.btn-outline {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: transparent;
  color: #666666;
  border: 2px solid #666666;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn-outline:hover {
  background-color: #666666;
  color: white;
}

.testimonials {
  background-color: #ffffff;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
}
.testimonial-card:hover {
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.testimonial-content {
  margin-bottom: 1.5rem;
  position: relative;
}

.quote-icon {
  font-size: 3rem;
  color: #666666;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.3;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333333;
  font-style: italic;
  margin: 0;
}

.testimonial-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 1rem;
  border-top: 1px solid #e0e0e0;
}

.author-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #222222;
  margin: 0 0 0.25rem 0;
}
.author-info p {
  font-size: 0.9rem;
  color: #666666;
  margin: 0;
}

.rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.25rem;
}

.star {
  color: #ffc107;
  font-size: 1.2rem;
}

.portfolio {
  background-color: #ffffff;
}

.portfolio-filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.filter-btn {
  background-color: white;
  color: #222222;
  border: 1px solid white;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 400;
  text-decoration: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 1px solid #e0e0e0;
}
.filter-btn:hover {
  background-color: #e6e6e6;
  border-color: #e6e6e6;
}
.filter-btn.active {
  background-color: #666666;
  color: white;
  border: 1px solid #666666;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 400;
  text-decoration: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  cursor: pointer;
}
.filter-btn.active:hover {
  background-color: #4d4d4d;
  border-color: #4d4d4d;
}
.filter-btn:hover {
  border-color: #666666;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.portfolio-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3rem;
}

.portfolio-item-vertical {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  position: relative;
  border: 2px solid transparent;
}
.portfolio-item-vertical::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(102, 102, 102, 0.05), rgba(102, 102, 102, 0.1));
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  pointer-events: none;
  border-radius: 8px;
}
.portfolio-item-vertical:hover {
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.portfolio-item-vertical:hover::before {
  opacity: 1;
}
.portfolio-item-vertical:hover::after {
  opacity: 1;
}
.portfolio-item-vertical .portfolio-image {
  position: relative;
  overflow: hidden;
  height: 100%;
}
.portfolio-item-vertical .portfolio-placeholder {
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #666666;
  font-size: 1.2rem;
  font-weight: 500;
  border: 2px dashed #e0e0e0;
}

.portfolio-content {
  padding: 1rem 0;
}
.portfolio-content h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #222222;
}
@media (max-width: 768px) {
  .portfolio-content h3 {
    font-size: 20px;
  }
}
.portfolio-content .portfolio-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.portfolio-company {
  font-size: 1rem;
  color: #666666;
  font-weight: 500;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .portfolio-company {
    font-size: 14px;
  }
}

.portfolio-description {
  color: #666666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}
@media (max-width: 768px) {
  .portfolio-description {
    font-size: 14px;
  }
}

.portfolio-points {
  margin-bottom: 2rem;
}
.portfolio-points h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: #222222;
}
.portfolio-points ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.portfolio-points li {
  color: #666666;
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}
.portfolio-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #666666;
  font-weight: bold;
}

.portfolio-item {
  background-color: white;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.portfolio-item:hover {
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.portfolio-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.portfolio-placeholder {
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #666666;
  font-size: 1.2rem;
  font-weight: 500;
  border: 2px dashed #e0e0e0;
}

.portfolio-img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.portfolio-img:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  opacity: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.portfolio-overlay h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.portfolio-overlay p {
  text-align: center;
  margin-bottom: 1rem;
  padding: 0 1rem;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.portfolio-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #666666;
  color: white;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
}

.portfolio-link {
  background-color: #666666;
  color: white;
  border: 1px solid #666666;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 400;
  text-decoration: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  cursor: pointer;
  font-size: 0.9rem;
  padding: 6px 12px;
}
.portfolio-link:hover {
  background-color: #4d4d4d;
  border-color: #4d4d4d;
}

.portfolio-cta {
  text-align: center;
  margin-top: 3rem;
}

.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  overflow-y: auto;
}

.modal-content {
  background-color: #ffffff;
  margin: 2% auto;
  padding: 2rem;
  border-radius: 8px;
  width: 90%;
  max-width: 1200px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-content h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #222222;
  font-size: 2rem;
}

.close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 2rem;
  font-weight: bold;
  color: #666666;
  cursor: pointer;
  z-index: 2001;
}
.close:hover {
  color: #222222;
}

.modal-filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.modal-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.modal-portfolio-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}

.contact-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.contact-intro p {
  font-size: 1.1rem;
  color: #666666;
  margin-bottom: 2rem;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .contact-intro p {
    font-size: 16px;
  }
}

.contact-header {
  text-align: center;
  margin-bottom: 3rem;
}
.contact-header .section-title {
  text-align: center;
}
.contact-header .section-title::after {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background-color: white;
  padding: 2.5rem;
  border-radius: 12px;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #222222;
}

.contact-info p {
  color: #666666;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.contact-details {
  margin-bottom: 2rem;
}

.contact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: #666666;
}

.contact-icon {
  font-size: 1.2rem;
}

.social-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}

.social-link {
  background-color: #333333;
  color: white;
  border: 1px solid #333333;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 400;
  text-decoration: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  cursor: pointer;
  font-size: 0.9rem;
  padding: 8px 16px;
}
.social-link:hover {
  background-color: #1a1a1a;
  border-color: #1a1a1a;
}

.contact-details {
  margin-bottom: 2rem;
}

.contact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-item .contact-icon {
  font-size: 1.5rem;
  width: 40px;
  text-align: center;
}
.contact-item .contact-text h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #222222;
  margin-bottom: 0.25rem;
}
.contact-item .contact-text span {
  color: #666666;
  font-size: 0.95rem;
}

.contact-note {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}
.contact-note h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #222222;
  margin-bottom: 1rem;
}
.contact-note ol {
  margin: 0;
  padding-left: 1.5rem;
}
.contact-note ol li {
  color: #666666;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.social-links h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #222222;
  margin-bottom: 1rem;
}
.social-links .social-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}

.form-label {
  display: block;
  font-weight: 600;
  color: #222222;
  margin-bottom: 0.5rem;
}
.form-label .required {
  color: #e74c3c;
}

.checkbox-group .checkbox-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.5;
}
.checkbox-group .checkbox-label input[type=checkbox] {
  margin: 0;
}
.checkbox-group .checkbox-label .privacy-link {
  color: #666666;
  text-decoration: underline;
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

.wpcf7 {
  max-width: 600px;
  margin: 0 auto;
}

.wrap-form-contact {
  display: grid;
  gap: 2rem;
}

.item-form-contact {
  background: #fff;
}

.heading-form-contact {
  font-weight: 600;
  color: #222222;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}

.contact-label {
  display: inline-block;
  font-size: 0.75rem;
  color: #fff;
  background: #666666;
  border-radius: 4px;
  padding: 0.1rem 0.4rem;
  margin-left: 0.5rem;
}

.detail-form-contact .wpcf7-form-control {
  width: 100%;
  display: block;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 0.75rem 0.9rem;
  font-size: 1rem;
  line-height: 1.6;
  background: #fff;
  -webkit-transition: border-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: border-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.detail-form-contact input[type=text],
.detail-form-contact input[type=email],
.detail-form-contact textarea {
  width: 100%;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 0.75rem 0.9rem;
  font-size: 1rem;
  line-height: 1.6;
  background: #fff;
  -webkit-transition: border-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: border-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.detail-form-contact textarea {
  min-height: 160px;
  resize: vertical;
}
.detail-form-contact input:focus,
.detail-form-contact textarea:focus {
  outline: none;
  border-color: #666666;
  -webkit-box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.03);
          box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.03);
}

.contact-privacy {
  margin: 1.5rem 0 0.5rem;
  font-size: 0.95rem;
  color: #666666;
}
.contact-privacy a.btn {
  background: none;
  color: #666666;
  text-decoration: underline;
  padding: 0;
  font-size: 0.9rem;
  border: none;
}
.contact-privacy a.btn:hover {
  background: none;
  color: #4d4d4d;
}

.wpcf7-form-control.wpcf7-acceptance input[type=checkbox] {
  margin-right: 0.5rem;
}

.wpcf7-acceptance .wpcf7-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 0.5rem;
}
.wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label {
  margin-left: 0.5rem;
  line-height: 1.4;
  font-size: 0.9rem;
}

.wpcf7-checkbox .wpcf7-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 0.5rem;
}
.wpcf7-checkbox .wpcf7-list-item .wpcf7-list-item-label {
  margin-left: 0.5rem;
  line-height: 1.4;
  font-size: 0.9rem;
}

.btn-wrap.center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 1.5rem;
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
}

.btn-wrap [type=submit] {
  background-color: #666666;
  color: white;
  border: 1px solid #666666;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 400;
  text-decoration: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  cursor: pointer;
  font-weight: 600;
}
.btn-wrap [type=submit]:hover {
  background-color: #4d4d4d;
  border-color: #4d4d4d;
}

.reCAPTCHA {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: #666666;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.spam .wpcf7-response-output {
  border-color: #e74c3c;
  color: #e74c3c;
  background: #fdecea;
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: #2ecc71;
  color: #2ecc71;
  background: #ecf9f1;
}

.wpcf7-not-valid-tip {
  margin-top: 0.4rem;
  font-size: 0.85rem;
  color: #e74c3c;
}

@media (max-width: 768px) {
  .item-form-contact {
    padding: 1rem;
  }
  .btn-wrap.center {
    margin-top: 1rem;
  }
}
.contact-form {
  background-color: white;
  padding: 1.5rem;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #666666;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.footer {
  background-color: #222222;
  color: white;
  padding: 3rem 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section .footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}
.footer-section .footer-description {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}
.footer-section .footer-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 0.5rem;
}
.footer-links li a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.9rem;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.footer-links li a:hover {
  color: #666666;
}

.social-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
}
@media (max-width: 768px) {
  .social-links {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.social-links .social-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: white;
  text-decoration: none;
  background: none;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 0;
}
.social-links .social-link:hover {
  background: none;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.contact-info .contact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
  color: #ccc;
  font-size: 0.9rem;
}
@media (max-width: 768px) {
  .contact-info .contact-item {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.contact-info .contact-item .contact-icon {
  font-size: 1rem;
}

.footer-bottom {
  border-top: 1px solid #444;
  padding: 1.5rem 0;
}

.footer-bottom-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
}

.copyright {
  margin: 0;
  color: #ccc;
  font-size: 0.9rem;
}

.footer-legal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
}
.footer-legal .legal-link {
  color: #ccc;
  text-decoration: none;
  font-size: 0.9rem;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.footer-legal .legal-link:hover {
  color: #666666;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.portfolio-detail {
  padding: 0;
  background-color: #ffffff;
  min-height: 100vh;
}

.breadcrumb {
  padding: 2rem 0 1rem;
  font-size: 0.9rem;
  margin: 0;
}
@media (max-width: 768px) {
  .breadcrumb {
    padding: 1.5rem 0 0.8rem;
    font-size: 0.8rem;
  }
}
.breadcrumb a {
  color: #666;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.breadcrumb a:hover {
  color: #007acc;
}
.breadcrumb .separator {
  margin: 0 0.5rem;
  color: #999;
}
@media (max-width: 768px) {
  .breadcrumb .separator {
    margin: 0 0.3rem;
  }
}
.breadcrumb .current {
  color: #333;
  font-weight: 500;
}

.project-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 3rem 0;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .project-header {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 0;
  }
}

.project-info {
  background: white;
}

.project-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #333;
}
@media (max-width: 768px) {
  .project-title {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
  }
}

.project-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 768px) {
  .project-meta {
    gap: 0.5rem;
    margin-bottom: 1rem;
  }
}
.project-meta span {
  background-color: #e9ecef;
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  font-size: 0.9rem;
  color: #666;
}
@media (max-width: 768px) {
  .project-meta span {
    padding: 0.25rem 0.6rem;
    font-size: 0.8rem;
  }
}

.project-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #666;
  margin: 0;
}
@media (max-width: 768px) {
  .project-description {
    font-size: 1rem;
    line-height: 1.5;
  }
}

.project-image {
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .project-image {
    border-radius: 6px;
    -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
}
.project-image .main-image {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.project-image-cta {
  margin-top: 1.5rem;
  text-align: right;
  grid-column: 1/3;
}
@media (max-width: 768px) {
  .project-image-cta {
    text-align: center;
    margin-top: 1rem;
    grid-column: 1;
  }
}
.project-image-cta .btn {
  display: inline-block;
}

.project-overview {
  padding: 3rem 0;
}
.project-overview .overview-content {
  margin: 0 auto;
  text-align: left;
}
.project-overview .overview-content h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #333;
}
.project-overview .overview-content .overview-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 3rem;
}

.production-content {
  padding: 3rem 0;
  background-color: white;
}
.production-content h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #333;
}
.production-content .content-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 0 auto;
}
.production-content .content-item {
  padding: 1.5rem;
}
.production-content .content-item .content-image {
  margin-bottom: 1rem;
  border-radius: 6px;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.production-content .content-item .content-image .production-img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.production-content .content-item .content-image .production-img:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.production-content .content-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
}
.production-content .content-item p {
  color: #666;
  line-height: 1.5;
  margin: 0;
  font-size: 0.95rem;
}

.results-section {
  padding: 3rem 0;
}
.results-section h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #333;
}
.results-section .results-text {
  color: #666;
  line-height: 1.9;
  font-size: 1.05rem;
  max-width: 800px;
  margin: 0 auto;
}

.project-links {
  padding: 3rem 0;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.project-links .btn-large {
  padding: 0.8rem 2rem;
  font-size: 1rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .nav-menu {
    position: fixed;
    top: 60px;
    left: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%);
    width: 100%;
    text-align: left;
    -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 1px solid #e0e0e0;
    padding: 2rem 0;
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
    gap: 10px;
    z-index: 200;
    visibility: hidden;
  }
  .nav-menu.active {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    visibility: visible;
  }
  .nav-menu .nav-item {
    margin: 0.5rem 0;
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .nav-menu .nav-item:nth-child(1) {
    -webkit-transition-delay: 0.1s;
            transition-delay: 0.1s;
  }
  .nav-menu .nav-item:nth-child(2) {
    -webkit-transition-delay: 0.2s;
            transition-delay: 0.2s;
  }
  .nav-menu .nav-item:nth-child(3) {
    -webkit-transition-delay: 0.3s;
            transition-delay: 0.3s;
  }
  .nav-menu .nav-item:nth-child(4) {
    -webkit-transition-delay: 0.4s;
            transition-delay: 0.4s;
  }
  .nav-menu .nav-item:nth-child(5) {
    -webkit-transition-delay: 0.5s;
            transition-delay: 0.5s;
  }
  .nav-menu .nav-item .nav-link {
    display: block;
    padding: 1rem 2rem;
    color: #222222;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 0 1rem;
    position: relative;
    overflow: hidden;
  }
  .nav-menu .nav-item .nav-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(102, 102, 102, 0.1)), to(transparent));
    background: linear-gradient(90deg, transparent, rgba(102, 102, 102, 0.1), transparent);
    -webkit-transition: left 0.5s ease;
    transition: left 0.5s ease;
  }
  .nav-menu .nav-item .nav-link:hover {
    color: #666666;
    background-color: rgba(102, 102, 102, 0.05);
    -webkit-transform: translateX(5px);
            transform: translateX(5px);
  }
  .nav-menu .nav-item .nav-link:hover::before {
    left: 100%;
  }
  .nav-menu .nav-item .nav-link.nav-link-contact {
    background: linear-gradient(135deg, #666666 0%, #4d4d4d 100%);
    color: white;
    font-weight: 600;
    -webkit-box-shadow: 0 2px 8px rgba(102, 102, 102, 0.2);
            box-shadow: 0 2px 8px rgba(102, 102, 102, 0.2);
    margin: 0.5rem 1rem;
  }
  .nav-menu .nav-item .nav-link.nav-link-contact:hover {
    color: white;
    background: linear-gradient(135deg, #595959 0%, #404040 100%);
    -webkit-transform: translateX(5px) translateY(-2px);
            transform: translateX(5px) translateY(-2px);
    -webkit-box-shadow: 0 4px 12px rgba(102, 102, 102, 0.3);
            box-shadow: 0 4px 12px rgba(102, 102, 102, 0.3);
  }
  .nav-menu.active .nav-item {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .nav-menu .nav-social {
    margin-top: 1rem;
    padding-top: 40px;
    border-top: 1px solid rgba(102, 102, 102, 0.2);
  }
  .nav-menu .nav-social .social-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-left: 45px;
  }
  .nav-menu .nav-social .social-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #666666;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .nav-menu .nav-social .social-link:hover {
    background-color: #4d4d4d;
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
    -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  .nav-menu .nav-social .social-link svg {
    width: 20px;
    height: 20px;
  }
  .hero-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    gap: 2rem;
    padding: 2rem 20px;
  }
  .hero-content {
    width: 100%;
    text-align: left;
  }
  .portfolio-links {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .hero-title {
    font-size: 2rem;
    text-align: left;
  }
  .hero-subtitle {
    text-align: left;
  }
  .hero-buttons {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .about-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-stats {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .portfolio-item-vertical {
    grid-template-columns: 1fr;
    gap: 0;
    text-align: center;
    padding: 0;
  }
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
    gap: 1.5rem;
    margin-top: 20px;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .company-summary {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .news-content-wrapper {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .news-item {
    gap: 1rem;
    text-align: center;
  }
  .news-item .news-date {
    min-width: auto;
  }
  .news-item .news-content h3 {
    font-size: 16px;
    margin-bottom: 0;
    text-align: left;
    margin-top: 20px;
  }
  .modal-content {
    width: 95%;
    margin: 5% auto;
    padding: 1.5rem;
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .footer-section .footer-logo {
    font-size: 1.2rem;
  }
  .footer-section .footer-description {
    font-size: 14px;
  }
  .footer-section .footer-title {
    font-size: 14px;
  }
  .footer-links li a {
    font-size: 14px;
  }
  .footer-bottom-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  .copyright {
    font-size: 14px;
  }
  .footer-legal {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer-legal .legal-link {
    font-size: 14px;
  }
  .modal-portfolio-grid {
    grid-template-columns: 1fr;
  }
  .project-header {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 0;
  }
  .project-title {
    font-size: 2rem;
  }
  .project-meta {
    gap: 0.5rem;
  }
  .production-content .content-list {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
  .content-item .content-image .production-img {
    height: 150px;
  }
  .results-list {
    grid-template-columns: 1fr;
  }
  .specs-list {
    grid-template-columns: 1fr;
  }
  .project-links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .project-links .btn-large {
    width: 100%;
    max-width: 300px;
  }
}
@media (max-width: 480px) {
  section {
    padding: 100px 0;
  }
  .hero-title {
    font-size: 1.8rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .hero-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .btn {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.privacy-page {
  padding: 120px 0;
  background-color: #ffffff;
}

.privacy-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.privacy-section {
  margin-bottom: 3rem;
}
.privacy-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #222222;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #666666;
}
.privacy-section p {
  margin-bottom: 1rem;
  color: #666666;
}
.privacy-section ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}
.privacy-section ul li {
  margin-bottom: 0.5rem;
  color: #666666;
}

.contact-info {
  margin: 1rem 0;
}
.contact-info p {
  margin-bottom: 0.5rem;
}
.contact-info p:last-child {
  margin-bottom: 0;
}
.contact-info a {
  color: #666666;
  text-decoration: none;
}
.contact-info a:hover {
  text-decoration: underline;
}

.privacy-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e0e0e0;
  text-align: center;
}

.last-updated {
  color: #666666;
  font-size: 0.9rem;
  margin: 0;
}

.privacy-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .privacy-links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.company-info-page {
  padding: 120px 0;
  background-color: #ffffff;
}

.company-info-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.company-info-section {
  margin-bottom: 3rem;
}
.company-info-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #222222;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #666666;
}

.info-table {
  background-color: #f8f9fa;
  border-radius: 8px;
  overflow: hidden;
  margin: 1rem 0;
}

.info-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #e9ecef;
}
.info-row:last-child {
  border-bottom: none;
}
@media (max-width: 768px) {
  .info-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.info-label {
  background-color: #e9ecef;
  padding: 1rem;
  font-weight: 600;
  color: #222222;
  min-width: 150px;
  border-right: 1px solid #dee2e6;
}
@media (max-width: 768px) {
  .info-label {
    border-right: none;
    border-bottom: 1px solid #dee2e6;
    min-width: auto;
  }
}

.info-value {
  padding: 1rem;
  color: #666666;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.info-value ul {
  margin: 0;
  padding-left: 1.5rem;
}
.info-value ul li {
  margin-bottom: 0.5rem;
}
.info-value a {
  color: #666666;
  text-decoration: none;
}
.info-value a:hover {
  text-decoration: underline;
}

.disclaimer-content p,
.copyright-content p {
  margin-bottom: 1rem;
  color: #666666;
}

.contact-content p {
  margin-bottom: 1rem;
  color: #666666;
}

.contact-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .contact-methods {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.contact-method {
  background-color: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
}
.contact-method h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #222222;
  margin-bottom: 1rem;
}
.contact-method p {
  margin-bottom: 0.5rem;
}
.contact-method p:last-child {
  margin-bottom: 0;
}
.contact-method a {
  color: #666666;
  text-decoration: none;
}
.contact-method a:hover {
  text-decoration: underline;
}
.contact-method a.btn {
  color: white;
}
.contact-method a.btn:hover {
  text-decoration: none;
}
.contact-method .note {
  font-size: 0.9rem;
  color: #666;
  font-style: italic;
}

.company-info-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 3rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 768px) {
  .company-info-links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}