@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;1,400&display=swap');

:root {
  --primary: #1C335E;
  --primary-light: #2A4880;
  --secondary: #D4AF37;
  --dark: #121A28;
  --light: #F4F6FA;
  --body-bg: #FFFFFF;
  --text: #3D4A5C;
  --border: #E2E8F0;
  --white: #FFFFFF;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 30px rgba(0,0,0,0.06);
  --shadow-lg: 0 20px 40px rgba(0,0,0,0.1);
  --radius: 8px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--body-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(28, 51, 94, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo svg {
  height: 40px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  padding: 0.5rem 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

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

.nav-cta {
  background: var(--secondary);
  color: var(--dark) !important;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius);
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  background: var(--white);
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-btn span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: var(--white);
  transition: var(--transition);
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--primary);
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(18, 26, 40, 0.92) 0%, rgba(28, 51, 94, 0.85) 100%), url('../img/picture.300632c9.jpg') center/cover no-repeat fixed;
  color: var(--white);
  padding: 6rem 2rem;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-content {
  max-width: 750px;
}

.hero-badge {
  background: rgba(212, 175, 55, 0.2);
  border: 1px solid var(--secondary);
  color: var(--secondary);
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 2rem;
}

.hero h1 {
  color: var(--white);
  font-size: 3.8rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
  max-width: 650px;
  font-weight: 400;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.2rem;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--secondary);
  color: var(--dark);
}

.btn-primary:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-3px);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--dark);
  transform: translateY(-3px);
}

section {
  padding: 6.5rem 2rem;
}

.bg-light {
  background-color: var(--light);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4.5rem auto;
}

.section-subtitle {
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-size: 2.6rem;
  line-height: 1.25;
  margin-bottom: 1.2rem;
}

.section-desc {
  font-size: 1rem;
  color: var(--text);
}

.benefits-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.benefit-card {
  background: var(--white);
  padding: 3rem 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-top: 3px solid transparent;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--secondary);
}

.benefit-icon {
  margin-bottom: 1.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(28, 51, 94, 0.05);
  color: var(--primary);
}

.benefit-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.benefit-card p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
}

