/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.nav-logo h1 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2c3e50;
  letter-spacing: 1px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-link {
  text-decoration: none;
  color: #2c3e50;
  font-weight: 500;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #8b4513;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: #8b4513;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background: #2c3e50;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  height: calc(100vh - 80px);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 80px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)),
    url("https://sspark.genspark.ai/cfimages?u1=OMKRaZ3h9bi%2FwymYH6LDtHo2qRitEAzfwVvhVqgmNmKKEweLaTZmDNe2BX7lKIUYiNy4RvUICGM79wp9D5UVGgRt5WMGGhQZnno5EH9qgZLVMUZ0qb5qlL7PEeGKUL1geo8G&u2=%2Ba0g4P46GupoQYYr&width=2560");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 20px;
  margin-top: 100px;
  margin-left: 24%; /* PC 默认样式 */
}

/* 手机端（宽度小于 768px） */
@media (max-width: 768px) {
  .hero-content {
    margin: 0 auto; /* 居中 */
    display: block; /* 保证居中生效 */
  }
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  letter-spacing: 2px;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 50px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-block;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, #8b4513, #a0522d);
  color: white;
  box-shadow: 0 8px 25px rgba(139, 69, 19, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(139, 69, 19, 0.4);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: #2c3e50;
}

/* Company Info Section */
.company-info {
  padding: 100px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.info-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateY(-10px);
}

.info-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.info-card h3 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 15px;
}

.info-card p {
  color: #666;
  line-height: 1.8;
}

/* Business Areas */
.business-areas {
  padding: 100px 0;
  background: white;
}

.section-title {
  text-align: center;
  font-size: 3rem;
  color: #2c3e50;
  margin-bottom: 60px;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #8b4513, #a0522d);
  border-radius: 2px;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.area-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 50px 40px;
  border-radius: 25px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(139, 69, 19, 0.1);
}

.area-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.area-icon {
  font-size: 4rem;
  margin-bottom: 30px;
}

.area-card h3 {
  font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom: 20px;
}

.area-card p {
  color: #666;
  line-height: 1.8;
  font-size: 1.1rem;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #ecf0f1;
}

.footer-section p {
  line-height: 1.8;
  color: #bdc3c7;
}

.footer-bottom {
  border-top: 1px solid #34495e;
  padding-top: 20px;
  text-align: center;
  color: #95a5a6;
}

/* CEO Message Page */
.ceo-hero {
  height: calc(60vh - 80px);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  margin-top: 80px;
}

.ceo-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)),
    url("https://sspark.genspark.ai/cfimages?u1=jeUCTWZo7I0LZKHuabQs0jKALKLI7QdpjFXDM9VzW6vXzSZnPwTMh16j2Yt6ldP14fe%2FXbps0HfC9tzkLorU35B3Au886Q%3D%3D&u2=Lzr91LgQSMzNGwlV&width=2560");
  background-size: cover;
  background-position: center;
  opacity: 0.8;
}

.ceo-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 20px;
}

.ceo-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.ceo-hero-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* CEO Message Content */
.ceo-message {
  padding: 100px 0;
  background: white;
}

.ceo-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}

.ceo-image {
  text-align: center;
  background: white;
  padding: 40px;
  border-radius: 25px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 120px;
}

.ceo-image img {
  width: 100%;
  max-width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 30px;
  border: 5px solid #8b4513;
}

.ceo-name h3 {
  font-size: 1.3rem;
  color: #2c3e50;
  margin-bottom: 10px;
}

.ceo-name p {
  font-size: 1.1rem;
  color: #8b4513;
  font-weight: 600;
}

.ceo-text {
  background: #f8f9fa;
  padding: 60px;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.message-intro {
  margin-bottom: 50px;
}

.message-intro h3 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 25px;
  line-height: 1.4;
}

.message-intro p {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.8;
  font-weight: 300;
}

.message-section {
  margin-bottom: 40px;
}

.message-section h4 {
  font-size: 1.4rem;
  color: #8b4513;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.message-section p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
  text-align: justify;
}

.message-closing {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  padding: 40px;
  border-radius: 20px;
  border-left: 5px solid #8b4513;
  margin-top: 50px;
}

.message-closing h4 {
  font-size: 1.4rem;
  color: #2c3e50;
  margin-bottom: 25px;
}

.message-closing p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

.ceo-signature {
  text-align: right;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #e9ecef;
}

.ceo-signature p {
  font-size: 1.2rem;
  color: #2c3e50;
  font-weight: 600;
  margin-bottom: 5px;
}

.ceo-signature .company-name {
  color: #8b4513;
  font-size: 1rem;
}

