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

:root {
  --primary: #1a4d7c;
  --secondary: #2c6b99;
  --accent: #e8a03a;
  --text: #2b2b2b;
  --light: #f8f9fa;
  --border: #dce0e3;
  --white: #ffffff;
}

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  line-height: 1.8;
  color: var(--text);
  background: var(--white);
}

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

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

header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  font-size: 22px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: -0.5px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav a {
  text-decoration: none;
  color: var(--text);
  font-size: 15px;
  transition: color 0.3s;
}

nav a:hover {
  color: var(--primary);
}

.hero-editorial {
  padding: 80px 20px 60px;
  text-align: center;
}

.hero-editorial h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 24px;
  font-weight: 700;
  color: var(--primary);
}

.hero-editorial .subtitle {
  font-size: 22px;
  color: #5a5a5a;
  font-style: italic;
  margin-bottom: 40px;
}

.hero-editorial .cta-primary {
  display: inline-block;
  padding: 16px 40px;
  background: var(--accent);
  color: var(--white);
  text-decoration: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  transition: background 0.3s;
}

.hero-editorial .cta-primary:hover {
  background: #d18f2c;
}

.article-body {
  padding: 60px 0;
}

.article-section {
  margin-bottom: 60px;
}

.article-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--primary);
  line-height: 1.3;
}

.article-section h3 {
  font-size: 24px;
  margin-bottom: 16px;
  margin-top: 40px;
  color: var(--secondary);
}

.article-section p {
  font-size: 18px;
  margin-bottom: 20px;
  line-height: 1.8;
}

.inline-image {
  margin: 40px 0;
  text-align: center;
}

.inline-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.inline-image figcaption {
  margin-top: 12px;
  font-size: 15px;
  color: #666;
  font-style: italic;
}

.highlight-box {
  background: var(--light);
  border-left: 4px solid var(--accent);
  padding: 24px;
  margin: 40px 0;
  border-radius: 4px;
}

.highlight-box p {
  margin-bottom: 0;
  font-size: 17px;
  color: var(--text);
}

.inline-cta {
  background: var(--primary);
  color: var(--white);
  padding: 32px;
  text-align: center;
  margin: 60px 0;
  border-radius: 8px;
}

.inline-cta h3 {
  color: var(--white);
  margin: 0 0 16px 0;
  font-size: 26px;
}

.inline-cta p {
  margin-bottom: 24px;
  font-size: 17px;
}

.inline-cta a {
  display: inline-block;
  padding: 14px 36px;
  background: var(--accent);
  color: var(--white);
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: background 0.3s;
}

.inline-cta a:hover {
  background: #d18f2c;
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 60px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 32px;
  border-radius: 8px;
  transition: box-shadow 0.3s;
}

.service-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.service-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--primary);
}

.service-card p {
  font-size: 17px;
  margin-bottom: 20px;
  color: #4a4a4a;
}

.service-price {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 20px;
}

.service-card .btn-select {
  display: inline-block;
  padding: 12px 28px;
  background: var(--secondary);
  color: var(--white);
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-size: 15px;
  transition: background 0.3s;
}

.service-card .btn-select:hover {
  background: var(--primary);
}

.form-section {
  background: var(--light);
  padding: 60px 20px;
  margin-top: 80px;
}

.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.form-wrapper h2 {
  font-size: 32px;
  margin-bottom: 24px;
  color: var(--primary);
  text-align: center;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 15px;
  font-family: inherit;
}

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

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.form-submit:hover {
  background: #d18f2c;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--accent);
  color: var(--white);
  padding: 16px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  z-index: 99;
  transition: transform 0.3s;
}

.sticky-cta:hover {
  transform: translateY(-2px);
}

footer {
  background: var(--primary);
  color: var(--white);
  padding: 60px 20px 40px;
  margin-top: 100px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-col {
  flex: 1;
  min-width: 200px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 30px;
  text-align: center;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26, 77, 124, 0.97);
  color: var(--white);
  padding: 24px 20px;
  z-index: 1000;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.2);
  display: none;
}

.cookie-banner.active {
  display: block;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-text {
  flex: 1;
  font-size: 15px;
  min-width: 250px;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
}

.cookie-btn {
  padding: 10px 24px;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
  transition: opacity 0.3s;
}

.cookie-accept {
  background: var(--accent);
  color: var(--white);
}

.cookie-reject {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}

.cookie-btn:hover {
  opacity: 0.9;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--primary);
  transition: all 0.3s;
}

.testimonial-section {
  background: var(--light);
  padding: 60px 20px;
  margin: 80px 0;
}

.testimonial-wrapper {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-wrapper blockquote {
  font-size: 20px;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 24px;
  color: var(--text);
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary);
  font-size: 16px;
}

.about-intro {
  padding: 80px 20px;
  text-align: center;
  background: var(--light);
}

.about-intro h1 {
  font-size: 44px;
  margin-bottom: 24px;
  color: var(--primary);
}

.about-intro p {
  font-size: 20px;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

.team-section {
  padding: 80px 20px;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 60px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.team-member {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.team-member img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
}

.team-member h3 {
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--primary);
}

.team-member p {
  font-size: 16px;
  color: #666;
}

.contact-section {
  padding: 80px 20px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  margin-top: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.contact-info {
  flex: 1;
  min-width: 280px;
}

.contact-info h2 {
  font-size: 32px;
  margin-bottom: 32px;
  color: var(--primary);
}

.info-item {
  margin-bottom: 28px;
}

.info-item h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-item p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
}

.legal-page {
  padding: 80px 20px;
}

.legal-page h1 {
  font-size: 40px;
  margin-bottom: 32px;
  color: var(--primary);
}

.legal-page h2 {
  font-size: 28px;
  margin-top: 48px;
  margin-bottom: 20px;
  color: var(--secondary);
}

.legal-page h3 {
  font-size: 22px;
  margin-top: 32px;
  margin-bottom: 16px;
  color: var(--secondary);
}

.legal-page p {
  font-size: 17px;
  margin-bottom: 20px;
  line-height: 1.7;
}

.legal-page ul {
  margin-left: 30px;
  margin-bottom: 20px;
}

.legal-page ul li {
  font-size: 17px;
  margin-bottom: 12px;
  line-height: 1.6;
}

.thanks-page {
  padding: 120px 20px;
  text-align: center;
  min-height: 70vh;
}

.thanks-page h1 {
  font-size: 48px;
  margin-bottom: 24px;
  color: var(--primary);
}

.thanks-page p {
  font-size: 20px;
  margin-bottom: 40px;
  color: var(--text);
}

.thanks-page .btn-home {
  display: inline-block;
  padding: 16px 40px;
  background: var(--accent);
  color: var(--white);
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: background 0.3s;
}

.thanks-page .btn-home:hover {
  background: #d18f2c;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  nav {
    position: fixed;
    top: 72px;
    left: -100%;
    width: 100%;
    background: var(--white);
    padding: 30px 20px;
    transition: left 0.3s;
    border-bottom: 1px solid var(--border);
  }

  nav.active {
    left: 0;
  }

  nav ul {
    flex-direction: column;
    gap: 20px;
  }

  .hero-editorial h1 {
    font-size: 36px;
  }

  .hero-editorial .subtitle {
    font-size: 18px;
  }

  .article-section h2 {
    font-size: 28px;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .sticky-cta {
    bottom: 10px;
    right: 10px;
    padding: 12px 20px;
    font-size: 14px;
  }

  .footer-content {
    gap: 40px;
  }

  .contact-grid {
    gap: 40px;
  }
}