.cta-block {
  max-width: 1200px;
  margin: 5rem auto 0 auto;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: var(--radius);
  padding: 4rem;
  text-align: center;
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.cta-block h3 {
  color: var(--white);
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.cta-block p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  opacity: 0.9;
}

.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.service-img-wrapper {
  height: 220px;
  position: relative;
  overflow: hidden;
}

.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-card:hover .service-img-wrapper img {
  transform: scale(1.08);
}

.service-card-content {
  padding: 2rem;
}

.service-card-content h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.service-card-content p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.service-card-link {
  font-weight: 700;
  color: var(--primary);
  font-size: 0.9rem;
  text-decoration: underline;
}

.service-card-link:hover {
  color: var(--secondary);
}

.process-section {
  background: var(--dark);
  color: var(--white);
}

.process-section .section-title {
  color: var(--white);
}

.process-steps {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

.process-step {
  position: relative;
}

.process-num {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 800;
  color: rgba(212, 175, 55, 0.15);
  line-height: 1;
  margin-bottom: 1rem;
}

.process-step h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.process-step p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

.testimonials-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.testimonial-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.testimonial-stars {
  color: var(--secondary);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.testimonial-text {
  font-style: italic;
  font-size: 0.95rem;
  margin-bottom: 1.8rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-meta h4 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.testimonial-meta span {
  font-size: 0.8rem;
  color: #8A98A8;
}

.form-container {
  background: var(--white);
  padding: 3rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.form-title {
  font-size: 1.8rem;
  margin-bottom: 1.8rem;
  text-align: center;
}

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

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-control {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(28, 51, 94, 0.1);
}

.consent-group {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin: 1.8rem 0;
}

.consent-group input[type="checkbox"] {
  margin-top: 0.3rem;
}

.consent-text {
  font-size: 0.8rem;
  line-height: 1.5;
}

.consent-text a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}

.info-item {
  display: flex;
  gap: 1.5rem;
}

.info-icon {
  background: var(--primary);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-details h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.info-details p,
.info-details a {
  font-size: 1rem;
  color: var(--text);
}

.two-col-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  gap: 4.5rem;
  align-items: start;
}

.map-iframe {
  width: 100%;
  height: 450px;
  border: none;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin-top: 3.5rem;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 1.2rem;
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  padding: 1.5rem 2rem;
  text-align: left;
  background: var(--white);
  border: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--secondary);
  transition: var(--transition);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-content {
  padding: 0 2rem 1.8rem 2rem;
  font-size: 0.95rem;
  color: var(--text);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.blog-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.blog-head {
  height: 200px;
  position: relative;
}

.blog-head img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-meta {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(28, 51, 94, 0.9);
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  font-size: 0.75rem;
  color: var(--white);
  font-weight: 600;
}

.blog-body {
  padding: 2rem;
}

.blog-body h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.blog-body p {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.blog-more {
  font-weight: 700;
  color: var(--primary);
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.blog-more:hover {
  color: var(--secondary);
}

.rich-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text);
}

.rich-content p {
  margin-bottom: 1.8rem;
}

.rich-content h2, .rich-content h3 {
  margin: 3rem 0 1.2rem 0;
  line-height: 1.3;
}

.rich-content ul,
.rich-content ol {
  margin-bottom: 1.8rem;
  padding-left: 1.5rem;
}

.rich-content li {
  margin-bottom: 0.5rem;
}

.rich-content blockquote {
  border-left: 4px solid var(--secondary);
  padding-left: 1.5rem;
  margin: 2.5rem 0;
  font-style: italic;
  color: var(--primary);
  font-size: 1.2rem;
}

.legal-layout {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.legal-title {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  text-align: center;
}

.legal-meta {
  text-align: center;
  color: #8A98A8;
  font-size: 0.9rem;
  margin-bottom: 4rem;
}

.legal-section {
  margin-bottom: 3rem;
}

.legal-section h2 {
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.5rem;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.8rem 0;
}

.legal-table th,
.legal-table td {
  padding: 1rem;
  text-align: left;
  border: 1px solid var(--border);
  font-size: 0.9rem;
}

.legal-table th {
  background-color: var(--light);
  font-weight: 700;
  color: var(--primary);
}

footer {
  background: var(--dark);
  color: var(--white);
  padding: 5rem 2rem 2rem 2rem;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-col h4 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background-color: var(--secondary);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--secondary);
}

.footer-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-top: 1.2rem;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

.footer-legal-links a,
.cookie-settings-btn {
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}

.footer-legal-links a:hover,
.cookie-settings-btn:hover {
  color: var(--secondary);
}

.cookie-settings-btn {
  background: none;
  border: none;
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--secondary);
  color: var(--dark);
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  max-width: 420px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
  padding: 1.8rem;
  z-index: 10002;
  border: 1px solid var(--border);
  display: none;
}

.cookie-title {
  font-family: var(--font-body);
  color: var(--primary);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.cookie-text {
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.cookie-preferences {
  margin-bottom: 1.5rem;
  background: var(--light);
  padding: 1rem;
  border-radius: var(--radius);
  display: none;
}

.cookie-pref-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.8rem;
}

.cookie-pref-item:last-child {
  margin-bottom: 0;
}

.cookie-pref-item label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
}

.cookie-pref-item input[type="checkbox"] {
  cursor: pointer;
}

.cookie-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.cookie-btn-row {
  display: flex;
  gap: 0.6rem;
}

.cookie-btn-row .btn {
  flex: 1;
}

.cookie-banner .btn {
  padding: 0.7rem 1.2rem;
  font-size: 0.8rem;
}

@media (max-width: 992px) {
  .benefits-grid,
  .services-grid,
  .testimonials-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .two-col-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero h1 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 75px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 75px);
    background: var(--primary);
    flex-direction: column;
    padding: 3rem 2rem;
    transition: var(--transition);
    z-index: 999;
  }
  .nav-menu.active {
    left: 0;
  }
  .menu-btn {
    display: block;
  }
  .menu-btn.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .menu-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .benefits-grid,
  .services-grid,
  .testimonials-grid,
  .blog-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero {
    padding: 4rem 1rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .legal-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .cookie-banner {
    bottom: 12px;
    right: 12px;
    left: 12px;
    max-width: calc(100% - 24px);
  }
}