/* Philosophy Section */
.philosophy {
  padding: 100px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.philosophy-card {
  background: white;
  padding: 50px 40px;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.philosophy-card:hover {
  transform: translateY(-10px);
}

.philosophy-icon {
  font-size: 4rem;
  margin-bottom: 30px;
}

.philosophy-card h3 {
  font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom: 20px;
}

.philosophy-card p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
}

/* Company Introduction Page */
.company-hero {
  height: calc(60vh - 80px);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  margin-top: 80px;
}

.company-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)),
    url("https://sspark.genspark.ai/cfimages?u1=OMKRaZ3h9bi%2FwymYH6LDtHo2qRitEAzfwVvhVqgmNmKKEweLaTZmDNe2BX7lKIUYiNy4RvUICGM79wp9D5UVGgRt5WMGGhQZnno5EH9qgZLVMUZ0qb5qlL7PEeGKUL1geo8G&u2=%2Ba0g4P46GupoQYYr&width=2560");
  background-size: cover;
  background-position: center;
  opacity: 0.8;
}

.company-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 20px;
}

.company-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.company-hero-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Company Overview */
.company-overview {
  padding: 100px 0;
  background: white;
}

.overview-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.overview-details {
  margin-top: 40px;
}

.detail-item {
  margin-bottom: 30px;
  padding: 25px;
  background: #f8f9fa;
  border-radius: 15px;
  border-left: 5px solid #8b4513;
}

.detail-item h4 {
  font-size: 1.2rem;
  color: #8b4513;
  margin-bottom: 10px;
  font-weight: 600;
}

.detail-item p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}

.overview-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 25px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Company History */
.company-history {
  padding: 100px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.history-timeline {
  margin-top: 60px;
  position: relative;
}

.history-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, #8b4513, #a0522d);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-year {
  background: linear-gradient(135deg, #8b4513, #a0522d);
  color: white;
  padding: 15px 25px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.2rem;
  min-width: 120px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(139, 69, 19, 0.3);
  position: relative;
  z-index: 2;
}

.timeline-content {
  background: white;
  padding: 30px 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  flex: 1;
  margin: 0 40px;
  position: relative;
}

.timeline-content::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 0;
  height: 0;
  border: 15px solid transparent;
  transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-content::before {
  right: -30px;
  border-left-color: white;
}

.timeline-item:nth-child(even) .timeline-content::before {
  left: -30px;
  border-right-color: white;
}

.timeline-content h4 {
  color: #8b4513;
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.timeline-content p {
  color: #666;
  line-height: 1.7;
  font-size: 1.1rem;
}

/* Business Areas Detail */
.business-areas-detail {
  padding: 100px 0;
  background: white;
}

.areas-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  margin-top: 60px;
}

.area-detail-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: start;
  background: #f8f9fa;
  padding: 50px;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.area-detail-card:hover {
  transform: translateY(-5px);
}

.area-detail-icon {
  font-size: 5rem;
  text-align: center;
  background: linear-gradient(135deg, #8b4513, #a0522d);
  color: white;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(139, 69, 19, 0.3);
}

.area-detail-content h3 {
  color: #2c3e50;
  font-size: 2rem;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 3px solid #8b4513;
}

.area-detail-content h4 {
  color: #8b4513;
  font-size: 1.3rem;
  margin: 25px 0 15px 0;
  font-weight: 600;
}

.area-detail-content p {
  color: #555;
  line-height: 1.8;
  font-size: 1.1rem;
  margin-bottom: 20px;
  text-align: justify;
}

.area-features {
  background: white;
  padding: 30px;
  border-radius: 15px;
  margin-top: 25px;
}

.area-features h4 {
  margin-top: 0;
  margin-bottom: 20px;
}

.area-features ul {
  list-style: none;
  padding: 0;
}

.area-features li {
  padding: 10px 0;
  padding-left: 25px;
  position: relative;
  color: #555;
  font-size: 1.05rem;
}

.area-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #8b4513;
  font-weight: bold;
  font-size: 1.2rem;
}

/* Company Strengths */
.company-strengths {
  padding: 100px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.strengths-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.strength-card {
  background: white;
  padding: 50px 40px;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.strength-card:hover {
  transform: translateY(-10px);
}

.strength-icon {
  font-size: 4rem;
  margin-bottom: 30px;
}

.strength-card h3 {
  color: #2c3e50;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.strength-card p {
  color: #666;
  line-height: 1.7;
  font-size: 1.1rem;
}

/* Contact Page */
.contact-hero {
  height: calc(60vh - 80px);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  margin-top: 80px;
}

.contact-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)),
    url("https://sspark.genspark.ai/cfimages?u1=jeUCTWZo7I0LZKHuabQs0jKALKLI7QdpjFXDM9VzW6vXzSZnPwTMh16j2Yt6ldP14fe%2FXbps0HfC9tzkLorU35B3Au886Q%3D%3D&u2=Lzr91LgQSMzNGwlV&width=2560");
  background-size: cover;
  background-position: center;
  opacity: 0.8;
}

