
:root {
  --primary: #8B4513;
  --secondary: #D4AF37;
  --text: #333333;
  --headings: #5D4037;
  --background: #F9F5EB;
  --accent: #A52A2A;
  --decorative: #E8D8C3;
  --footer: #2E2E2E;
  --white: #FFFFFF;
  --light-gray: #F5F5F5;
}

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  background-color: var(--background);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', serif;
  color: var(--headings);
  font-weight: 500;
  margin-bottom: 1rem;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transition: all 0.3s ease;
}

.btn-primary:hover, .btn-primary:focus {
  background-color: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.btn-secondary {
  background-color: var(--secondary);
  border-color: var(--secondary);
  color: var(--text);
  transition: all 0.3s ease;
}

.btn-secondary:hover, .btn-secondary:focus {
  background-color: var(--decorative);
  border-color: var(--decorative);
  color: var(--text);
}


.container {
  max-width: 1200px;
}

.left-aligned-layout {
  display: flex;
  flex-wrap: wrap;
}

.content-column {
  width: 100%;
  padding-right: 2rem;
}

.decorative-line {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--decorative), var(--secondary), var(--decorative));
}

@media (max-width: 992px) {
  .content-column, .decorative-column {
    width: 100%;
  }
  
  .decorative-column {
    display: none;
  }
  
  .content-column {
    padding-right: 0;
  }
}


.site-header {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--decorative);
}

.logo-container {
  max-width: 200px;
}

.logo-container img {
  width: 100%;
  height: auto;
}

.main-navigation {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.main-navigation .nav-link {
  color: var(--text);
  font-weight: 500;
  margin-left: 1.5rem;
  position: relative;
}

.main-navigation .nav-link:hover, 
.main-navigation .nav-link:focus,
.main-navigation .nav-link.active {
  color: var(--primary);
}

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

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

.mobile-menu-button {
  display: none;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 1.5rem;
}

@media (max-width: 992px) {
  .main-navigation {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 1rem;
  }
  
  .main-navigation.show {
    display: flex;
  }
  
  .main-navigation .nav-link {
    margin: 0.5rem 0;
    margin-left: 0;
    width: 100%;
  }
  
  .mobile-menu-button {
    display: block;
  }
}


.hero-section {
  padding: 4rem 0;
}

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

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}


.services-section {
  padding: 4rem 0;
}

.services-section h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.service-card {
  background-color: var(--white);
  border-radius: 5px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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


.gallery-section {
  padding: 4rem 0;
}

.gallery-section h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.7);
  color: var(--white);
  padding: 0.75rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}


.methods-section {
  padding: 4rem 0;
}

.methods-section h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.method-step {
  background-color: var(--white);
  border-radius: 5px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.method-step h3 {
  color: var(--primary);
  display: flex;
  align-items: center;
}

.method-step h3::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 30px;
  background-color: var(--secondary);
  border-radius: 50%;
  margin-right: 1rem;
  flex-shrink: 0;
}


.contact-form-section {
  padding: 4rem 0;
}

.contact-form-section h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.form-control {
  border-color: var(--decorative);
  border-radius: 3px;
  padding: 0.75rem;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(139, 69, 19, 0.25);
}

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

label {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.iti {
  width: 100%;
}

.privacy-policy-checkbox {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}


.site-footer {
  background-color: var(--footer);
  color: var(--white);
  padding: 3rem 0 1.5rem;
}

.footer-title {
  color: var(--secondary);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

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

.footer-links a {
  color: var(--white);
  transition: color 0.3s ease;
}

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

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}


.cookie-consent-modal {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  padding: 1.5rem;
  z-index: 1000;
  max-width: 500px;
  margin: 0 auto;
  display: none;
}

.cookie-consent-modal.show {
  display: block;
}

.cookie-settings-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1001;
  display: none;
}

.cookie-settings-modal.show {
  display: flex;
}

.cookie-settings-content {
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  padding: 2rem;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-category {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--decorative);
}

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

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.cookie-category-title {
  font-weight: 600;
  margin: 0;
}

.cookie-category-description {
  margin-bottom: 1rem;
}

.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 24px;
}

.cookie-toggle-slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background-color: var(--primary);
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
  transform: translateX(26px);
}

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

.cookie-buttons button {
  margin-left: 0.5rem;
}


.modal-custom {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  display: none;
}

.modal-custom.show {
  display: flex;
}

.modal-content-custom {
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  padding: 2rem;
  max-width: 500px;
  width: 100%;
  text-align: center;
}

.modal-title-custom {
  color: var(--primary);
  margin-bottom: 1rem;
}

.modal-body-custom {
  margin-bottom: 1.5rem;
}

.modal-footer-custom {
  text-align: center;
}



.history-section, .expertise-section, .workshop-section {
  padding: 3rem 0;
}


.services-for-individuals {
  padding: 3rem 0;
}

.service-process-steps {
  counter-reset: service-step;
}

.process-step {
  position: relative;
  padding-left: 50px;
  margin-bottom: 2rem;
}

.process-step::before {
  counter-increment: service-step;
  content: counter(service-step);
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  background-color: var(--secondary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  font-weight: bold;
}


.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-info-icon {
  color: var(--primary);
  font-size: 1.5rem;
  margin-right: 1rem;
  width: 24px;
  text-align: center;
}

.contact-map {
  height: 400px;
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
  margin-top: 2rem;
}


.thanks-section {
  text-align: center;
  padding: 5rem 0;
}

.thanks-icon {
  font-size: 5rem;
  color: var(--secondary);
  margin-bottom: 2rem;
}

.thanks-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.thanks-message {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}


.policy-content {
  background-color: var(--white);
  border-radius: 5px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.policy-content h2 {
  color: var(--primary);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.policy-content h3 {
  color: var(--headings);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.policy-content p, .policy-content ul, .policy-content ol {
  margin-bottom: 1rem;
}

.policy-content ul, .policy-content ol {
  padding-left: 1.5rem;
}

.policy-date {
  font-style: italic;
  color: var(--text);
  margin-bottom: 2rem;
}


.text-primary {
  color: var(--primary) !important;
}

.text-secondary {
  color: var(--secondary) !important;
}

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

.section-title {
  text-align: left;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--secondary);
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.img-shadow {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}