
:root {
  --color-primary: #2E7D32;
  --color-secondary: #FF8F00;
  --color-accent: #00ACC1;
  --bg-light: #F5F7F2;
  --bg-dark: #263238;
  --text-primary: #263238;
  --text-secondary: #546E7A;
  --text-light: #FFFFFF;
  --color-success: #4CAF50;
  --color-alert: #F44336;
  --border-color: #E0E0E0;
  --border-radius: 4px;
  --transition: all 0.3s ease;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

html {
  scroll-behavior: smooth;
  box-sizing: border-box;
  overflow-x: hidden;
}

body {
  font-family: 'Rubik', sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-light);
  font-size: 16px;
}

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

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

ul {
  list-style: none;
}

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

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

.section {
  padding: 80px 0;
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
}


h1, h2, h3, h4, h5, h6 {
  margin-bottom: 20px;
  font-weight: 500;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  h4 {
    font-size: 1.25rem;
  }
}


.btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--color-primary);
  color: var(--text-light);
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  font-weight: 500;
  text-align: center;
}

.btn:hover {
  background-color: #1b5e20;
  color: var(--text-light);
  transform: translateY(-2px);
}

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

.btn-secondary:hover {
  background-color: #f57c00;
}

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

.btn-accent:hover {
  background-color: #0097a7;
}

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

.btn-outline:hover {
  background-color: var(--color-primary);
  color: var(--text-light);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.1rem;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.9rem;
}


.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--bg-light);
  box-shadow: var(--shadow);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.navbar .logo {
  max-height: 40px;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  font-weight: 500;
  position: relative;
}

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

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

.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-primary);
}

@media (max-width: 992px) {
  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background-color: var(--bg-light);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    box-shadow: var(--shadow);
    transform: translateY(-150%);
    transition: var(--transition);
  }
  
  .nav-links.show {
    transform: translateY(0);
  }
  
  .hamburger {
    display: block;
  }
}


.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  color: var(--text-light);
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

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

.hero p {
  margin-bottom: 30px;
  font-size: 1.2rem;
}

.hero .btn {
  margin-right: 15px;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .hero {
    min-height: 60vh;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
}


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

.section-title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 70px;
  height: 3px;
  background-color: var(--color-primary);
  margin: 15px auto 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background-color: var(--text-light);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 30px;
  transition: var(--transition);
  overflow: hidden;
}

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

.feature-card .icon {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.feature-card h3 {
  margin-bottom: 15px;
}

.feature-card p {
  color: var(--text-secondary);
}


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

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

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

.about-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

.about-image::before {
  content: '';
  position: absolute;
  background-color: var(--color-primary);
  width: 100%;
  height: 100%;
  top: -15px;
  left: 15px;
  border-radius: var(--border-radius);
  z-index: -1;
}

.about-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.metric {
  text-align: center;
  padding: 20px;
  background-color: var(--bg-light);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.metric .number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
}

.metric .label {
  color: var(--text-secondary);
}

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .about-image {
    margin-top: 30px;
  }
}


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

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: var(--text-light);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

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

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

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

.service-content {
  padding: 25px;
}

.service-content h3 {
  margin-bottom: 15px;
}

.service-content p {
  color: var(--text-secondary);
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}


.calculator-section {
  background-color: var(--text-light);
  padding: 60px 0;
}

.calculator-wrapper {
  background-color: var(--bg-light);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow);
}

.calculator-title {
  text-align: center;
  margin-bottom: 30px;
}

.calculator-form {
  display: grid;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 5px;
  font-weight: 500;
}

.form-control {
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-family: 'Rubik', sans-serif;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-primary);
}

.calculator-results {
  background-color: var(--color-primary);
  color: var(--text-light);
  padding: 20px;
  border-radius: var(--border-radius);
  margin-top: 20px;
  display: none;
}

.calculator-results.show {
  display: block;
}

.result-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.result-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.result-item .label {
  font-weight: 400;
}

.result-item .value {
  font-weight: 700;
}


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

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.news-card {
  background-color: var(--text-light);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.news-img {
  height: 180px;
  position: relative;
  overflow: hidden;
}

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

.news-card:hover .news-img img {
  transform: scale(1.1);
}

.news-date {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--color-primary);
  color: var(--text-light);
  padding: 8px 12px;
  border-radius: var(--border-radius);
  font-size: 0.8rem;
  font-weight: 500;
}