.contact-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 20px;
}

.contact-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.contact-hero-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Contact Info */
.contact-info {
  padding: 100px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.contact-card {
  background: white;
  padding: 50px 40px;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-10px);
}

.contact-icon {
  font-size: 4rem;
  margin-bottom: 30px;
}

.contact-card h3 {
  font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom: 30px;
}

.contact-details {
  text-align: left;
}

.detail-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 15px;
}

.detail-row strong {
  color: #8b4513;
  min-width: 80px;
  font-weight: 600;
}

.detail-row span {
  color: #555;
  line-height: 1.6;
}

/* Contact Form */
.contact-form-section {
  padding: 100px 0;
  background: white;
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
  margin-top: 60px;
}

.contact-form {
  background: #f8f9fa;
  padding: 60px;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 30px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  color: #2c3e50;
  font-weight: 500;
  font-size: 1.1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #8b4513;
  box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.required {
  color: #e74c3c;
  margin-left: 5px;
}

/* Checkbox styling */
.checkbox-label {
  display: flex !important;
  align-items: center;
  cursor: pointer;
  font-size: 1rem !important;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid #8b4513;
  border-radius: 4px;
  margin-right: 10px;
  position: relative;
  transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: #8b4513;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: bold;
}

.privacy-link {
  color: #8b4513;
  text-decoration: none;
  font-weight: 500;
}

.privacy-link:hover {
  text-decoration: underline;
}

.form-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

/* Business Hours */
.business-hours {
  padding: 100px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.hours-card {
  background: white;
  padding: 50px 40px;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.hours-icon {
  font-size: 4rem;
  margin-bottom: 30px;
}

.hours-card h3 {
  font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom: 30px;
}

.hours-details {
  text-align: left;
  margin-bottom: 30px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #e9ecef;
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row span:first-child {
  color: #555;
  font-weight: 500;
}

.hours-row span:last-child {
  color: #8b4513;
  font-weight: 600;
}

.hours-note {
  color: #888;
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: left;
  font-style: italic;
}

.access-details p {
  margin-bottom: 15px;
  line-height: 1.7;
}

.access-details strong {
  color: #8b4513;
}

/* FAQ Section */
.faq-section {
  padding: 100px 0;
  background: white;
}

.faq-container {
  margin-top: 60px;
}

.faq-item {
  background: #f8f9fa;
  margin-bottom: 20px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.faq-item.active {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #e9ecef;
}

.faq-question h3 {
  color: #2c3e50;
  font-size: 1.2rem;
  margin: 0;
  flex: 1;
}

.faq-toggle {
  font-size: 1.8rem;
  color: #8b4513;
  font-weight: bold;
  transition: transform 0.3s ease;
  margin-left: 20px;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: white;
}

.faq-answer p {
  padding: 0 30px 25px 30px;
  color: #555;
  line-height: 1.8;
  font-size: 1.1rem;
}

/* Error and Success Messages */
.error-message {
  color: #e74c3c;
  font-size: 0.9rem;
  margin-top: 5px;
  padding: 5px 0;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #e74c3c;
  background-color: #fdf2f2;
}

.success-message {
  background: linear-gradient(135deg, #d4edda, #c3e6cb);
  border: 2px solid #28a745;
  border-radius: 15px;
  padding: 40px;
  text-align: center;
  margin: 30px 0;
}

.success-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.success-icon {
  width: 60px;
  height: 60px;
  background: #28a745;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.success-content h3 {
  color: #155724;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.success-content p {
  color: #155724;
  font-size: 1.1rem;
  line-height: 1.6;
}
@media (max-width: 968px) {
  .ceo-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ceo-image {
    position: relative;
    top: auto;
    order: -1;
  }

  .ceo-text {
    padding: 40px;
  }

  .ceo-hero-title {
    font-size: 2.5rem;
  }

  .ceo-hero-subtitle {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .ceo-text {
    padding: 30px 20px;
  }

  .message-intro h3 {
    font-size: 1.5rem;
  }

  .message-section h4 {
    font-size: 1.2rem;
  }

  .ceo-hero-title {
    font-size: 2rem;
  }

  .ceo-hero-subtitle {
    font-size: 1.1rem;
  }
}
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .info-grid,
  .areas-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .nav-logo h1 {
    font-size: 1.4rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .btn {
    padding: 12px 25px;
    font-size: 1rem;
  }
}
