/* 
* Flowkz - Консалтинг по передаче благосостояния и наследственному планированию
* Стиль: Transparency-Driven Design
* Тип компоновки: Luxury Single-column Flow
*/


:root {
  --primary-color: #2C3E50;
  --secondary-color: #E67E22;
  --accent-color: #3498DB;
  --bg-light: #F8F9FA;
  --bg-dark: #1A2530;
  --text-primary: #333333;
  --text-secondary: #7F8C8D;
  --success: #2ECC71;
  --warning: #F39C12;
  --error: #E74C3C;
  --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.05);
  --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.1);
  --shadow-dark: 0 10px 40px rgba(0, 0, 0, 0.2);
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
  --border-radius-small: 4px;
  --border-radius-medium: 8px;
  --border-radius-large: 12px;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 5rem;
  --content-width: 1200px;
}

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

html, body {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1.5rem;
}

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

a:hover, a:focus {
  color: var(--secondary-color);
  text-decoration: none;
}

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

.button {
  background-color: var(--secondary-color);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius-medium);
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: background-color var(--transition-fast), transform var(--transition-fast);
  text-align: center;
  display: inline-block;
}

.button:hover, .button:focus {
  background-color: #d35400;
  color: white;
  transform: translateY(-2px);
}

.button.secondary {
  background-color: var(--accent-color);
}

.button.secondary:hover, .button.secondary:focus {
  background-color: #2980b9;
}

.button.large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.lead {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 2rem;
}

.section-intro {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 3rem;
  color: var(--text-secondary);
}


.iti {
  width: 100%;
}


.site-header {
  padding: 1rem 0;
  background-color: white;
  box-shadow: var(--shadow-light);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo-container {
  display: block;
}

.logo {
  height: 50px;
  width: auto;
}

.main-nav ul {
  list-style: none;
  display: flex;
  margin: 0;
}

.main-nav a {
  padding: 0.5rem 1rem;
  color: var(--primary-color);
  font-weight: 500;
  position: relative;
}

.main-nav a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  transition: width var(--transition-medium), left var(--transition-medium);
}

.main-nav a:hover:after, .main-nav a:focus:after, .main-nav a.active:after {
  width: 100%;
  left: 0;
}

.contact-phone a {
  color: var(--primary-color);
  font-weight: 600;
  display: flex;
  align-items: center;
}

.contact-phone i {
  margin-right: 0.5rem;
  color: var(--secondary-color);
}


.menu-icon {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 20px;
  width: 30px;
  padding: 0;
  position: relative;
}

.menu-icon:before, .menu-icon:after, .menu-icon span {
  background-color: var(--primary-color);
  content: '';
  display: block;
  height: 3px;
  transition: transform var(--transition-medium), opacity var(--transition-medium);
  width: 100%;
}

.mobile-menu-container {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: calc(100vh - 80px);
  background-color: white;
  z-index: 90;
  padding: 2rem;
  box-shadow: var(--shadow-medium);
  transform: translateX(-100%);
  transition: transform var(--transition-medium);
  overflow-y: auto;
}

.mobile-menu-container.is-open {
  transform: translateX(0);
}

.mobile-nav ul {
  list-style: none;
  margin: 0;
}

.mobile-nav a {
  display: block;
  padding: 1rem 0;
  color: var(--primary-color);
  font-weight: 500;
  border-bottom: 1px solid #eee;
}

.mobile-nav a.active {
  color: var(--secondary-color);
}

.mobile-phone {
  margin-top: 2rem;
}


.hero-section {
  padding: 6rem 0;
  background-color: var(--primary-color);
  background-size: cover;
  background-position: center;
  color: white;
  position: relative;
}

.hero-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(26, 37, 48, 0.7), rgba(26, 37, 48, 0.9));
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  color: white;
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.hero-content .lead {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.hero-metrics {
  display: flex;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.metric {
  margin-right: 3rem;
  margin-bottom: 1rem;
}

.metric .number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--secondary-color);
}

.metric .label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.cta-button {
  box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}


.page-header {
  padding: 5rem 0;
  background-color: var(--primary-color);
  color: white;
  text-align: center;
}