.news-content {
  padding: 25px;
}

.news-content h3 {
  margin-bottom: 15px;
}

.news-content p {
  color: var(--text-secondary);
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}


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

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background-color: var(--bg-light);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 4rem;
  color: var(--color-primary);
  opacity: 0.2;
  font-family: Georgia, serif;
}

.testimonial-text {
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

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

.author-info h4 {
  margin-bottom: 5px;
}

.author-info p {
  color: var(--text-secondary);
  margin-bottom: 0;
  font-size: 0.9rem;
}


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

.contact-flex {
  display: flex;
  gap: 50px;
}

.contact-info {
  flex: 1;
}

.contact-form-wrapper {
  flex: 1;
}

.contact-card {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  gap: 15px;
}

.contact-card .icon {
  width: 50px;
  height: 50px;
  background-color: var(--color-primary);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.contact-card .content h4 {
  margin-bottom: 5px;
}

.contact-card .content p {
  color: var(--text-secondary);
  margin-bottom: 0;
}

.contact-form {
  background-color: var(--text-light);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.contact-form .form-group {
  margin-bottom: 20px;
}

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

.contact-form .btn {
  width: 100%;
}

@media (max-width: 992px) {
  .contact-flex {
    flex-direction: column;
  }
  
  .contact-info,
  .contact-form-wrapper {
    width: 100%;
  }
}


.map-container {
  position: relative;
  height: 400px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 50px;
}

.map-iframe {
  width: 100%;
  height: 100%;
  border: 0;
}


.footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding-top: 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 30px;
}

.footer-about img {
  max-height: 40px;
  margin-bottom: 20px;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.7);
}

.footer-title {
  font-size: 1.2rem;
  margin-bottom: 25px;
  position: relative;
}

.footer-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background-color: var(--color-primary);
  margin-top: 10px;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--color-primary);
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact li .icon {
  color: var(--color-primary);
  font-size: 1.2rem;
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 50px;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}


.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 20px;
  z-index: 9999;
  display: none;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
}

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

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

.cookie-text {
  flex-grow: 1;
}

.cookie-text h4 {
  margin-bottom: 10px;
}

.cookie-text p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

.cookie-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.cookie-settings {
  display: none;
  background-color: var(--bg-dark);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  overflow-y: auto;
  padding: 30px;
}

.cookie-settings.show {
  display: block;
}

.cookie-settings-content {
  max-width: 800px;
  margin: 20px auto;
  background-color: var(--text-light);
  padding: 30px;
  border-radius: var(--border-radius);
  color: var(--text-primary);
}

.cookie-settings-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.cookie-settings-title h3 {
  margin-bottom: 0;
}

.close-settings {
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

.cookie-types {
  margin-bottom: 30px;
}

.cookie-type {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.cookie-type:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.cookie-type-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.cookie-type-title {
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 500;
}

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

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: var(--transition);
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: var(--transition);
  border-radius: 50%;
}

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

input:focus + .slider {
  box-shadow: 0 0 1px var(--color-primary);
}

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

.necessary-cookie {
  opacity: 0.6;
  pointer-events: none;
}

.cookie-settings-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-settings-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .cookie-settings-actions .btn {
    width: 100%;
  }
}


.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay.show {
  opacity: 1;
  visibility: visible;
}

.modal {
  background-color: var(--text-light);
  border-radius: var(--border-radius);
  padding: 30px;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  transform: translateY(-50px);
  transition: var(--transition);
}

.modal-overlay.show .modal {
  transform: translateY(0);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
  margin-bottom: 0;
}

.close-modal {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-secondary);
  transition: var(--transition);
}

.close-modal:hover {
  color: var(--color-alert);
}

.modal-body {
  margin-bottom: 20px;
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}


.form-section {
  background-color: var(--text-light);
  padding: 60px 0;
}

