/* コピー塾 — Main Stylesheet */
/* vile-apple-58.css */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-primary: #283433;
  --color-secondary: #4D5C4D;
  --color-accent: #B8C8BA;
  --color-white: #FFFFFF;
  --color-lightgray: #F4F4F4;
  --color-black: #000000;
  --color-gray: #A3A9AA;
  --footer-bg: #283433;
  --footer-text: #F5F5F5;
  --dropdown-bg: rgba(74, 74, 74, 0.95);
}

html, body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  color: #283433;
  overflow-x: hidden;
  max-width: 100vw;
  line-height: 1.6;
  font-weight: 300;
}

h1, h2, h3, h4, h5, h6 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  line-height: 1.3;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* ========================
   CONTAINER
======================== */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========================
   HEADER / NAV
======================== */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  width: 100%;
}

.header-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, rgba(40, 52, 51, 0.7) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.navbar {
  height: 118px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.desktop-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 20px;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 40px;
  flex: 1;
}

.nav-right {
  justify-content: flex-end;
}

.center-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.center-logo svg {
  display: block;
}

.nav-link {
  color: #ffffff !important;
  font-size: 18px;
  font-weight: 300;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.nav-link:hover {
  opacity: 0.75;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.dropdown-btn {
  color: #ffffff !important;
  font-size: 18px;
  font-weight: 300;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown-btn i {
  font-size: 12px;
  transition: transform 0.2s;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 10px;
  min-width: 200px;
  z-index: 200;
  display: none;
}

.dropdown-content-inner {
  background-color: rgba(74, 74, 74, 0.95);
  border-radius: 4px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.dropdown-content-inner a {
  color: #ffffff !important;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-size: 16px;
  font-weight: 300;
  transition: background 0.15s;
}

.dropdown-content-inner a:hover {
  background: rgba(255,255,255,0.1);
}

.nav-dropdown:hover .dropdown-content {
  display: block;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.mobile-logo a {
  display: flex;
  align-items: center;
}

.burger-btn {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 24px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1000;
}

.burger-btn span {
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 1px;
  display: block;
  transition: all 0.3s;
}

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(40, 52, 51, 0.97);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.mobile-menu.is-open {
  display: flex;
}

.mobile-menu a {
  color: #F5F5F5;
  font-size: 24px;
  font-weight: 300;
  font-family: Georgia, 'Times New Roman', serif;
  text-decoration: none;
  transition: color 0.2s;
}

.mobile-menu a:hover {
  color: #B8C8BA;
}

.mobile-menu-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  color: #F5F5F5;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
}

/* ========================
   HERO
======================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #283433;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(40,52,51,0.5) 0%, rgba(40,52,51,0.4) 60%, rgba(40,52,51,0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: #ffffff;
  padding: 120px 20px 80px;
  max-width: 900px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero-content.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-logo {
  margin-bottom: 30px;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.hero-logo.is-visible {
  opacity: 1;
  transform: scale(1);
}

.hero-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 300;
  margin-bottom: 40px;
  opacity: 0.9;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease 0.4s, transform 0.8s ease 0.4s;
}

.hero-buttons.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.btn {
  display: inline-block;
  padding: 14px 36px;
  font-size: 16px;
  font-weight: 300;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: #B8C8BA;
  color: #283433;
  border: 1px solid #B8C8BA;
}

.btn-primary:hover {
  background: #283433;
  color: #B8C8BA;
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}

.btn-outline:hover {
  background: #ffffff;
  color: #283433;
}

/* ========================
   INTRO SECTION
======================== */
.intro-section {
  padding: 100px 20px;
  background: #FFFFFF;
}

.intro-text {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 300;
  line-height: 1.8;
  color: #283433;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.intro-text.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================
   SERVICES / COURSES
======================== */
.services-section {
  padding: 80px 0;
  background: #F4F4F4;
}

.services-header {
  text-align: center;
  padding: 0 20px 60px;
}

.services-header h2 {
  font-size: clamp(28px, 4vw, 52px);
  color: #283433;
  margin-bottom: 16px;
}

.services-header p {
  font-size: 18px;
  color: #4D5C4D;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 300px;
}

.service-card-img {
  position: absolute;
  inset: 0;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(40, 52, 51, 0.45);
}

.title-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 30px;
}

.title-overlay h2 {
  color: #ffffff;
  font-size: clamp(24px, 3vw, 42px);
}

.card-content {
  height: 100%;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 59px 40px;
}

.card-content-right {
  align-items: flex-end;
  text-align: right;
}

.card-content-left {
  align-items: flex-start;
  text-align: left;
}

.card-title {
  color: #F5F5F5;
  font-size: clamp(22px, 2.5vw, 34px);
  margin-bottom: 16px;
}

.card-description {
  color: #B8C8BA;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 24px;
}

.card-btn {
  display: inline-block;
  padding: 10px 24px;
  border: 1px solid #B8C8BA;
  color: #B8C8BA;
  font-size: 14px;
  font-weight: 300;
  text-decoration: none;
  transition: all 0.25s;
}

.card-btn:hover {
  background: #B8C8BA;
  color: #283433;
}

.services-description {
  padding: 60px 20px;
  text-align: center;
}

.services-description-text {
  max-width: 800px;
  margin: 0 auto;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: #4D5C4D;
}

/* ========================
   STATS
======================== */
.stats-section {
  background-color: #4D5C4D;
  padding: 80px 20px;
}

.stats-title {
  text-align: center;
  color: #B8C8BA;
  font-size: clamp(22px, 3vw, 36px);
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s, transform 0.8s;
}

.stats-title.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.stats-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  padding: 20px 40px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.stat-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.stat-value {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 400;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  color: #B8C8BA;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.4;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(184, 200, 186, 0.3);
}

/* ========================
   BENEFITS
======================== */
.benefits-section {
  position: relative;
  padding: 100px 20px;
  overflow: hidden;
}

.benefits-bg {
  position: absolute;
  inset: 0;
}

.benefits-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.benefits-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(40, 52, 51, 0.88);
}

.benefits-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.benefits-title {
  text-align: center;
  color: #F5F5F5;
  font-size: clamp(26px, 3.5vw, 46px);
  margin-bottom: 60px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 80px;
}

.benefit-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.benefit-number {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 48px;
  font-weight: 400;
  color: #B8C8BA;
  line-height: 1;
  flex-shrink: 0;
  min-width: 50px;
}

.benefit-text h3 {
  color: #F5F5F5;
  font-size: 18px;
  margin-bottom: 8px;
}

.benefit-text p {
  color: #B8C8BA;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
}

/* ========================
   ABOUT FOUNDER
======================== */
.founder-section {
  padding: 100px 20px;
  background: #FFFFFF;
}

.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.founder-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.founder-img-main,
.founder-img-secondary {
  overflow: hidden;
}

.founder-img-main {
  grid-column: 1 / -1;
}

.founder-img-main img,
.founder-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.founder-img-main {
  height: 360px;
}

.founder-img-secondary {
  height: 200px;
}

.founder-content {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s, transform 0.8s;
}

.founder-content.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.founder-label {
  color: #B8C8BA;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.founder-content h2 {
  font-size: clamp(26px, 3vw, 42px);
  color: #283433;
  margin-bottom: 24px;
}

.founder-content p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: #4D5C4D;
  margin-bottom: 16px;
}

.founder-content .btn {
  margin-top: 8px;
  border: 1px solid #283433;
  color: #283433;
}

.founder-content .btn:hover {
  background: #283433;
  color: #ffffff;
}

/* ========================
   FAQ
======================== */
.faq-section {
  padding: 100px 20px;
  background: #F4F4F4;
}

.faq-inner {
  max-width: 800px;
  margin: 0 auto;
}

.section-label {
  text-align: center;
  color: #B8C8BA;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  text-align: center;
  font-size: clamp(26px, 3.5vw, 42px);
  color: #283433;
  margin-bottom: 60px;
}

.faq-item {
  border-bottom: 1px solid #B8C8BA;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 24px 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 18px;
  font-weight: 400;
  color: #283433;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.faq-question i {
  color: #B8C8BA;
  font-size: 14px;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.is-open .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.is-open .faq-answer {
  max-height: 400px;
}

.faq-answer p {
  padding: 0 0 24px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: #4D5C4D;
}

/* ========================
   CONTACT SECTION
======================== */
.contact-cta-section {
  padding: 100px 20px;
  background: #283433;
  text-align: center;
}

.contact-cta-section h2 {
  color: #F5F5F5;
  font-size: clamp(26px, 3.5vw, 46px);
  margin-bottom: 20px;
}

.contact-cta-section p {
  color: #B8C8BA;
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ========================
   FOOTER
======================== */
.site-footer {
  background-color: #283433;
  width: 100%;
}

.footer-container {
  padding: 59px 70px 30px;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.footer-main-grid {
  display: grid;
  grid-template-columns: 200px 167px 1fr;
  gap: 174px;
  margin-bottom: 30px;
}

.footer-logo img,
.footer-logo svg {
  width: 160px;
  height: auto;
  object-fit: contain;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-nav a {
  color: #F5F5F5 !important;
  font-size: 18px;
  font-weight: 300;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: #B8C8BA !important;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 27px;
}

.footer-address {
  color: #F5F5F5;
  font-size: 32px;
  font-weight: 300;
  font-style: normal;
}

.footer-phone,
.footer-email {
  color: #B8C8BA;
  font-size: 29px;
  font-weight: 400;
  text-decoration: none;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #F5F5F5;
}

.footer-social i {
  font-size: 20px;
  color: #B8C8BA;
}

.footer-social span {
  font-size: 16px;
  font-weight: 300;
}

.footer-legal {
  margin-bottom: 20px;
}

.footer-company-info {
  color: #F5F5F5;
  font-size: 14px;
  font-weight: 300;
  line-height: 14px;
  text-align: right;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  color: #F5F5F5;
  font-size: 14px;
  font-weight: 300;
  line-height: 32px;
}

.footer-privacy-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-privacy-links a {
  color: #F5F5F5;
  font-size: 14px;
  font-weight: 300;
  line-height: 14px;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-privacy-links a:hover {
  color: #B8C8BA;
}

/* ========================
   INNER PAGE HERO
======================== */
.page-hero {
  background: #283433;
  padding: 160px 20px 80px;
  text-align: center;
}

.page-hero h1 {
  color: #F5F5F5;
  font-size: clamp(32px, 4.5vw, 60px);
  margin-bottom: 16px;
}

.page-hero p {
  color: #B8C8BA;
  font-size: 18px;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
}

/* ========================
   CONTENT SECTION
======================== */
.content-section {
  padding: 80px 20px;
  background: #FFFFFF;
}

.content-inner {
  max-width: 900px;
  margin: 0 auto;
}

.content-inner h2 {
  font-size: clamp(22px, 3vw, 32px);
  color: #283433;
  margin: 40px 0 16px;
}

.content-inner h2:first-child {
  margin-top: 0;
}

.content-inner p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: #4D5C4D;
  margin-bottom: 16px;
}

.content-inner ul {
  margin: 16px 0 16px 24px;
}

.content-inner ul li {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: #4D5C4D;
  margin-bottom: 8px;
}

/* ========================
   CONTACT FORM
======================== */
.contact-section {
  padding: 80px 20px;
  background: #F4F4F4;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(24px, 3vw, 38px);
  color: #283433;
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: #4D5C4D;
  margin-bottom: 30px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-detail-item i {
  color: #B8C8BA;
  font-size: 18px;
  margin-top: 3px;
  flex-shrink: 0;
}

.contact-detail-item span,
.contact-detail-item a {
  font-size: 16px;
  font-weight: 300;
  color: #283433;
  line-height: 1.6;
}

.contact-detail-item a:hover {
  color: #4D5C4D;
}

.contact-form {
  background: #FFFFFF;
  padding: 40px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 300;
  color: #283433;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #B8C8BA;
  background: #FFFFFF;
  color: #283433;
  font-family: inherit;
  font-size: 15px;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #283433;
}

.form-group textarea {
  height: 130px;
  resize: vertical;
}

.form-submit .btn {
  width: 100%;
  background: #283433;
  color: #F5F5F5;
  border: 1px solid #283433;
  font-size: 16px;
  text-align: center;
}

.form-submit .btn:hover {
  background: #4D5C4D;
  border-color: #4D5C4D;
}

/* ========================
   COOKIES GDPR
======================== */
.cookie-alert {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(40, 52, 51, 0.97);
  color: #F5F5F5;
  z-index: 9999;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-alert.is-visible {
  transform: translateY(0);
}

.cookie-text {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  max-width: 700px;
}

.cookie-text a {
  color: #B8C8BA;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cookie-btn-accept {
  background: #B8C8BA;
  color: #283433;
  border: 1px solid #B8C8BA;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 300;
  cursor: pointer;
  transition: all 0.2s;
}

.cookie-btn-accept:hover {
  background: #283433;
  color: #B8C8BA;
}

.cookie-btn-necessary {
  background: transparent;
  color: #F5F5F5;
  border: 1px solid rgba(245,245,245,0.4);
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 300;
  cursor: pointer;
  transition: all 0.2s;
}

.cookie-btn-necessary:hover {
  border-color: #F5F5F5;
}

/* ========================
   ABOUT PAGE
======================== */
.about-section {
  padding: 80px 20px;
  background: #FFFFFF;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto 80px;
  align-items: center;
}

.about-img {
  overflow: hidden;
  height: 500px;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text h2 {
  font-size: clamp(24px, 3vw, 38px);
  color: #283433;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: #4D5C4D;
  margin-bottom: 16px;
}

.about-values {
  padding: 80px 20px;
  background: #F4F4F4;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.value-item {
  text-align: center;
  padding: 40px 24px;
  background: #FFFFFF;
}

.value-item i {
  font-size: 32px;
  color: #B8C8BA;
  margin-bottom: 20px;
  display: block;
}

.value-item h3 {
  font-size: 20px;
  color: #283433;
  margin-bottom: 12px;
}

.value-item p {
  font-size: 15px;
  font-weight: 300;
  color: #4D5C4D;
  line-height: 1.7;
}

/* ========================
   RESPONSIVE
======================== */
@media (min-width: 1025px) and (max-width: 1200px) {
  .desktop-nav {
    display: grid !important;
    grid-template-columns: 1fr auto 1fr !important;
    align-items: center !important;
    width: 100% !important;
  }
  .center-logo {
    position: static !important;
    left: auto !important;
    transform: none !important;
    justify-self: center !important;
  }
  .nav-left { justify-self: start !important; gap: 20px !important; }
  .nav-right { justify-self: end !important; gap: 20px !important; }
  .nav-link, .dropdown-btn { font-size: 14px !important; }
}

@media (max-width: 1024px) {
  .desktop-nav { display: none !important; }
  .mobile-nav { display: flex !important; }
  .navbar { height: 80px !important; }

  .footer-container { padding: 40px 30px !important; }
  .footer-main-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
    text-align: center !important;
    justify-items: center !important;
  }
  .footer-nav { align-items: center !important; }
  .footer-bottom { flex-direction: column !important; gap: 12px !important; }
  .footer-company-info { text-align: center !important; font-size: 13px !important; }
  .footer-address { font-size: 28px !important; text-align: center !important; }
  .footer-phone, .footer-email { font-size: 24px !important; text-align: center !important; }
  .footer-privacy-links { justify-content: center; }

  .services-grid { grid-template-columns: 1fr !important; }
  .benefits-grid { grid-template-columns: 1fr !important; }
  .founder-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
  .about-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
  .contact-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
  .values-grid { grid-template-columns: 1fr 1fr !important; }
}

@media (max-width: 768px) {
  .footer-container {
    padding: 30px 20px !important;
    align-items: center !important;
    text-align: center !important;
  }
  .footer-main-grid {
    gap: 30px !important;
  }
  .stats-grid { flex-direction: column; }
  .stat-divider { width: 60px; height: 1px; }
  .values-grid { grid-template-columns: 1fr !important; }
  .contact-form { padding: 24px; }

  .cookie-alert {
    flex-direction: column;
    padding: 20px;
    text-align: center;
  }
  .cookie-buttons { justify-content: center; }
}