.page-header h1 {
  color: white;
  margin-bottom: 1rem;
}

.page-header .lead {
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin: 0 auto;
}


.main-service {
  padding: 5rem 0;
  background-color: white;
}

.service-image img {
  border-radius: var(--border-radius-medium);
  box-shadow: var(--shadow-medium);
}

.service-description {
  padding: 1rem 0;
}

.service-list {
  list-style: none;
  margin: 2rem 0;
}

.service-list li {
  display: flex;
  margin-bottom: 1.5rem;
}

.service-list i {
  color: var(--secondary-color);
  font-size: 1.2rem;
  margin-right: 1rem;
  margin-top: 0.3rem;
}

.service-list h4 {
  margin-bottom: 0.5rem;
}

.service-list p {
  margin-bottom: 0;
  color: var(--text-secondary);
}

.service-timeframe {
  padding: 1rem;
  background-color: var(--bg-light);
  border-left: 3px solid var(--secondary-color);
  border-radius: var(--border-radius-small);
}


.process-section {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.process-visualization {
  position: relative;
  margin: 3rem 0;
}

.process-chart {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  display: block;
  border-radius: var(--border-radius-medium);
  box-shadow: var(--shadow-medium);
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 3rem;
}

.step {
  flex: 1;
  min-width: 250px;
  margin-bottom: 2rem;
  padding: 0 1rem;
  position: relative;
  display: flex;
}

.step-number {
  width: 50px;
  height: 50px;
  background-color: var(--secondary-color);
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 1rem;
  flex-shrink: 0;
}

.step-content {
  flex-grow: 1;
}

.step-content h4 {
  margin-bottom: 0.5rem;
}

.step-content p {
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

.timeline {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  background-color: var(--accent-color);
  color: white;
  font-size: 0.8rem;
  border-radius: var(--border-radius-small);
}


.metrics-section {
  padding: 5rem 0;
  background-color: white;
}

.metrics-container {
  margin-bottom: 3rem;
}

.metric-card {
  background-color: var(--bg-light);
  border-radius: var(--border-radius-medium);
  padding: 2rem;
  margin-bottom: 2rem;
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

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

.metric-value {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.metric-label {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.metric-description {
  color: var(--text-secondary);
  margin-bottom: 0;
}

.metrics-visual {
  margin: 2rem auto;
  text-align: center;
}

.metrics-chart {
  max-width: 100%;
  border-radius: var(--border-radius-medium);
  box-shadow: var(--shadow-medium);
}


.faq-section {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.accordion {
  margin-top: 2rem;
}

.accordion-item {
  margin-bottom: 1rem;
  border-radius: var(--border-radius-medium);
  overflow: hidden;
  box-shadow: var(--shadow-light);
}

.accordion-title {
  padding: 1.25rem;
  background-color: white;
  color: var(--primary-color);
  font-weight: 600;
  display: block;
  position: relative;
  padding-right: 3rem;
}

.accordion-title:hover, .accordion-title:focus {
  background-color: var(--bg-light);
  color: var(--primary-color);
}

.accordion-title:after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  transition: transform var(--transition-fast);
}

.is-active > .accordion-title:after {
  transform: translateY(-50%) rotate(180deg);
}

.accordion-content {
  padding: 1.25rem;
  background-color: white;
  border-top: 1px solid #eee;
}


.contact-form-section {
  padding: 5rem 0;
  background-color: white;
}

.contact-form {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: var(--border-radius-medium);
  box-shadow: var(--shadow-medium);
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: var(--border-radius-small);
  margin-bottom: 1.5rem;
  font-family: inherit;
}

.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

.consent-checkbox {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.consent-checkbox input {
  margin-right: 0.5rem;
  margin-top: 0.3rem;
  width: auto;
}

.consent-checkbox label {
  margin-bottom: 0;
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--text-secondary);
}


.thank-you-section {
  padding: 6rem 0;
  background-color: white;
}

.thank-you-content {
  text-align: center;
  padding: 3rem;
  background-color: var(--bg-light);
  border-radius: var(--border-radius-medium);
  box-shadow: var(--shadow-medium);
}

.thank-you-icon {
  margin-bottom: 2rem;
}

.thank-you-icon i {
  font-size: 5rem;
  color: var(--success);
}

.thank-you-cta {
  margin-top: 2rem;
}


.mission-description, .legal-standards, .methodology-section {
  padding: 5rem 0;
  background-color: white;
}

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

.mission-content, .standards-content, .methodology-content {
  max-width: 800px;
  margin: 0 auto;
}

.intro-paragraph {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.mission-image, .legal-image {
  margin: 2rem 0;
}

.mission-image img, .legal-image img {
  width: 100%;
  border-radius: var(--border-radius-medium);
  box-shadow: var(--shadow-medium);
}

.mission-values {
  margin: 3rem 0;
}

.values-list {
  list-style: none;
}

.values-list li {
  display: flex;
  margin-bottom: 2rem;
}

.values-list i {
  color: var(--secondary-color);
  font-size: 1.5rem;
  margin-right: 1.5rem;
  margin-top: 0.5rem;
}

.values-list h4 {
  margin-bottom: 0.5rem;
}

.standard-item {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background-color: var(--bg-light);
  border-radius: var(--border-radius-medium);
  box-shadow: var(--shadow-light);
}

.standard-item h4 {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.methodology-principles {
  margin: 3rem 0;
}

.principle {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.principle-icon {
  width: 60px;
  height: 60px;
  background-color: var(--secondary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.principle-icon i {
  font-size: 1.5rem;
}

.principle-content h4 {
  margin-bottom: 0.5rem;
}

.cta-block {
  margin-top: 4rem;
  padding: 2rem;
  background-color: var(--primary-color);
  color: white;
  border-radius: var(--border-radius-medium);
  text-align: center;
}

.cta-block h3 {
  color: white;
}

.cta-block p {
  color: rgba(255, 255, 255, 0.9);
}


.service-description-section, .plan-stages-section, .inheritance-calculator-section {
  padding: 5rem 0;
}

.service-description-section {
  background-color: white;
}

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

.inheritance-calculator-section {
  background-color: white;
}

.service-overview, .stages-content, .calculator-container {
  max-width: 800px;
  margin: 0 auto;
}

.service-image {
  margin-bottom: 2rem;
}

.service-image img {
  width: 100%;
  border-radius: var(--border-radius-medium);
  box-shadow: var(--shadow-medium);
}

.service-components {
  margin: 3rem 0;
}

.component {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

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

.component-icon i {
  font-size: 1.5rem;
}

.component-content h3 {
  margin-bottom: 0.5rem;
}

.stages-image {
  margin: 2rem 0;
}

.stages-image img {
  width: 100%;
  border-radius: var(--border-radius-medium);
  box-shadow: var(--shadow-medium);
}

.stages-timeline {
  margin: 3rem 0;
}

.stage {
  display: flex;
  margin-bottom: 2rem;
  position: relative;
}

.stage-marker {
  width: 40px;
  height: 40px;
  background-color: var(--secondary-color);
  color: white;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  flex-shrink: 0;
  position: relative;
}

.stage-marker:after {
  content: '';
  position: absolute;
  top: 40px;
  left: 50%;
  width: 2px;
  height: calc(100% - 20px);
  background-color: #ddd;
  transform: translateX(-50%);
}

.stage:last-child .stage-marker:after {
  display: none;
}

.stage-info h3 {
  margin-bottom: 0.5rem;
}

.stage-timeframe {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.5rem;
  background-color: var(--accent-color);
  color: white;
  font-size: 0.8rem;
  border-radius: var(--border-radius-small);
  margin-top: 0.5rem;
}

.stage-timeframe i {
  margin-right: 0.25rem;
}

.expected-results {
  margin-top: 3rem;
  padding: 2rem;
  background-color: white;
  border-radius: var(--border-radius-medium);
  box-shadow: var(--shadow-light);
}

.results-list {
  list-style: none;
  margin: 1.5rem 0 0;
}

.results-list li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: flex-start;
}

.results-list i {
  color: var(--success);
  margin-right: 0.75rem;
  margin-top: 0.3rem;
}

.calculator-intro {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.calculator-disclaimer {
  padding: 1rem;
  background-color: #f8f4e5;
  border-left: 3px solid var(--warning);
  margin-bottom: 2rem;
  border-radius: var(--border-radius-small);
}

.calculator-form {
  padding: 2rem;
  background-color: var(--bg-light);
  border-radius: var(--border-radius-medium);
  box-shadow: var(--shadow-medium);
  margin-bottom: 2rem;
}

.asset-sliders, .heirs-distribution {
  margin-bottom: 1.5rem;
}

.asset-slider, .heir-row {
  margin-bottom: 1rem;
}

.slider-container {
  display: flex;
  align-items: center;
}

.slider-container input {
  flex-grow: 1;
  margin-right: 1rem;
}

.total-percentage {
  font-weight: 600;
  margin-top: 1rem;
  text-align: right;
}

.calculation-results {
  padding: 2rem;
  background-color: var(--bg-light);
  border-radius: var(--border-radius-medium);
  box-shadow: var(--shadow-medium);
  margin-top: 2rem;
}

.results-chart-container {
  height: 250px;
  margin-bottom: 2rem;
}

.tax-estimation {
  padding: 1.5rem;
  background-color: white;
  border-radius: var(--border-radius-medium);
  box-shadow: var(--shadow-light);
  margin-bottom: 2rem;
}

.tax-efficiency-meter {
  margin-top: 1rem;
}

.tax-efficiency-bar {
  height: 10px;
  background-color: #eee;
  border-radius: 5px;
  overflow: hidden;
  margin: 0.5rem 0;
}

.indicator {
  height: 100%;
  background-color: var(--success);
  border-radius: 5px;
}

.tax-efficiency-value {
  text-align: right;
  font-weight: 600;
}

.recommendations {
  padding: 1.5rem;
  background-color: white;
  border-radius: var(--border-radius-medium);
  box-shadow: var(--shadow-light);
  margin-bottom: 1.5rem;
}

.recommendations ul {
  margin-left: 1.5rem;
}

.disclaimer {
  padding: 1rem;
  background-color: #f8f4e5;
  border-left: 3px solid var(--warning);
  border-radius: var(--border-radius-small);
  margin-bottom: 2rem;
}

.results-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
}


.guide-intro-section, .articles-section, .note-section {
  padding: 5rem 0;
}

.guide-intro-section, .note-section {
  background-color: white;
}

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

.guide-intro, .articles-container, .note-container {
  max-width: 800px;
  margin: 0 auto;
}

.guide-image {
  margin-bottom: 2rem;
}

.guide-image img {
  width: 100%;
  border-radius: var(--border-radius-medium);
  box-shadow: var(--shadow-medium);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.benefit {
  display: flex;
  align-items: flex-start;
}

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

.benefit-icon i {
  font-size: 1.2rem;
}

.benefit-content h4 {
  margin-bottom: 0.5rem;
}

.articles-intro {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.article-cards {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.article-card {
  background-color: white;
  border-radius: var(--border-radius-medium);
  box-shadow: var(--shadow-medium);
  overflow: hidden;
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

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

.article-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.article-content {
  padding: 2rem;
}

.article-content h3 {
  margin-bottom: 1rem;
}

.article-content p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.note-container {
  padding: 2rem;
  background-color: #f8f4e5;
  border-radius: var(--border-radius-medium);
  box-shadow: var(--shadow-light);
}

.note-container h3 {
  display: flex;
  align-items: center;
  color: var(--warning);
  margin-bottom: 1rem;
}

.note-container h3 i {
  margin-right: 0.75rem;
}


.cta-section {
  padding: 5rem 0;
  background-color: var(--primary-color);
  color: white;
}

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

.cta-content h2 {
  color: white;
  margin-bottom: 1.5rem;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}


.article-content {
  padding: 5rem 0;
  background-color: white;
}

.article-header {
  margin-bottom: 3rem;
}

.article-meta {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 1rem;
}

.article-body h2 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #eee;
}

.article-body h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.article-body ul, .article-body ol {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.article-body li {
  margin-bottom: 0.5rem;
}

.note-box, .example-box, .disclaimer-box {
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: var(--border-radius-medium);
}

.note-box {
  background-color: #e8f4fd;
  border-left: 3px solid var(--accent-color);
}

.example-box {
  background-color: #f0f7ef;
  border-left: 3px solid var(--success);
}

.disclaimer-box {
  background-color: #f8f4e5;
  border-left: 3px solid var(--warning);
}


.contact-info-section, .map-section {
  padding: 5rem 0;
}

.contact-info-section {
  background-color: white;
}

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

.contact-details {
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  margin-bottom: 2rem;
}

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

.contact-icon i {
  font-size: 1.2rem;
}

.contact-text h3 {
  margin-bottom: 0.5rem;
}

.contact-image {
  margin: 2rem 0;
}

.contact-image img {
  width: 100%;
  border-radius: var(--border-radius-medium);
  box-shadow: var(--shadow-medium);
}

.contact-form-container {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: var(--border-radius-medium);
  box-shadow: var(--shadow-medium);
  height: 100%;
}

.alternative-contact {
  margin-top: 2rem;
  text-align: center;
}

.phone-link {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--secondary-color);
  color: white;
  border-radius: var(--border-radius-medium);
  font-weight: 600;
  margin-top: 0.5rem;
}

.phone-link:hover {
  background-color: #d35400;
  color: white;
}

.map-container {
  margin-top: 2rem;
}

.office-map {
  width: 100%;
  border-radius: var(--border-radius-medium);
  box-shadow: var(--shadow-medium);
}


.legal-content {
  padding: 5rem 0;
  background-color: white;
}

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

.legal-date {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.legal-body h2 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #eee;
}

.legal-body h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-body ul, .legal-body ol {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.legal-body li {
  margin-bottom: 0.5rem;
}

.legal-body address {
  margin: 1.5rem 0;
  font-style: normal;
}


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

.footer-logo {
  height: 40px;
  margin-bottom: 1.5rem;
}

.footer-contact p {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}

.footer-contact i {
  margin-right: 0.75rem;
  color: var(--secondary-color);
}

.footer-contact a {
  color: white;
}

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

.footer-nav, .footer-legal {
  margin-top: 2rem;
}

.footer-nav h4, .footer-legal h4 {
  color: white;
  margin-bottom: 1.5rem;
}

.footer-nav ul, .footer-legal ul {
  list-style: none;
  margin: 0;
}

.footer-nav a, .footer-legal a {
  color: rgba(255, 255, 255, 0.8);
  display: block;
  padding: 0.5rem 0;
}

.footer-nav a:hover, .footer-legal a:hover {
  color: var(--secondary-color);
}

.copyright {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}


.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 1.5rem;
  display: none;
}

.cookie-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-text {
  flex: 1;
  min-width: 300px;
}

.cookie-text h3 {
  margin-bottom: 0.5rem;
}

.cookie-text p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

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


.cookie-settings-content {
  margin-top: 1rem;
}

.cookie-categories {
  margin: 2rem 0;
}

.cookie-category {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #eee;
}

.cookie-category:last-child {
  border-bottom: none;
}

.category-header {
  margin-bottom: 0.5rem;
}

.category-name {
  font-weight: 600;
  margin-left: 0.5rem;
}

.category-description {
  margin-left: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

.cookie-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}


.reveal {
  border-radius: var(--border-radius-medium);
  box-shadow: var(--shadow-dark);
  padding: 2rem;
}

.reveal h3 {
  margin-bottom: 1.5rem;
}

.close-button {
  font-size: 2rem;
}


@media (max-width: 767px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  .hero-section {
    padding: 4rem 0;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .metric .number {
    font-size: 2rem;
  }
  
  .process-steps {
    flex-direction: column;
  }
  
  .step {
    width: 100%;
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .results-actions {
    flex-direction: column;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .process-steps {
    justify-content: center;
  }
  
  .step {
    width: 45%;
  }
}