.form-container {
  max-width: 700px;
  margin: 0 auto;
  background-color: var(--bg-light);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.form-header {
  text-align: center;
  margin-bottom: 30px;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  flex: 1;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

.form-check input {
  margin-top: 5px;
}

.form-check label {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.required-field::after {
  content: '*';
  color: var(--color-alert);
  margin-left: 3px;
}

@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }
}


.article {
  background-color: var(--text-light);
  padding: 80px 0;
}

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

.article-header {
  margin-bottom: 40px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.article-content h2, 
.article-content h3 {
  margin-top: 40px;
}

.article-content img {
  margin: 30px 0;
  border-radius: var(--border-radius);
}

.article-content blockquote {
  border-left: 4px solid var(--color-primary);
  padding-left: 20px;
  margin: 30px 0;
  font-style: italic;
  color: var(--text-secondary);
}


.quiz-container {
  background-color: var(--bg-light);
  border-radius: var(--border-radius);
  padding: 30px;
  margin: 40px 0;
  box-shadow: var(--shadow);
}

.quiz-step {
  display: none;
}

.quiz-step.active {
  display: block;
}

.quiz-question {
  margin-bottom: 20px;
  font-weight: 500;
}

.quiz-options .form-check {
  margin-bottom: 10px;
  padding: 10px 15px;
  border-radius: var(--border-radius);
  background-color: var(--text-light);
  transition: var(--transition);
}

.quiz-options .form-check:hover {
  background-color: #e0e0e0;
}

.quiz-options .form-check input:checked + label {
  font-weight: 500;
}

.quiz-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.quiz-result {
  background-color: var(--color-primary);
  color: var(--text-light);
  padding: 20px;
  border-radius: var(--border-radius);
  margin-top: 20px;
  display: none;
}

.quiz-result.show {
  display: block;
}


.infographic {
  position: relative;
  background-color: var(--bg-light);
  padding: 50px 30px;
  border-radius: var(--border-radius);
  overflow: hidden;
  margin: 40px 0;
}

.infographic::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

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

.infographic-row {
  display: flex;
  justify-content: space-around;
  text-align: center;
  flex-wrap: wrap;
  gap: 30px;
}

.infographic-item {
  flex: 1;
  min-width: 200px;
}

.infographic-icon {
  width: 80px;
  height: 80px;
  background-color: var(--text-light);
  border-radius: 50%;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--color-primary);
  box-shadow: var(--shadow);
}

.infographic-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 5px;
}

.infographic-label {
  color: var(--text-secondary);
}


.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 10px !important; }
.mt-2 { margin-top: 20px !important; }
.mt-3 { margin-top: 30px !important; }
.mt-4 { margin-top: 40px !important; }
.mt-5 { margin-top: 50px !important; }

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 10px !important; }
.mb-2 { margin-bottom: 20px !important; }
.mb-3 { margin-bottom: 30px !important; }
.mb-4 { margin-bottom: 40px !important; }
.mb-5 { margin-bottom: 50px !important; }

.text-center { text-align: center !important; }
.text-right { text-align: right !important; }
.text-left { text-align: left !important; }

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

.bg-light { background-color: var(--bg-light) !important; }
.bg-dark { background-color: var(--bg-dark) !important; }
.bg-white { background-color: var(--text-light) !important; }
.bg-primary { background-color: var(--color-primary) !important; }
.bg-secondary { background-color: var(--color-secondary) !important; }
.bg-accent { background-color: var(--color-accent) !important; }

.d-block { display: block !important; }
.d-none { display: none !important; }
.d-flex { display: flex !important; }

.flex-column { flex-direction: column !important; }
.justify-between { justify-content: space-between !important; }
.justify-center { justify-content: center !important; }
.align-center { align-items: center !important; }
.align-start { align-items: flex-start !important; }
.align-end { align-items: flex-end !important; }

.w-100 { width: 100% !important; }
.h-100 { height: 100% !important; }

.rounded { border-radius: var(--border-radius) !important; }
.shadow { box-shadow: var(--shadow) !important; }


@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeIn {
  animation: fadeIn 1s ease forwards;
}


#phone {
  width: 100%;
}


.glightbox-clean .gslide-description {
  background-color: var(--bg-dark);
}

.glightbox-clean .gdesc-inner {
  padding: 20px;
}

.glightbox-clean .gslide-title {
  color: var(--text-light);
  margin-bottom: 10px;
}

.glightbox-clean .gslide-desc {
  color: rgba(255, 255, 255, 0.7);
}


.thanks-section {
  min-height: calc(100vh - 300px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.thanks-container {
  max-width: 600px;
  padding: 50px 20px;
}

.thanks-icon {
  font-size: 5rem;
  color: var(--color-primary);
  margin-bottom: 30px;
}

.thanks-title {
  margin-bottom: 20px;
}

.thanks-message {
  margin-bottom: 30px;
  color: var(--text-secondary);
}