:root {
  --primary: #1a3a52;
  --secondary: #d67d3e;
  --accent: #4a90a4;
  --text-dark: #2c2c2c;
  --text-light: #666666;
  --bg-light: #f9f9f9;
  --bg-white: #ffffff;
  --border-color: #e0e0e0;
  --success: #4caf50;
  --warning: #ff9800;
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  object-fit: cover;
  display: block;
}

.header-main {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 80px;
}

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

.nav-main {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-main a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.nav-main a:hover {
  color: var(--secondary);
}

.ad-label {
  background: var(--warning);
  color: white;
  padding: 0.4rem 0.9rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
}

.hero-split {
  display: flex;
  min-height: 600px;
  align-items: stretch;
}

.hero-content {
  flex: 1;
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: white;
}

.hero-visual {
  flex: 1;
  background-color: #3a5a6e;
  position: relative;
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.hero-content p {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.cta-primary {
  display: inline-block;
  background: var(--secondary);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--secondary);
  cursor: pointer;
  font-size: 1rem;
}

.cta-primary:hover {
  background: transparent;
  border-color: white;
  color: white;
}

.section-split {
  display: flex;
  align-items: stretch;
  min-height: 500px;
}

.split-content {
  flex: 1;
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-visual {
  flex: 1;
  background-color: #e8e8e8;
  position: relative;
}

.split-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-split.reverse {
  flex-direction: row-reverse;
}

.split-content h2 {
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
  font-weight: 700;
}

.split-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.split-content ul {
  list-style: none;
  margin: 1.5rem 0;
}

.split-content ul li {
  padding: 0.7rem 0;
  padding-left: 2rem;
  position: relative;
  font-size: 1.05rem;
  color: var(--text-light);
}

.split-content ul li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: bold;
  font-size: 1.2rem;
}

.services-grid {
  padding: 5rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.services-grid h2 {
  font-size: 2.6rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary);
}

.grid-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.service-card {
  flex: 1;
  min-width: 300px;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.service-image {
  width: 100%;
  height: 220px;
  background-color: #d0d0d0;
}

.service-image img {
  width: 100%;
  height: 100%;
}

.service-body {
  padding: 2rem;
}

.service-body h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  color: var(--primary);
}

.service-body p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.price-tag {
  display: inline-block;
  background: var(--secondary);
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1.1rem;
}

.form-section {
  background: var(--bg-light);
  padding: 5rem 2rem;
}

.form-container {
  max-width: 700px;
  margin: 0 auto;
  background: white;
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-container h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.form-container p {
  margin-bottom: 2rem;
  color: var(--text-light);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

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

.btn-submit {
  width: 100%;
  background: var(--secondary);
  color: white;
  padding: 1.1rem;
  border: none;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-submit:hover {
  background: #c06b2f;
}

.footer-main {
  background: var(--primary);
  color: white;
  padding: 3rem 2rem 1.5rem;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-column h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

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

.footer-column ul li {
  margin-bottom: 0.6rem;
}

.footer-column a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: white;
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.8;
}

.disclaimer-section {
  background: #fff8e1;
  padding: 2rem;
  margin: 3rem 0;
  border-left: 4px solid var(--warning);
}

.disclaimer-section p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-dark);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  color: white;
  padding: 1.5rem 2rem;
  z-index: 2000;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
  display: none;
}

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

.cookie-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-text {
  flex: 1;
  font-size: 0.95rem;
}

.cookie-actions {
  display: flex;
  gap: 1rem;
}

.btn-cookie {
  padding: 0.7rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-accept {
  background: var(--success);
  color: white;
}

.btn-accept:hover {
  background: #45a049;
}

.btn-reject {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-reject:hover {
  background: white;
  color: var(--primary);
}

.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
}

.page-header h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.page-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.page-content h2 {
  font-size: 2rem;
  margin: 2.5rem 0 1rem;
  color: var(--primary);
}

.page-content h3 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  color: var(--text-dark);
}

.page-content p {
  margin-bottom: 1.2rem;
  line-height: 1.8;
  color: var(--text-light);
}

.page-content ul,
.page-content ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.page-content li {
  margin-bottom: 0.8rem;
  line-height: 1.7;
  color: var(--text-light);
}

.contact-split {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

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

.contact-map {
  flex: 1;
  min-width: 300px;
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 8px;
}

.info-block {
  margin-bottom: 2rem;
}

.info-block h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: var(--primary);
}

.info-block p {
  color: var(--text-light);
  line-height: 1.7;
}

.email-display {
  color: var(--text-light);
  font-family: monospace;
  font-size: 1rem;
}

.thanks-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 5rem 2rem;
  text-align: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: var(--success);
  border-radius: 50%;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: white;
}

.thanks-container h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.thanks-container p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 1rem;
}

@media (max-width: 968px) {
  .hero-split,
  .section-split {
    flex-direction: column;
  }

  .section-split.reverse {
    flex-direction: column;
  }

  .hero-visual,
  .split-visual {
    min-height: 350px;
  }

  .nav-main {
    flex-wrap: wrap;
    gap: 1rem;
  }

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

  .cookie-actions {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .split-content h2 {
    font-size: 1.8rem;
  }

  .service-card {
    min-width: 100%;
  }

  .header-inner {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
}
