@import url("reset.css");
@import url("logo.css");

@import url("https://fonts.googleapis.com/css?family=Inter:regular,500,600,700&display=swap");

/* ************COMMON************ */

.logo {
  font-weight: 700;
  font-size: 2.25rem;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  color: #000000;
}

[class*="__container"] {
  max-width: 72.624rem;
  margin: 0 auto;
  padding: 0 0.938rem;
}

.button {
  font-weight: 600;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  transition: all 0.3s;
  color: #F5F5E0;
  background-color: #3F7054;
}

.title {
  font-size: 2.5rem;
  font-weight: 600;
}

.wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
}

/* ************HEADER************ */

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: #F5F5E0;
  z-index: 1000;
  border-bottom: 2px solid #CEC7BD;
}

.header__top {
  background: #3F7054;
  color: #F5F5E0;
  padding: 0.5rem 0;
  font-size: 0.875rem;
}

.header__top-container {
  max-width: 74.624rem;
  margin: 0 auto;
  padding: 0 0.938rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header__social {
  display: flex;
  gap: 1rem;
}

.social-link {
  color: #F5F5E0;
  text-decoration: none;
  font-size: 1.125rem;
  transition: opacity 0.3s ease;
}

.social-link:hover {
  opacity: 0.8;
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5.75rem;
  flex-wrap: wrap;
  max-width: 74.624rem;
}

.header__logo {
  position: relative;
  z-index: 2;
}

.header__navigation {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.menu__body {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.menu__link {
  font-weight: 600;
  position: relative;
  color: #3F7054;
  transition: color 0.3s ease;
}

.menu__link:hover {
  color: #A0C692;
}

/* Active page indicator */
.menu__link.active {
  color: #A0C692;
  background-color: rgba(160, 198, 146, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.menu__link.active::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0.5rem;
  height: 0.5rem;
  background-color: #A0C692;
  border-radius: 50%;
  animation: activeIndicator 0.3s ease-in-out;
}

@keyframes activeIndicator {
  0% {
    opacity: 0;
    transform: translateX(-50%) scale(0);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
}

.actions-header {
  display: flex;
  align-items: center;
  gap: 0.624rem;
}

.icon-menu {
  display: none;
}

.actions-header__button {
  font-weight: 600;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  transition: all 0.3s;
  color: #F5F5E0;
  background-color: #3F7054;
}

.actions-header__button:hover {
  background-color: #A0C692;
  color: #000000;
}

/* ************MAIN************ */

.page__main {
  padding-top: 5.75rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #3F7054 0%, #A0C692 100%);
  color: #F5F5E0;
}

.main {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.1) 2px, transparent 2px),
    radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 2px, transparent 2px);
  background-size: 100px 100px;
  animation: float 20s infinite linear;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.main__container {
  text-align: center;
  max-width: 50rem;
  margin: 0 auto;
  position: relative;
  z-index: 20;
}

.main__caption {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.main__title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.main__text {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.main__stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #F5F5E0;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.main__cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 30;
}

.main__button.secondary {
  background-color: transparent;
  border: 2px solid rgba(245, 245, 224, 0.7);
  color: #F5F5E0;
}

.main__button.secondary:hover {
  background-color: rgba(245, 245, 224, 0.1);
}

.main__button {
  font-weight: 600;
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 30px;
  transition: all 0.3s;
  color: #3F7054;
  background-color: rgba(245, 245, 224, 0.9);
  border: 2px solid rgba(245, 245, 224, 0.7);
  text-decoration: none;
  cursor: pointer;
  position: relative;
  z-index: 10;
}

.main__button:hover {
  background-color: rgba(245, 245, 224, 1);
  transform: translateY(-2px);
}

.main__logo {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}

.main__logo-image {
  height: 180px;
  width: auto;
  max-width: 450px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.outro_home {
  background: linear-gradient(135deg, #3F7054 0%, #A0C692 100%);
  color: #F5F5E0;
}

.main_about {
  background: linear-gradient(135deg, #3F7054 0%, #4a8a6a 50%, #5a9a7a 100%);
}

/* ************TRUST BADGES************ */

.trust {
  background: #F5F5E0;
  padding: 4rem 0;
}

.trust__container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 0.938rem;
}

.trust__badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.trust__badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #FFFFFF;
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.trust__badge:hover {
  transform: translateY(-5px);
}

.badge__icon {
  font-size: 2.5rem;
  background: linear-gradient(135deg, #3F7054, #A0C692);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.badge__content h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #3F7054;
  margin-bottom: 0.25rem;
}

.badge__content p {
  font-size: 0.875rem;
  color: #6C685D;
  margin: 0;
}

/* ************ABOUT************ */

.about__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 6rem 0;
}

.about__image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

.about__title {
  margin-bottom: 2rem;
}

.about__text {
  margin-bottom: 2rem;
  line-height: 1.8;
}

.about__text p:not(:last-child) {
  margin-bottom: 1rem;
}

.outro_about {
  background: linear-gradient(135deg, #A0C692 0%, #CEC7BD 100%);
  color: #000000;
}

.main_services {
  background: linear-gradient(135deg, #3F7054 0%, #A0C692 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Services-specific container overrides */
.main_services .main__container_pages {
  width: 100%;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
  text-align: left;
}

/* ===== NEW CLEAN SERVICES DESIGN ===== */

/* Clean Hero Section */
.services-hero-clean {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 1.5rem 0;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #F5F5E0;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: #F5F5E0;
  margin-bottom: 2rem;
  line-height: 1.5;
  opacity: 0.9;
}

.hero-stats-clean {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.stat-item-clean {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-width: 100px;
}

.stat-number-clean {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #A0C692;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label-clean {
  font-size: 0.875rem;
  color: #F5F5E0;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-cta-clean {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Clean Button Styles */
.btn-primary {
  background: linear-gradient(135deg, #3F7054, #A0C692);
  color: white;
  padding: 1rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(63, 112, 84, 0.3);
  color: white;
}

.btn-secondary {
  background: transparent;
  color: #F5F5E0;
  border: 2px solid #F5F5E0;
  padding: 1rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  cursor: pointer;
}

.btn-secondary:hover {
  background: #F5F5E0;
  color: #3F7054;
  transform: translateY(-2px);
}

/* Services Overview Section */
.services-overview {
  padding: 3rem 0;
  background: #F5F5E0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #3F7054;
  margin-bottom: 0.75rem;
}

.section-header p {
  font-size: 1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Clean Services Grid */
.services-grid-clean {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.service-card-clean {
  background: white;
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

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

.service-card-clean.featured {
  border: 2px solid #A0C692;
  transform: scale(1.02);
}

.service-card-clean.featured:hover {
  transform: scale(1.02) translateY(-5px);
}

.featured-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: #A0C692;
  color: white;
  padding: 0.375rem 0.75rem;
  border-radius: 15px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.icon-wrapper {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #3F7054, #A0C692);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.125rem;
}

.card-header h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #3F7054;
  margin: 0;
}

.card-description {
  line-height: 1.5;
  color: #666;
  margin-bottom: 0.75rem;
  flex-grow: 1;
  font-size: 0.85rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin-bottom: 0.375rem;
  font-size: 0.75rem;
  color: #555;
}

.feature-list li i {
  color: #A0C692;
  font-size: 0.7rem;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.price {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.price-label {
  font-size: 0.7rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-amount {
  font-size: 1.125rem;
  font-weight: 700;
  color: #3F7054;
}

.card-btn {
  background: linear-gradient(135deg, #3F7054, #A0C692);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 18px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.75rem;
  transition: all 0.3s ease;
}

.card-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(63, 112, 84, 0.3);
  color: white;
}

/* Why Choose Us Section */
.why-choose-clean {
  padding: 3rem 0;
  background: linear-gradient(135deg, #3F7054 0%, #A0C692 100%);
  color: white;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.benefit-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 1.25rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.benefit-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  font-size: 1.25rem;
  color: #A0C692;
}

.benefit-item h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.benefit-item p {
  line-height: 1.4;
  opacity: 0.9;
  font-size: 0.8rem;
}

/* CTA Section */
.cta-section {
  padding: 3rem 0;
  background: #F5F5E0;
  color: #3F7054;
}

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

.cta-content h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.cta-content p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  color: #666;
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(63, 112, 84, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 500;
  font-size: 0.875rem;
}

.cta-feature i {
  color: #A0C692;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* ************SERVICES************ */

.services {
  padding: 6rem 0;
}

.services__container {
  text-align: center;
}

.services__title {
  margin-bottom: 4rem;
}

.services__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.item-services {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(63, 112, 84, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(63, 112, 84, 0.1);
  position: relative;
  overflow: hidden;
}

.item-services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #3F7054, #A0C692);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.item-services:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(63, 112, 84, 0.2);
}

.item-services:hover::before {
  transform: scaleX(1);
}

.item-services__image {
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.item-services__image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.item-services__title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #3F7054;
}

.item-services__text {
  margin-bottom: 1.5rem;
  line-height: 1.6;
  color: #6C685D;
}

.item-services__button {
  width: 100%;
  text-align: center;
}

.outro_services {
  background: linear-gradient(135deg, #3F7054 0%, #A0C692 100%);
  color: #F5F5E0;
}



/* ************TESTIMONIALS************ */

.testimonials {
  background: #F5F5E0;
  padding: 6rem 0;
}

.testimonials__container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 0.938rem;
  text-align: center;
}

.testimonials__title {
  margin-bottom: 3rem;
  color: #3F7054;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: #FFFFFF;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: left;
  transition: transform 0.3s ease;
  border: 1px solid rgba(63, 112, 84, 0.1);
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial__stars {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.testimonial__text {
  font-size: 1rem;
  line-height: 1.6;
  color: #6C685D;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial__client {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.testimonial__client strong {
  color: #3F7054;
  font-size: 1.125rem;
}

.testimonial__client span {
  color: #6C685D;
  font-size: 0.875rem;
}

/* ************FAQ************ */

.faq {
  padding: 4rem 0;
  background: #F5F5E0;
}

.faq__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.faq__header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq__icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.faq__title {
  font-size: 2.5rem;
  color: #3F7054;
  margin-bottom: 1rem;
  font-weight: 600;
}

.faq__subtitle {
  font-size: 1.1rem;
  color: #6C685D;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

.faq__grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(63, 112, 84, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.faq__question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #FFFFFF;
  transition: background-color 0.3s ease;
}

.faq__question:hover {
  background: #F5F5E0;
}

.faq__question h3 {
  font-size: 1.1rem;
  color: #3F7054;
  font-weight: 600;
  margin: 0;
  flex: 1;
  padding-right: 1rem;
}

.faq__toggle {
  font-size: 1.5rem;
  color: #3F7054;
  font-weight: bold;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(63, 112, 84, 0.1);
  border-radius: 50%;
}

.faq-item.active .faq__toggle {
  transform: rotate(45deg);
  background: #3F7054;
  color: #FFFFFF;
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #F5F5E0;
}

.faq__answer p {
  padding: 0 1.5rem 1.5rem 1.5rem;
  margin: 0;
  font-size: 1rem;
  color: #6C685D;
  line-height: 1.6;
}

/* ************OUTRO************ */

.outro {
  background: linear-gradient(135deg, #3F7054 0%, #A0C692 100%);
  color: #F5F5E0;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.outro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.outro__container {
  position: relative;
  z-index: 2;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 2rem;
}

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

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

.outro-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2rem;
  color: #F5F5E0;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.outro__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #F5F5E0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.outro__text {
  font-size: 1.25rem;
  line-height: 1.8;
  margin-bottom: 3rem;
  color: rgba(245, 245, 224, 0.9);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.outro-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.outro-feature:nth-child(3) {
  grid-column: 1 / -1;
  justify-self: center;
  max-width: 400px;
}

.outro-feature {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid #e8f5e8;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.outro-feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  background: #ffffff;
  border-color: #3F7054;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: #3F7054;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #ffffff;
  flex-shrink: 0;
}

.feature-content h4 {
  color: #1a1a1a !important;
  margin: 0;
  font-weight: 600;
  font-size: 1.1rem;
}

.feature-content p {
  color: #333333 !important;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
}

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

.outro__button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #F5F5E0;
  color: #3F7054;
  padding: 1.25rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border: 2px solid transparent;
}

.outro__button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  background: #F5F5E0;
  color: #3F7054;
  border-color: rgba(255, 255, 255, 0.3);
}

.outro-note {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: rgba(245, 245, 224, 0.7);
  font-style: italic;
}

/* ************FLOATING CTA************ */

.floating-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
}

.floating-cta__button {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #3F7054, #A0C692);
  color: #F5F5E0;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(63, 112, 84, 0.3);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.floating-cta__button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(63, 112, 84, 0.4);
  color: #F5F5E0;
}

.cta-icon {
  font-size: 1.25rem;
}

.cta-text {
  font-size: 0.875rem;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* ************FOOTER************ */

.footer {
  background: linear-gradient(135deg, #4a8a6a 0%, #5a9a7a 50%, #6aaa8a 100%);
  color: #F5F5E0;
  padding: 3rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.footer__container {
  display: grid;
  grid-template-columns: 1fr 2fr auto 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.footer__policy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #F5F5E0;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.footer__logo:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.footer__logo .logo__image {
  filter: brightness(0) invert(1);
  height: 2rem;
  width: auto;
  transition: all 0.3s ease;
}

.footer__copyright {
  opacity: 0.8;
  font-size: 0.85rem;
  line-height: 1.4;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.footer__contact span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer__contact span:hover {
  transform: translateY(-1px);
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}





/* Footer bottom border */
.footer::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
}

/* ************PAGES************ */

.main__text_pages {
  font-size: 1.5rem;
}

.main__container_pages {
  padding-top: 8rem;
}

.main_pages {
  min-height: 50vh;
}

/* ************SERVICES PAGE************ */

/* Enhanced Services Hero */
.services-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  color: #F5F5E0;
}

.services-hero__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  color: #F5F5E0;
  text-align: left;
}

.services-hero__content .main__title {
  color: #F5F5E0;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.services-hero__content .main__text {
  color: #F5F5E0;
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.services-hero__features {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.75rem 1.25rem;
  border-radius: 25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 0.875rem;
  font-weight: 500;
}

.hero-feature i {
  color: #A0C692;
  font-size: 1rem;
}

.services-hero__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.services-hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.hero-stat__number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #A0C692;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.hero-stat__label {
  font-size: 0.875rem;
  color: #F5F5E0;
  font-weight: 500;
}

/* Enhanced Services Section */
.services-page__container {
  padding: 6rem 0;
  background: #F5F5E0;
}

.services-intro {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
}

.services-intro__title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #3F7054;
  margin-bottom: 1.5rem;
}

.services-intro__text {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #666;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.service-card--featured {
  border: 2px solid #A0C692;
  transform: scale(1.02);
}

.service-card--featured:hover {
  transform: scale(1.02) translateY(-5px);
}

.service-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #A0C692;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.service-card__icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #3F7054, #A0C692);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.service-card__title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #3F7054;
  margin: 0;
}

.service-card__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-card__description {
  line-height: 1.7;
  color: #666;
  margin: 0;
}

.service-card__features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #555;
}

.service-feature i {
  color: #A0C692;
  font-size: 0.875rem;
}

.service-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 10px;
  border-left: 4px solid #A0C692;
}

.price-label {
  font-size: 0.875rem;
  color: #666;
}

.price-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: #3F7054;
}

.service-card__button {
  background: linear-gradient(135deg, #3F7054, #A0C692);
  color: white;
  padding: 1rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  text-align: center;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-block;
}

.service-card__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(63, 112, 84, 0.3);
  color: white;
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 6rem 0;
  background: linear-gradient(135deg, #3F7054 0%, #A0C692 100%);
  color: white;
}

.why-choose-us__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0.938rem;
}

.why-choose-us__header {
  text-align: center;
  margin-bottom: 4rem;
}

.why-choose-us__title {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.why-choose-us__subtitle {
  font-size: 1.125rem;
  line-height: 1.7;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.why-choose-us__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.benefit-card__icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: #A0C692;
}

.benefit-card__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.benefit-card__text {
  line-height: 1.6;
  opacity: 0.9;
}

/* Enhanced Outro Section */
.outro_services {
  background: #F5F5E0;
  color: #3F7054;
}

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

.outro__features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.outro-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 500;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid #e8f5e8;
}

.outro-feature i {
  color: #A0C692;
}

.outro__cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* Button Variants */
.button--primary {
  background: linear-gradient(135deg, #3F7054, #A0C692);
  color: white;
  font-weight: 600;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  transition: all 0.3s;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.button--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(63, 112, 84, 0.3);
  color: white;
}

.button--secondary {
  background: transparent;
  color: #3F7054;
  border: 2px solid #3F7054;
  font-weight: 600;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  transition: all 0.3s;
  text-decoration: none;
  cursor: pointer;
}

.button--secondary:hover {
  background: #3F7054;
  color: white;
  transform: translateY(-2px);
}

/* Legacy styles for backward compatibility */
.services-page__item {
  margin-bottom: 6rem;
}

.services-page__item:not(:last-child) {
  margin-bottom: 6rem;
}

.services-page__column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.services-page__title {
  margin-bottom: 2rem;
}

.services-page__text {
  margin-bottom: 2rem;
  line-height: 1.8;
}

.services-page__text p:not(:last-child) {
  margin-bottom: 1rem;
}

.services-page__img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.services-page__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ************CONTACT PAGE************ */

.main_contact {
  background: linear-gradient(135deg, #3F7054 0%, #4a8a6a 50%, #5a9a7a 100%);
}

/* Enhanced Contact Hero Section */
.contact-hero {
  text-align: center;
  padding: 2rem 0;
}

.contact-hero__icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  animation: pulse 2s infinite;
}

.contact-hero__features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.contact-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-feature__icon {
  font-size: 1.25rem;
}

.contact-feature__text {
  font-size: 0.875rem;
  color: #F5F5E0;
  font-weight: 500;
}

.contact {
  padding: 4rem 0;
  background: #F5F5E0;
}

.contact__container {
  max-width: 100rem;
}

/* Contact Intro Section */
.contact__intro {
  text-align: center;
  margin-bottom: 3rem;
  padding: 0 1rem;
}

.contact__intro-title {
  font-size: 2.5rem;
  color: #3F7054;
  margin-bottom: 1rem;
  font-weight: 600;
}

.contact__intro-text {
  font-size: 1.125rem;
  color: #6C685D;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

/* Contact Info Section */
.contact__info-section {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 15px 35px rgba(63, 112, 84, 0.1);
  border: 1px solid rgba(63, 112, 84, 0.1);
}

.contact__info-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #F5F5E0;
}

.contact__info-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.contact__info-title {
  font-size: 1.75rem;
  color: #3F7054;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.contact__info-subtitle {
  color: #6C685D;
  font-size: 0.95rem;
}

.connect-contact {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.connect-contact__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
  padding: 1.5rem;
  border-radius: 15px;
  transition: all 0.3s ease;
  background: #F5F5E0;
  border: 1px solid rgba(63, 112, 84, 0.1);
}

.connect-contact__item:hover {
  background: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(63, 112, 84, 0.15);
  border-color: #3F7054;
}

.connect-contact__icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #3F7054, #A0C692);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon {
  font-size: 1.5rem;
  color: #F5F5E0;
}

.connect-contact__content {
  flex: 1;
}

.connect-contact__type {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #3F7054;
  font-size: 1.1rem;
}

.connect-contact__label {
  color: #6C685D;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.connect-contact__note {
  color: #6C685D;
  font-size: 0.85rem;
  opacity: 0.8;
}

/* Social Links */
.contact__social {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid #F5F5E0;
}

.contact__social-title {
  font-size: 1.25rem;
  color: #3F7054;
  margin-bottom: 1rem;
  font-weight: 600;
}

.contact__social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-link-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #3F7054, #A0C692);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(63, 112, 84, 0.3);
}

.social-icon {
  font-size: 1.25rem;
  color: #F5F5E0;
}

/* Contact Form Section */
.contact__form-section {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 15px 35px rgba(63, 112, 84, 0.1);
  border: 1px solid rgba(63, 112, 84, 0.1);
}

.contact__form-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #F5F5E0;
}

.contact__form-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.contact__form-title {
  font-size: 1.75rem;
  color: #3F7054;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.contact__form-subtitle {
  color: #6C685D;
  font-size: 0.95rem;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

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

.form-group label {
  font-weight: 600;
  color: #3F7054;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem;
  border: 2px solid #e1e5e9;
  border-radius: 10px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  background: #FFFFFF;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3F7054;
  box-shadow: 0 0 0 3px rgba(63, 112, 84, 0.1);
}

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

/* Checkbox Styling */
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: #6C685D;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid #3F7054;
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: #3F7054;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #F5F5E0;
  font-size: 0.75rem;
  font-weight: bold;
}

.contact__submit-btn {
  background: linear-gradient(135deg, #3F7054, #A0C692);
  color: #F5F5E0;
  border: none;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.contact__submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(63, 112, 84, 0.3);
}

/* Contact Details Section */
.contact__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact__hours,
.contact__services {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 15px 35px rgba(63, 112, 84, 0.1);
  border: 1px solid rgba(63, 112, 84, 0.1);
}

.hours-header,
.services-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  text-align: center;
  justify-content: center;
}

.hours-icon,
.services-icon {
  font-size: 2rem;
}

.hours-title,
.services-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #3F7054;
  margin: 0;
}

.hours-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: #F5F5E0;
  border-radius: 10px;
  border: 1px solid rgba(63, 112, 84, 0.1);
}

.day {
  font-weight: 600;
  color: #3F7054;
}

.time {
  color: #6C685D;
  font-weight: 500;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: #F5F5E0;
  border-radius: 10px;
  border: 1px solid rgba(63, 112, 84, 0.1);
}

.service-icon {
  font-size: 1.25rem;
}

.service-text {
  color: #6C685D;
  font-weight: 500;
}

/* Map Section */
.map {
  background: #FFFFFF;
  padding: 4rem 0;
}

.map__container {
  max-width: 100rem;
}

.map__header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 0 1rem;
}

.map__title {
  font-size: 2.5rem;
  color: #3F7054;
  margin-bottom: 1rem;
  font-weight: 600;
}

.map__text {
  font-size: 1.125rem;
  color: #6C685D;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.map__wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(63, 112, 84, 0.1);
}

iframe {
  width: 100%;
  height: 450px;
  border: none;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ************BLOG PAGE************ */

.main_blog {
  background: linear-gradient(135deg, #CEC7BD 0%, #A0C692 100%);
}

.blog {
  padding: 6rem 0;
}

.blog__container {
  max-width: 80rem;
}

.blog__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.blog__column {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.blog__column:hover {
  transform: translateY(-5px);
}

.item-blog__image {
  height: 200px;
  overflow: hidden;
}

.item-blog__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.item-blog__content {
  padding: 2rem;
}

.item-blog__date {
  font-size: 0.875rem;
  color: #667eea;
  font-weight: 500;
  margin-bottom: 1rem;
}

.item-blog__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #3F7054;
  line-height: 1.4;
}

.item-blog__text {
  margin-bottom: 1.5rem;
  line-height: 1.6;
  color: #6C685D;
}

.item-blog__button {
  width: 100%;
  text-align: center;
}

.outro_blog {
  background: linear-gradient(135deg, #CEC7BD 0%, #A0C692 100%);
  color: #000000;
}

/* ************CALCULATORS PAGE************ */

.main_calculators {
  background: linear-gradient(135deg, #3F7054 0%, #4a8a6a 50%, #5a9a7a 100%);
}

/* Enhanced Calculator Hero Section */
.calculator-hero {
  text-align: center;
  padding: 2rem 0;
}

.calculator-hero__icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

.calculator-hero__stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.calculator-stat {
  text-align: center;
  background: rgba(255, 255, 255, 0.2);
  padding: 1.5rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  min-width: 120px;
}

.calculator-stat__number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #3F7054;
  margin-bottom: 0.5rem;
}

.calculator-stat__label {
  font-size: 0.875rem;
  color: #6C685D;
  font-weight: 500;
}

.calculators {
  padding: 4rem 0;
  background: #F5F5E0;
}

.calculators__container {
  max-width: 80rem;
}

/* Calculator Intro Section */
.calculators__intro {
  text-align: center;
  margin-bottom: 3rem;
  padding: 0 1rem;
}

.calculators__intro-title {
  font-size: 2.5rem;
  color: #3F7054;
  margin-bottom: 1rem;
  font-weight: 600;
}

.calculators__intro-text {
  font-size: 1.125rem;
  color: #6C685D;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.calculators__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.calculators__column {
  background: #FFFFFF;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(63, 112, 84, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(63, 112, 84, 0.1);
  position: relative;
}

.calculators__column:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(63, 112, 84, 0.15);
}

.calculators__column::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #3F7054, #A0C692);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.calculators__column:hover::before {
  transform: scaleX(1);
}

/* Calculator Header */
.item-calculator__header {
  background: linear-gradient(135deg, #3F7054, #A0C692);
  color: #F5F5E0;
  padding: 2rem;
  text-align: center;
  position: relative;
}

.item-calculator__icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.item-calculator__title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #F5F5E0;
}

.item-calculator__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.2);
  color: #F5F5E0;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
}

.item-calculator__content {
  padding: 2rem;
}

.item-calculator__text {
  margin-bottom: 1.5rem;
  line-height: 1.6;
  color: #6C685D;
  font-size: 0.95rem;
}

/* Feature Tags */
.item-calculator__features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.feature-tag {
  background: #F5F5E0;
  color: #3F7054;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid rgba(63, 112, 84, 0.2);
}

.item-calculator__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.form-group label {
  font-weight: 600;
  color: #3F7054;
  font-size: 0.9rem;
}

.form-group input,
.form-group select {
  padding: 0.75rem;
  border: 2px solid #e1e5e9;
  border-radius: 10px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  background: #FFFFFF;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #3F7054;
  box-shadow: 0 0 0 3px rgba(63, 112, 84, 0.1);
}

.calculator-button {
  background: linear-gradient(135deg, #3F7054, #A0C692);
  color: #F5F5E0;
  border: none;
  padding: 1rem;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.calculator-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(63, 112, 84, 0.3);
}

.button-icon {
  font-size: 1.1rem;
}

.calculator-result {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, #F5F5E0, #FFFFFF);
  border-radius: 15px;
  border-left: 4px solid #3F7054;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.calculator-results h4 {
  color: #3F7054;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.calculator-results p {
  margin-bottom: 0.75rem;
  color: #6C685D;
  font-size: 0.95rem;
}

.calculator-results strong {
  color: #3F7054;
  font-weight: 600;
}

.error {
  color: #dc3545;
  background: #f8d7da;
  padding: 0.75rem;
  border-radius: 8px;
  border: 1px solid #f5c6cb;
  margin-top: 1rem;
}

/* Pro Tips Section */
.calculators__tips {
  background: #FFFFFF;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(63, 112, 84, 0.1);
  margin-top: 3rem;
}

.calculators__tips-title {
  text-align: center;
  font-size: 2rem;
  color: #3F7054;
  margin-bottom: 2rem;
  font-weight: 600;
}

.calculators__tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.tip-card {
  text-align: center;
  padding: 2rem;
  background: #F5F5E0;
  border-radius: 15px;
  border: 1px solid rgba(63, 112, 84, 0.1);
  transition: transform 0.3s ease;
}

.tip-card:hover {
  transform: translateY(-5px);
}

.tip-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.tip-card h4 {
  color: #3F7054;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.tip-card p {
  color: #6C685D;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Enhanced Outro Section */
.outro_calculators {
  background: linear-gradient(135deg, #CEC7BD 0%, #A0C692 100%);
  color: #000000;
}

.outro__cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.outro__button.secondary {
  background-color: transparent;
  border: 2px solid #3F7054;
  color: #3F7054;
}

.outro__button.secondary:hover {
  background-color: #3F7054;
  color: #F5F5E0;
}

/* ************RESPONSIVE DESIGN************ */

@media (max-width: 992px) {
  .services__row {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .item-services {
    padding: 1.5rem;
  }

  .page__main {
    padding-top: 4rem;
  }

  .budget__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .budget__input-section {
    position: static;
  }

  .budget__charts {
    grid-template-columns: 1fr;
  }

  .budget__summary-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 47.999rem) {
  .menu__list {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
}

@media (max-width: 995px) {
  .item-pricing__button {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
  }
}

@media (max-width: 62.6875rem) {
  .resources__container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .gallery__paggination {
    justify-content: center;
  }

  .gallery__row {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .team__row {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .director__container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .item-pricing {
    padding: 1.5rem;
  }

  .pricing__title {
    font-size: 2.5rem;
  }

  .pricing__text {
    font-size: 1rem;
  }

  .item-pricing__button {
    padding: 0.75rem 1rem;
  }

  .footer__container {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer__policy,
  .footer__logo,
  .footer__copyright {
    order: 0;
  }

  .footer__logo {
    order: 1;
  }

  .services-page__column {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .services-page__title {
    font-size: 2.5rem;
  }

  /* Enhanced Services Responsive */
  .services-hero {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .services-hero__features {
    justify-content: center;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 1.5rem;
  }

  .hero-stat__number {
    font-size: 2rem;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
  }

  .why-choose-us__grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
  }

  .outro__features {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .outro__cta-group {
    flex-direction: column;
    align-items: center;
  }
  
  .outro__title {
    font-size: 2rem;
  }
  
  .outro-features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .outro-feature {
    padding: 1.5rem;
  }
  
  .outro-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .reviews__row {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .reviews__item {
    padding: 1.5rem;
  }

  .item-reviews__text {
    font-size: 0.875rem;
  }

  .item-reviews__author {
    font-size: 0.875rem;
  }
}

@media (max-width: 47.999rem) {
  .header__top {
    display: none;
  }
  
  .main__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .stat-item {
    padding: 1rem;
  }
  
  .main__cta-group {
    flex-direction: column;
    gap: 1rem;
  }
  
  .trust__badges {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonials__grid {
    grid-template-columns: 1fr;
  }
  
  .faq__grid {
    grid-template-columns: 1fr;
  }
  
  .floating-cta {
    bottom: 1rem;
    right: 1rem;
  }
  
  .floating-cta__button {
    padding: 0.75rem 1rem;
  }
  
  .cta-text {
    display: none;
  }
  
  .calculator-hero__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .calculator-stat {
    padding: 1rem;
  }
  
  .calculators__intro-title {
    font-size: 1.5rem;
  }
  
  .calculators__row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .calculators__tips {
    padding: 2rem 1rem;
  }
  
  .calculators__tips-grid {
    grid-template-columns: 1fr;
  }
  
  .outro__cta-group {
    flex-direction: column;
    gap: 1rem;
  }
  
  .budget-hero__features {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .budget-feature {
    padding: 0.5rem 1rem;
  }
  
  .budget__intro-title {
    font-size: 1.5rem;
  }
  
  .services-hero {
    padding: 2rem 0;
  }
  
  .services-hero__cta {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .hero-stat__number {
    font-size: 1.5rem;
  }
  
  .services-intro__title {
    font-size: 1.5rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .service-card {
    padding: 1.5rem;
  }
  
  .service-card__header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .why-choose-us__title {
    font-size: 1.5rem;
  }
  
  .why-choose-us__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .benefit-card {
    padding: 1.5rem;
  }
  
  .budget__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .budget__input-section {
    position: static;
    padding: 1rem;
  }
  
  .budget__form-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  
  .budget__summary-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  
  .budget__charts {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .budget__tips-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .contact-hero__features {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .contact-feature {
    padding: 0.5rem 1rem;
  }
  
  .contact__intro-title {
    font-size: 1.5rem;
  }
  
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .contact__details {
    padding: 1.5rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .spollers-faq__item.active .spollers-faq__button img {
    transform: rotate(180deg);
  }

  .spollers-faq__button span {
    font-size: 0.9rem;
  }

  .spollers-faq__button img {
    width: 1rem;
    height: 1rem;
  }

  .spollers-faq__inner {
    padding: 1rem;
  }

  .pricing__container {
    padding: 0 1rem;
  }

  .pricing__row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .item-pricing__button {
    padding: 0.75rem 1.5rem;
  }

  .reviews__container {
    padding: 0 1rem;
  }

  .icon-menu {
    display: block;
    position: relative;
    width: 1.875rem;
    height: 1.125rem;
    cursor: pointer;
    z-index: 5;
  }

  .icon-menu span,
  .icon-menu::before,
  .icon-menu::after {
    content: "";
    transition: all 0.3s ease 0s;
    right: 0;
    position: absolute;
    width: 100%;
    height: 0.125rem;
    background-color: #3F7054;
  }

  .icon-menu::before {
    top: 0;
  }

  .icon-menu::after {
    bottom: 0;
  }

  .icon-menu span {
    top: calc(50% - 0.0625rem);
  }

  .menu-open .icon-menu span {
    width: 0;
  }

  .menu-open .icon-menu::before {
    top: calc(50% - 0.0625rem);
    transform: rotate(-45deg);
  }

  .menu-open .icon-menu::after {
    bottom: calc(50% - 0.0625rem);
    transform: rotate(45deg);
  }

  .menu__body {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 6.25rem 0.9375rem 1.875rem 0.9375rem;
    transition: left 0.3s ease 0s;
    overflow: auto;
    z-index: 4;
  }

  .menu__body::before {
    content: "";
    position: fixed;
    width: 100%;
    top: 0;
    left: -100%;
    height: 4.375rem;
    background-color: #3F7054;
    z-index: 2;
  }

  .menu-open .menu__body {
    left: 0;
  }

  .menu-open .menu__body::before {
    left: 0;
  }

  .menu__item {
    margin-bottom: 1.875rem;
  }

  .menu__item:not(:last-child) {
    margin-bottom: 1.875rem;
  }

  .menu__link {
    font-size: 1.25rem;
    font-weight: 600;
  }

  .menu__link.active {
    color: #3F7054;
  }

  .menu__link.active::after {
    display: none;
  }

  .actions-header__button {
    display: none;
  }

  .main__container {
    padding: 0 0.9375rem;
  }

  .main__logo-image {
    max-width: 12.5rem;
  }

  .main__container_pages {
    padding: 0 0.9375rem;
  }

  .main__title {
    font-size: 2rem;
  }

  .title {
    font-size: 1.5rem;
  }

  .about__content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }

  .about__container {
    padding: 0 0.9375rem;
  }

  .services__container {
    padding: 0 0.9375rem;
  }

  .outro__container {
    padding: 0 0.9375rem;
  }

  .logo {
    max-width: 8.75rem;
  }

  .services-page__column {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }

  .blog__row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .calculators__row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact__container {
    padding: 0 0.9375rem;
  }

  .item-calculator__form {
    padding: 1.5rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 0.75rem;
  }

  .calculator-button {
    padding: 0.75rem 1.5rem;
  }

  .budget__input-section {
    padding: 1rem;
  }

  .budget__title {
    font-size: 1.5rem;
  }

  .budget__section-title {
    font-size: 1.1rem;
  }

  .budget__expense-category {
    padding: 0.75rem;
  }

  .budget__form-group input {
    padding: 0.5rem;
  }

  .budget__calculate-btn {
    padding: 0.75rem 1.5rem;
  }

  .budget__summary,
  .budget__chart-container,
  .budget__advice,
  .budget__tips {
    padding: 1rem;
  }

  .budget__summary-title,
  .budget__advice-title,
  .budget__tips-title {
    font-size: 1.1rem;
  }

  .budget__summary-value {
    font-size: 1rem;
  }
}

@media (max-width: 61.936rem) {
  .footer__container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .footer__navigation {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 0;
  }
  
  .footer__policy {
    align-items: center;
    order: 1;
  }
  
  .footer__contact {
    order: 2;
  }
  


  .logo {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 2rem 0 1.5rem;
  }
  
  .footer__container {
    gap: 1.5rem;
  }
  
  .footer__contact {
    padding: 1rem;
  }
  
  .footer__contact span {
    font-size: 0.85rem;
  }
  

  
  .footer__logo {
    font-size: 1rem;
  }
  
  .footer__logo .logo__image {
    height: 1.5rem;
  }
}

@media (max-width: 480px) {
  .footer__navigation {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .footer__nav-section h4 {
    text-align: center;
  }
  
  .footer__contact {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  .footer__contact span {
    font-size: 0.8rem;
  }
  

}

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

  .team__row {
    grid-template-columns: 1fr;
  }

  .gallery__row {
    grid-template-columns: 1fr;
  }

  .resources__container {
    grid-template-columns: 1fr;
  }

  .blog__row {
    grid-template-columns: 1fr;
  }

  .calculators__row {
    grid-template-columns: 1fr;
  }

  .item-calculator__form {
    gap: 0.75rem;
  }

  .form-group input,
  .form-group select {
    padding: 0.625rem;
    font-size: 0.875rem;
  }

  .calculator-button {
    padding: 0.875rem;
    font-size: 0.875rem;
  }

  .budget__grid {
    gap: 1rem;
  }

  .budget__input-section {
    padding: 1rem;
  }

  .budget__expense-category {
    padding: 0.5rem;
  }

  .budget__form-group {
    margin-bottom: 0.75rem;
  }

  .budget__form-group input {
    padding: 0.5rem;
    font-size: 0.875rem;
  }

  .budget__calculate-btn {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
  }

  .budget__summary,
  .budget__chart-container,
  .budget__advice,
  .budget__tips {
    padding: 1rem;
  }

  .budget__summary-grid {
    gap: 0.75rem;
  }

  .budget__summary-item {
    padding: 0.75rem;
  }

  .budget__summary-value {
    font-size: 1.125rem;
  }

  .budget__charts {
    gap: 1rem;
  }

  .main__logo-image {
    height: 90px;
    max-width: 225px;
  }
}

/* ************BUDGET PAGE************ */

.main_budget {
  background: linear-gradient(135deg, #3F7054 0%, #A0C692 100%);
}

/* Enhanced Budget Hero Section */
.budget-hero {
  text-align: center;
  padding: 2rem 0;
}

.budget-hero__icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  animation: pulse 2s infinite;
}

.budget-hero__features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.budget-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.budget-feature__icon {
  font-size: 1.25rem;
}

.budget-feature__text {
  font-size: 0.875rem;
  color: #F5F5E0;
  font-weight: 500;
}

.budget {
  padding: 4rem 0;
  background: #F5F5E0;
}

.budget__container {
  max-width: 100rem;
}

/* Budget Intro Section */
.budget__intro {
  text-align: center;
  margin-bottom: 3rem;
  padding: 0 1rem;
}

.budget__intro-title {
  font-size: 2.5rem;
  color: #3F7054;
  margin-bottom: 1rem;
  font-weight: 600;
}

.budget__intro-text {
  font-size: 1.125rem;
  color: #6C685D;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.budget__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* Budget Input Section */
.budget__input-section {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 15px 35px rgba(63, 112, 84, 0.1);
  border: 1px solid rgba(63, 112, 84, 0.1);
  position: sticky;
  top: 2rem;
}

.budget__form-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #F5F5E0;
}

.budget__form-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.budget__form-title {
  font-size: 1.75rem;
  color: #3F7054;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.budget__form-subtitle {
  color: #6C685D;
  font-size: 0.95rem;
}

.budget__section {
  margin-bottom: 2rem;
}

.budget__section-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #F5F5E0;
}

.section-icon {
  font-size: 1.5rem;
}

.budget__section-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #3F7054;
  margin: 0;
}

.budget__form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.75rem;
}

.budget__expense-category {
  margin-bottom: 1rem;
  padding: 1rem;
  background: #F5F5E0;
  border-radius: 12px;
  border: 1px solid rgba(63, 112, 84, 0.1);
}

.category-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.category-icon {
  font-size: 1.25rem;
}

.category-header h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #3F7054;
  margin: 0;
}

.budget__form-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.budget__form-group label {
  font-weight: 600;
  color: #3F7054;
  font-size: 0.8rem;
}

.budget__form-group input {
  padding: 0.5rem;
  border: 2px solid #e1e5e9;
  border-radius: 8px;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  background: #FFFFFF;
}

.budget__form-group input:focus {
  outline: none;
  border-color: #3F7054;
  box-shadow: 0 0 0 3px rgba(63, 112, 84, 0.1);
}

.budget__calculate-btn {
  background: linear-gradient(135deg, #3F7054, #A0C692);
  color: #F5F5E0;
  border: none;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  font-size: 1rem;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.budget__calculate-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(63, 112, 84, 0.3);
}

.btn-icon {
  font-size: 1.1rem;
}

/* Budget Results Section */
.budget__results-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.budget__summary {
  background: #FFFFFF;
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 10px 25px rgba(63, 112, 84, 0.1);
  border: 1px solid rgba(63, 112, 84, 0.1);
}

.budget__summary-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  text-align: center;
  justify-content: center;
}

.summary-icon {
  font-size: 2rem;
}

.budget__summary-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: #3F7054;
  margin: 0;
}

.budget__summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.budget__summary-item {
  text-align: center;
  padding: 1rem;
  background: #F5F5E0;
  border-radius: 12px;
  border: 1px solid rgba(63, 112, 84, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.budget__summary-item--highlight {
  background: linear-gradient(135deg, #3F7054, #A0C692);
  color: #F5F5E0;
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(63, 112, 84, 0.2);
}

.summary-item-icon {
  font-size: 1.5rem;
}

.summary-item-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.budget__summary-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  opacity: 0.9;
}

.budget__summary-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
}

/* Charts Section */
.budget__charts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.budget__chart-container {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 15px 35px rgba(63, 112, 84, 0.1);
  border: 1px solid rgba(63, 112, 84, 0.1);
  min-height: 350px;
}

.chart-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  text-align: center;
  justify-content: center;
}

.chart-icon {
  font-size: 1.5rem;
}

.budget__chart-container h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #3F7054;
  margin: 0;
}

.budget__chart-container canvas {
  max-height: 300px;
  min-height: 200px;
  width: 100% !important;
  height: 300px !important;
}

/* Financial Advice Section */
.budget__advice {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 15px 35px rgba(63, 112, 84, 0.1);
  border: 1px solid rgba(63, 112, 84, 0.1);
}

.budget__advice-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  text-align: center;
  justify-content: center;
}

.advice-icon {
  font-size: 2rem;
}

.budget__advice-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: #3F7054;
  margin: 0;
}

.budget__advice-content {
  line-height: 1.6;
}

.advice-placeholder {
  text-align: center;
  padding: 2rem;
  color: #6C685D;
}

.placeholder-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.advice-item {
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  border-radius: 15px;
  border-left: 4px solid;
}

.advice-warning {
  background: #fff3cd;
  border-left-color: #ffc107;
}

.advice-caution {
  background: #d1ecf1;
  border-left-color: #17a2b8;
}

.advice-positive {
  background: #d4edda;
  border-left-color: #28a745;
}

.advice-general {
  background: #f8f9fa;
  border-left-color: #6c757d;
}

.advice-item h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #3F7054;
}

.advice-item p {
  margin-bottom: 1rem;
  color: #6C685D;
}

.advice-item ul {
  margin-left: 1rem;
  color: #6C685D;
}

.advice-item li {
  margin-bottom: 0.5rem;
}

/* Budget Tips Section */
.budget__tips {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 15px 35px rgba(63, 112, 84, 0.1);
  border: 1px solid rgba(63, 112, 84, 0.1);
}

.budget__tips-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  text-align: center;
  justify-content: center;
}

.tips-icon {
  font-size: 2rem;
}

.budget__tips-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: #3F7054;
  margin: 0;
}

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

.budget__tip {
  padding: 1.5rem;
  background: #F5F5E0;
  border-radius: 15px;
  border: 1px solid rgba(63, 112, 84, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.budget__tip:hover {
  transform: translateY(-5px);
}

.tip-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.budget__tip h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #3F7054;
}

.budget__tip p {
  color: #6C685D;
  line-height: 1.6;
  font-size: 0.95rem;
}

.outro_budget {
  background: linear-gradient(135deg, #CEC7BD 0%, #A0C692 100%);
  color: #000000;
}

/* ===== COMPACT CALCULATORS PAGE DESIGN ===== */

/* Compact Calculator Hero */
.calculator-hero {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem 0;
}

.calculator-hero__icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  animation: bounce 2s infinite;
}

.calculator-hero__stats {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}

.calculator-stat {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-width: 90px;
  text-align: center;
}

.calculator-stat__number {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: #A0C692;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.calculator-stat__label {
  font-size: 0.7rem;
  color: #F5F5E0;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Compact Calculators Section */
.calculators {
  padding: 2rem 0;
  background: #F5F5E0;
}

.calculators__intro {
  text-align: center;
  margin-bottom: 2rem;
}

.calculators__intro-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: #3F7054;
  margin-bottom: 0.5rem;
}

.calculators__intro-text {
  font-size: 0.9rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}

.calculators__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.calculators__column {
  background: #FFFFFF;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(63, 112, 84, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(63, 112, 84, 0.1);
  position: relative;
}

.calculators__column:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(63, 112, 84, 0.15);
}

.calculators__column::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #3F7054, #A0C692);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.calculators__column:hover::before {
  transform: scaleX(1);
}

/* Calculator Header */
.item-calculator__header {
  background: linear-gradient(135deg, #3F7054, #A0C692);
  color: #F5F5E0;
  padding: 1rem;
  text-align: center;
  position: relative;
}

.item-calculator__icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  display: block;
}

.item-calculator__title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #F5F5E0;
}

.item-calculator__badge {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  color: #F5F5E0;
  padding: 0.25rem 0.5rem;
  border-radius: 20px;
  font-size: 0.6rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
}

.item-calculator__content {
  padding: 1rem;
}

.item-calculator__text {
  margin-bottom: 0.75rem;
  line-height: 1.4;
  color: #6C685D;
  font-size: 0.75rem;
}

/* Feature Tags */
.item-calculator__features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}

.feature-tag {
  background: #F5F5E0;
  color: #3F7054;
  padding: 0.2rem 0.4rem;
  border-radius: 12px;
  font-size: 0.65rem;
  font-weight: 500;
}

.item-calculator__form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

.form-group label {
  font-weight: 600;
  color: #3F7054;
  font-size: 0.7rem;
}

.form-group input,
.form-group select {
  padding: 0.4rem;
  border: 2px solid #e1e5e9;
  border-radius: 6px;
  font-size: 0.75rem;
  transition: all 0.3s ease;
  background: #FFFFFF;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #3F7054;
  box-shadow: 0 0 0 3px rgba(63, 112, 84, 0.1);
}

.calculator-button {
  background: linear-gradient(135deg, #3F7054, #A0C692);
  color: #F5F5E0;
  border: none;
  padding: 0.6rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.4rem;
}

.calculator-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(63, 112, 84, 0.3);
}

.button-icon {
  font-size: 1rem;
}

.calculator-result {
  margin-top: 1rem;
  padding: 1rem;
  background: linear-gradient(135deg, #F5F5E0, #FFFFFF);
  border-radius: 10px;
  border-left: 4px solid #3F7054;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  font-size: 0.85rem;
}

.calculator-results h4 {
  color: #3F7054;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
}

.calculator-results p {
  margin-bottom: 0.5rem;
  color: #6C685D;
  font-size: 0.8rem;
}

.calculator-results strong {
  color: #3F7054;
  font-weight: 600;
}

.error {
  color: #dc3545;
  background: #f8d7da;
  padding: 0.5rem;
  border-radius: 6px;
  border: 1px solid #f5c6cb;
  margin-top: 0.75rem;
  font-size: 0.8rem;
}

/* Compact Tips Section */
.calculators__tips {
  background: #FFFFFF;
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 15px 35px rgba(63, 112, 84, 0.1);
  border: 1px solid rgba(63, 112, 84, 0.1);
}

.calculators__tips-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #3F7054;
  margin-bottom: 1rem;
  text-align: center;
}

.calculators__tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.tip-card {
  padding: 1rem;
  background: #F5F5E0;
  border-radius: 10px;
  border: 1px solid rgba(63, 112, 84, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.tip-card:hover {
  transform: translateY(-3px);
}

.tip-icon {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  display: block;
}

.tip-card h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #3F7054;
}

.tip-card p {
  color: #6C685D;
  line-height: 1.4;
  font-size: 0.75rem;
}

/* Compact Outro Section */
.outro_calculators {
  background: linear-gradient(135deg, #3F7054 0%, #A0C692 100%);
  color: white;
  padding: 2rem 0;
}

.outro__cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.outro__button.secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.outro__button.secondary:hover {
  background: white;
  color: #3F7054;
}

/* ===== MODERN BLOG PAGE DESIGN ===== */

/* Blog Hero Section */
.main_blog {
  background: linear-gradient(135deg, #3F7054 0%, #A0C692 100%);
  position: relative;
  overflow: hidden;
}

.main_blog::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.main_blog .main__container_pages {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 4rem 0;
}

.main_blog .main__title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #F5F5E0;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.main_blog .main__text {
  font-size: 1.25rem;
  color: #F5F5E0;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  opacity: 0.95;
}

/* Modern Blog Section */
.blog {
  padding: 4rem 0;
  background: #F8F9FA;
}

.blog__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.blog__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

/* Blog Card Design */
.blog__column {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(63, 112, 84, 0.1);
  position: relative;
}

.blog__column:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(63, 112, 84, 0.15);
}

.blog__column::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #3F7054, #A0C692);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.blog__column:hover::before {
  transform: scaleX(1);
}

.item-blog {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.item-blog__image {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.item-blog__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.item-blog__image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(63, 112, 84, 0.1), rgba(160, 198, 146, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.blog__column:hover .item-blog__image::after {
  opacity: 1;
}

.item-blog__content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.item-blog__date {
  color: #A0C692;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.item-blog__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #3F7054;
  margin-bottom: 1rem;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.blog__column:hover .item-blog__title {
  color: #2C5A3D;
}

.item-blog__text {
  color: #6C685D;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  font-size: 0.95rem;
}

.item-blog__button {
  align-self: flex-start;
  background: linear-gradient(135deg, #3F7054, #A0C692);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.item-blog__button::after {
  content: '→';
  transition: transform 0.3s ease;
}

.item-blog__button:hover {
  transform: translateX(5px);
  box-shadow: 0 10px 25px rgba(63, 112, 84, 0.3);
  background: white;
  color: #3F7054;
  border-color: #3F7054;
}

.item-blog__button:hover::after {
  transform: translateX(3px);
}

/* Blog Categories */
.blog-categories {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.blog-category {
  background: white;
  color: #3F7054;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid #3F7054;
  font-size: 0.9rem;
}

.blog-category:hover,
.blog-category.active {
  background: #3F7054;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(63, 112, 84, 0.3);
}

/* Blog Search */
.blog-search {
  max-width: 500px;
  margin: 0 auto 3rem;
  position: relative;
}

.blog-search input {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 2px solid #e1e5e9;
  border-radius: 25px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

.blog-search input:focus {
  outline: none;
  border-color: #3F7054;
  box-shadow: 0 0 0 3px rgba(63, 112, 84, 0.1);
}

.blog-search::after {
  content: '🔍';
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  pointer-events: none;
}

/* Modern Outro Section */
.outro_blog {
  background: linear-gradient(135deg, #3F7054 0%, #A0C692 100%);
  color: white;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.outro_blog::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  opacity: 0.3;
}

.outro_blog .outro__container {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.outro_blog .outro__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
}

.outro_blog .outro__text {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.outro_blog .outro__button {
  background: white;
  color: #3F7054;
  padding: 1rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid white;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.outro_blog .outro__button:hover {
  background: transparent;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/* Clean Services Mobile Responsive Styles */
@media (max-width: 47.999rem) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.125rem;
  }

  .hero-stats-clean {
    gap: 1.5rem;
  }

  .stat-item-clean {
    padding: 1rem 1.5rem;
    min-width: 100px;
  }

  .stat-number-clean {
    font-size: 2rem;
  }

  .hero-cta-clean {
    flex-direction: column;
    align-items: center;
  }

  .services-grid-clean {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-card-clean {
    padding: 1.5rem;
  }

  .card-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .icon-wrapper {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  .card-footer {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .benefit-item {
    padding: 1.5rem;
  }

  .benefit-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .cta-features {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  /* Clean About Mobile Styles */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-image-wrapper {
    margin-bottom: 2rem;
  }

  .about-text-section {
    gap: 1.5rem;
  }

  .about-features {
    gap: 1rem;
  }

  .feature-item {
    padding: 1rem;
  }

  .feature-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .value-card {
    padding: 2rem;
  }

  .value-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  /* Compact Calculators Mobile Styles */
  .calculator-hero__stats {
    gap: 1rem;
  }

  .calculator-stat {
    padding: 0.75rem 1rem;
    min-width: 80px;
  }

  .calculator-stat__number {
    font-size: 1.5rem;
  }

  .calculators__intro-title {
    font-size: 1.75rem;
  }

  .calculators__row {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .calculators__column {
    padding: 1rem;
  }

  .item-calculator__header {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .item-calculator__icon {
    width: 35px;
    height: 35px;
    font-size: 1.25rem;
  }

  .item-calculator__title {
    font-size: 1rem;
  }

  .item-calculator__badge {
    position: static;
    align-self: center;
  }

  .calculators__tips-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .tip-card {
    padding: 0.75rem;
  }

  .tip-icon {
    font-size: 1.25rem;
  }

  /* Very small screens - stack calculators in single column */
  @media (max-width: 768px) {
    .calculators__row {
      grid-template-columns: 1fr;
      gap: 1rem;
    }
  }

  /* Blog Mobile Styles */
  .main_blog .main__title {
    font-size: 2.5rem;
  }

  .main_blog .main__text {
    font-size: 1.1rem;
  }

  .blog__row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .item-blog__content {
    padding: 1.5rem;
  }

  .item-blog__title {
    font-size: 1.25rem;
  }

  .blog-categories {
    gap: 0.75rem;
  }

  .blog-category {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }

  .outro_blog .outro__title {
    font-size: 2rem;
  }
}

/* ===== NEW CLEAN ABOUT PAGE DESIGN ===== */

/* Clean About Hero Section */
.about-hero-clean {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 1.5rem 0;
}

/* About Content Section */
.about-content {
  padding: 3rem 0;
  background: #F5F5E0;
}

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

.about-image-section {
  position: relative;
}

.about-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.about-image-wrapper:hover .about-image {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(63, 112, 84, 0.9), rgba(160, 198, 146, 0.9));
  color: white;
  padding: 1.5rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.about-image-wrapper:hover .image-overlay {
  transform: translateY(0);
}

.overlay-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
}

.overlay-content i {
  font-size: 1.25rem;
}

.about-text-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-content-text {
  line-height: 1.5;
  color: #666;
  font-size: 0.9rem;
}

.about-content-text p {
  margin-bottom: 0.75rem;
}

.about-content-text p:last-child {
  margin-bottom: 0;
}

/* About Features */
.about-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.75rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, #3F7054, #A0C692);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.feature-content h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #3F7054;
  margin-bottom: 0.25rem;
}

.feature-content p {
  color: #333333 !important;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
}

.about-cta {
  margin-top: 0.5rem;
}

/* Values Section */
.values-section {
  padding: 3rem 0;
  background: linear-gradient(135deg, #3F7054 0%, #A0C692 100%);
  color: white;
}

.values-section .section-header h2 {
  color: #F5F5E0 !important;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.value-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.value-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  font-size: 1.25rem;
  color: #A0C692;
}

.value-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.value-card p {
  line-height: 1.4;
  opacity: 0.9;
  font-size: 0.85rem;
}

.footer__portals {
  justify-content: flex-end;
}

.footer__navigation {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 0 2rem;
}

.footer__nav-section h4 {
  color: #F5F5E0;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: left;
  opacity: 0.9;
  letter-spacing: 0.5px;
}

.footer__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__nav-list li {
  margin-bottom: 0.5rem;
}

.footer__nav-list a {
  color: #F5F5E0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  opacity: 0.8;
  display: inline-block;
  padding: 0.25rem 0;
}

.footer__nav-list a:hover {
  color: #FFFFFF;
  opacity: 1;
  transform: translateX(5px);
}



/* Enhanced Budget Hero Section - COMPACT */
.budget-hero {
  text-align: center;
  padding: 1rem 0;
}

.budget-hero__icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  animation: pulse 2s infinite;
}

.budget-hero__features {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.budget-feature {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.budget-feature__icon {
  font-size: 1rem;
}

.budget-feature__text {
  font-size: 0.75rem;
  color: #F5F5E0;
  font-weight: 500;
}

.budget {
  padding: 2rem 0;
  background: #F5F5E0;
}

.budget__container {
  max-width: 100rem;
}

/* Budget Intro Section - COMPACT */
.budget__intro {
  text-align: center;
  margin-bottom: 1.5rem;
  padding: 0 1rem;
}

.budget__intro-title {
  font-size: 1.75rem;
  color: #3F7054;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.budget__intro-text {
  font-size: 0.9rem;
  color: #6C685D;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.4;
}

.budget__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

/* Budget Input Section - COMPACT */
.budget__input-section {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 8px 20px rgba(63, 112, 84, 0.1);
  border: 1px solid rgba(63, 112, 84, 0.1);
  position: sticky;
  top: 1rem;
}

.budget__form-header {
  text-align: center;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #F5F5E0;
}

.budget__form-icon {
  font-size: 1.75rem;
  margin-bottom: 0.25rem;
  display: block;
}

.budget__form-title {
  font-size: 1.25rem;
  color: #3F7054;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.budget__form-subtitle {
  color: #6C685D;
  font-size: 0.8rem;
}

.budget__section {
  margin-bottom: 1rem;
}

.budget__section-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid #F5F5E0;
}

.section-icon {
  font-size: 1.25rem;
}

.budget__section-title {
  font-size: 1rem;
  font-weight: 600;
  color: #3F7054;
  margin: 0;
}

.budget__form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.5rem;
}

.budget__expense-category {
  margin-bottom: 0.75rem;
  padding: 0.75rem;
  background: #F5F5E0;
  border-radius: 8px;
  border: 1px solid rgba(63, 112, 84, 0.1);
}

.category-header {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.category-icon {
  font-size: 1rem;
}

.category-header h5 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #3F7054;
  margin: 0;
}

.budget__form-group {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.budget__form-group label {
  font-weight: 600;
  color: #3F7054;
  font-size: 0.7rem;
}

.budget__form-group input {
  padding: 0.375rem;
  border: 1px solid #e1e5e9;
  border-radius: 6px;
  font-size: 0.75rem;
  transition: all 0.3s ease;
  background: #FFFFFF;
}

.budget__form-group input:focus {
  outline: none;
  border-color: #3F7054;
  box-shadow: 0 0 0 2px rgba(63, 112, 84, 0.1);
}

.budget__calculate-btn {
  width: 100%;
  background: linear-gradient(135deg, #3F7054 0%, #A0C692 100%);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.budget__calculate-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(63, 112, 84, 0.3);
}

.btn-icon {
  font-size: 1rem;
}

/* Budget Results Section - COMPACT */
.budget__results-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.budget__summary {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(63, 112, 84, 0.1);
}

.budget__summary-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #F5F5E0;
}

.summary-icon {
  font-size: 1.25rem;
}

.budget__summary-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #3F7054;
  margin: 0;
}

.budget__summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.75rem;
}

.budget__summary-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: #F5F5E0;
  border-radius: 8px;
  border: 1px solid rgba(63, 112, 84, 0.1);
  transition: all 0.3s ease;
}

.budget__summary-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(63, 112, 84, 0.15);
}

.budget__summary-item--highlight {
  background: linear-gradient(135deg, #3F7054 0%, #A0C692 100%);
  color: white;
  border: none;
}

.summary-item-icon {
  font-size: 1rem;
}

.summary-item-content {
  flex: 1;
}

.budget__summary-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: inherit;
  margin-bottom: 0.125rem;
  opacity: 0.9;
}

.budget__summary-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: inherit;
}

/* Budget Charts - COMPACT */
.budget__charts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.budget__chart-container {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(63, 112, 84, 0.1);
  text-align: center;
}

.chart-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #F5F5E0;
}

.chart-icon {
  font-size: 1.25rem;
}

.budget__chart-container h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #3F7054;
  margin: 0;
}

.budget__chart-container canvas {
  max-width: 100%;
  height: auto;
  max-height: 200px;
}

/* Budget Advice - COMPACT */
.budget__advice {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(63, 112, 84, 0.1);
}

.budget__advice-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #F5F5E0;
}

.advice-icon {
  font-size: 1.25rem;
}

.budget__advice-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #3F7054;
  margin: 0;
}

.budget__advice-content {
  font-size: 0.85rem;
  line-height: 1.5;
  color: #6C685D;
}

.advice-placeholder {
  text-align: center;
  padding: 2rem;
  color: #6C685D;
}

.placeholder-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.advice-item {
  margin-bottom: 0.75rem;
  padding: 0.75rem;
  border-radius: 8px;
  border-left: 4px solid;
}

.advice-warning {
  background: rgba(255, 193, 7, 0.1);
  border-left-color: #ffc107;
}

.advice-caution {
  background: rgba(220, 53, 69, 0.1);
  border-left-color: #dc3545;
}

.advice-positive {
  background: rgba(40, 167, 69, 0.1);
  border-left-color: #28a745;
}

.advice-general {
  background: rgba(63, 112, 84, 0.1);
  border-left-color: #3F7054;
}

.advice-item h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #3F7054;
}

.advice-item p {
  font-size: 0.8rem;
  margin-bottom: 0.25rem;
  color: #6C685D;
}

.advice-item ul {
  margin: 0.25rem 0;
  padding-left: 1rem;
}

.advice-item li {
  font-size: 0.8rem;
  color: #6C685D;
  margin-bottom: 0.125rem;
}

/* Budget Tips - COMPACT */
.budget__tips {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(63, 112, 84, 0.1);
}

.budget__tips-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #F5F5E0;
}

.tips-icon {
  font-size: 1.25rem;
}

.budget__tips-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #3F7054;
  margin: 0;
}

.budget__tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0.75rem;
}

.budget__tip {
  padding: 0.75rem;
  background: #F5F5E0;
  border-radius: 8px;
  border: 1px solid rgba(63, 112, 84, 0.1);
  transition: all 0.3s ease;
}

.budget__tip:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(63, 112, 84, 0.15);
}

.tip-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  display: block;
}

.budget__tip h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #3F7054;
  margin-bottom: 0.25rem;
}

.budget__tip p {
  font-size: 0.8rem;
  color: #6C685D;
  line-height: 1.4;
  margin: 0;
}

/* Privacy Policy Page Styles */
.main_privacy {
  background: linear-gradient(135deg, #3F7054 0%, #A0C692 100%);
}

.privacy-hero {
  text-align: center;
  padding: 2rem 0;
}

.privacy-hero__icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  animation: pulse 2s infinite;
}

.privacy-hero__features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.privacy-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.privacy-feature__icon {
  font-size: 1.25rem;
}

.privacy-feature__text {
  font-size: 0.875rem;
  color: #F5F5E0;
  font-weight: 500;
}

.privacy-content {
  padding: 4rem 0;
  background: #F5F5E0;
}

.privacy__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.privacy__intro {
  text-align: center;
  margin-bottom: 3rem;
}

.privacy__last-updated {
  font-size: 0.9rem;
  color: #6C685D;
  margin-bottom: 1rem;
  font-style: italic;
}

.privacy__intro-text {
  font-size: 1.1rem;
  color: #6C685D;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

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

.privacy__section {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(63, 112, 84, 0.1);
}

.privacy__section-title {
  font-size: 1.5rem;
  color: #3F7054;
  margin-bottom: 1rem;
  font-weight: 600;
  border-bottom: 2px solid #F5F5E0;
  padding-bottom: 0.5rem;
}

.privacy__section-content h3 {
  font-size: 1.2rem;
  color: #3F7054;
  margin: 1.5rem 0 0.75rem 0;
  font-weight: 600;
}

.privacy__section-content h3:first-child {
  margin-top: 0;
}

.privacy__section-content p {
  font-size: 1rem;
  color: #6C685D;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.privacy__section-content ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.privacy__section-content li {
  font-size: 1rem;
  color: #6C685D;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.privacy__section-content strong {
  color: #3F7054;
  font-weight: 600;
}

.contact-info {
  background: #F5F5E0;
  padding: 1.5rem;
  border-radius: 8px;
  margin: 1rem 0;
  border: 1px solid rgba(63, 112, 84, 0.1);
}

.contact-info p {
  margin-bottom: 0.5rem;
}

.contact-info p:last-child {
  margin-bottom: 0;
}

/* Mobile Responsive */
@media (max-width: 47.999rem) {
  .privacy-hero {
    padding: 1rem 0;
  }

  .privacy-hero__icon {
    font-size: 2.5rem;
  }

  .privacy-hero__features {
    flex-direction: column;
    gap: 0.5rem;
  }

  .privacy-feature {
    padding: 0.5rem 1rem;
  }

  .privacy-content {
    padding: 2rem 0;
  }

  .privacy__container {
    padding: 0 0.9375rem;
  }

  .privacy__intro {
    margin-bottom: 2rem;
  }

  .privacy__intro-text {
    font-size: 1rem;
  }

  .privacy__sections {
    gap: 1.5rem;
  }

  .privacy__section {
    padding: 1.5rem;
  }

  .privacy__section-title {
    font-size: 1.25rem;
  }

  .privacy__section-content h3 {
    font-size: 1.1rem;
  }

  .privacy__section-content p,
  .privacy__section-content li {
    font-size: 0.9rem;
  }

  .contact-info {
    padding: 1rem;
  }
}

/* Enhanced Animations - Making the website more dynamic! */

/* Page Load Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInFromTop {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Enhanced Float Animation */
@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  25% { transform: translateY(-10px) rotate(1deg); }
  50% { transform: translateY(-5px) rotate(0deg); }
  75% { transform: translateY(-15px) rotate(-1deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

/* Enhanced Pulse Animation */
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.8; }
}

/* Bounce Animation Enhancement */
@keyframes bounce {
  0%, 20%, 53%, 80%, 100% { transform: translateY(0); }
  40%, 43% { transform: translateY(-10px); }
  70% { transform: translateY(-5px); }
  90% { transform: translateY(-2px); }
}

/* Shake Animation for Buttons */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-2px); }
  20%, 40%, 60%, 80% { transform: translateX(2px); }
}

/* Glow Animation */
@keyframes glow {
  0%, 100% { box-shadow: 0 0 5px rgba(63, 112, 84, 0.3); }
  50% { box-shadow: 0 0 20px rgba(63, 112, 84, 0.6); }
}

/* Rotate Animation */
@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Wiggle Animation */
@keyframes wiggle {
  0%, 7% { transform: rotateZ(0); }
  15% { transform: rotateZ(-15deg); }
  20% { transform: rotateZ(10deg); }
  25% { transform: rotateZ(-10deg); }
  30% { transform: rotateZ(6deg); }
  35% { transform: rotateZ(-4deg); }
  40%, 100% { transform: rotateZ(0); }
}

/* Staggered Animation Classes */
.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
}

.animate-fade-in-left {
  animation: fadeInLeft 0.8s ease-out forwards;
  opacity: 0;
}

.animate-fade-in-right {
  animation: fadeInRight 0.8s ease-out forwards;
  opacity: 0;
}

.animate-scale-in {
  animation: scaleIn 0.6s ease-out forwards;
  opacity: 0;
}

.animate-slide-in-top {
  animation: slideInFromTop 0.8s ease-out forwards;
  opacity: 0;
}

/* Staggered delays for grid items */
.animate-stagger-1 { animation-delay: 0.1s; }
.animate-stagger-2 { animation-delay: 0.2s; }
.animate-stagger-3 { animation-delay: 0.3s; }
.animate-stagger-4 { animation-delay: 0.4s; }
.animate-stagger-5 { animation-delay: 0.5s; }
.animate-stagger-6 { animation-delay: 0.6s; }

/* Enhanced Hover Effects */
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(63, 112, 84, 0.3);
}

.main__button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(63, 112, 84, 0.4);
}

/* Enhanced Card Hover Effects */
.item-services:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 50px rgba(63, 112, 84, 0.2);
}

.calculators__column:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px rgba(63, 112, 84, 0.15);
}

/* Enhanced Icon Animations */
.feature-icon:hover {
  animation: wiggle 0.6s ease-in-out;
}

.benefit-icon:hover {
  animation: rotate 0.8s ease-in-out;
}

/* Enhanced Form Focus Effects */
.form-group input:focus,
.form-group textarea:focus {
  transform: scale(1.02);
  box-shadow: 0 0 0 3px rgba(63, 112, 84, 0.1);
}

/* Enhanced Button Click Effects */
.button:active,
.main__button:active {
  transform: translateY(0) scale(0.98);
  animation: shake 0.3s ease-in-out;
}

/* Enhanced Loading States */
.loading {
  animation: pulse 1.5s infinite;
}

/* Enhanced Floating CTA */
.floating-cta__button:hover {
  animation: glow 2s infinite;
}

/* Enhanced Navigation */
.menu__link:hover {
  transform: translateY(-2px);
}

.menu__link.active::after {
  animation: activeIndicator 0.4s ease-in-out;
}

/* Enhanced Stats Animation */
.stat-number {
  animation: fadeInUp 1s ease-out 0.5s forwards;
  opacity: 0;
}

/* Enhanced Hero Elements */
.main__title {
  animation: fadeInUp 1s ease-out 0.2s forwards;
  opacity: 0;
}

.main__text {
  animation: fadeInUp 1s ease-out 0.4s forwards;
  opacity: 0;
}

.main__stats {
  animation: fadeInUp 1s ease-out 0.6s forwards;
  opacity: 0;
}

.main__cta-group {
  animation: fadeInUp 1s ease-out 0.8s forwards;
  opacity: 0;
}

/* Enhanced Trust Badges */
.trust__badge {
  animation: scaleIn 0.8s ease-out forwards;
  opacity: 0;
}

.trust__badge:nth-child(1) { animation-delay: 0.1s; }
.trust__badge:nth-child(2) { animation-delay: 0.2s; }
.trust__badge:nth-child(3) { animation-delay: 0.3s; }
.trust__badge:nth-child(4) { animation-delay: 0.4s; }

/* Enhanced Service Cards */
.service-card-clean {
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
}

.service-card-clean:nth-child(1) { animation-delay: 0.1s; }
.service-card-clean:nth-child(2) { animation-delay: 0.2s; }
.service-card-clean:nth-child(3) { animation-delay: 0.3s; }

/* Enhanced Calculator Cards */
.calculators__column {
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
}

.calculators__column:nth-child(1) { animation-delay: 0.1s; }
.calculators__column:nth-child(2) { animation-delay: 0.2s; }
.calculators__column:nth-child(3) { animation-delay: 0.3s; }

/* Enhanced Blog Cards */
.blog__column {
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
}

.blog__column:nth-child(1) { animation-delay: 0.1s; }
.blog__column:nth-child(2) { animation-delay: 0.2s; }
.blog__column:nth-child(3) { animation-delay: 0.3s; }

/* Enhanced Contact Features */
.contact-feature {
  animation: fadeInLeft 0.8s ease-out forwards;
  opacity: 0;
}

.contact-feature:nth-child(1) { animation-delay: 0.1s; }
.contact-feature:nth-child(2) { animation-delay: 0.2s; }
.contact-feature:nth-child(3) { animation-delay: 0.3s; }

/* Enhanced About Features */
.feature-item {
  animation: fadeInRight 0.8s ease-out forwards;
  opacity: 0;
}

.feature-item:nth-child(1) { animation-delay: 0.1s; }
.feature-item:nth-child(2) { animation-delay: 0.2s; }
.feature-item:nth-child(3) { animation-delay: 0.3s; }

/* Enhanced Value Cards */
.value-card {
  animation: scaleIn 0.8s ease-out forwards;
  opacity: 0;
}

.value-card:nth-child(1) { animation-delay: 0.1s; }
.value-card:nth-child(2) { animation-delay: 0.2s; }
.value-card:nth-child(3) { animation-delay: 0.3s; }

/* Enhanced Footer Animation */
.footer {
  animation: fadeInUp 1s ease-out 0.5s forwards;
  opacity: 0;
}

/* Enhanced Form Submit Button */
.contact__submit-btn:hover {
  animation: glow 2s infinite;
}

.calculator-button:hover {
  animation: glow 2s infinite;
}

.budget__calculate-btn:hover {
  animation: glow 2s infinite;
}

/* Enhanced FAQ Animation */
.faq-item {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }

/* Enhanced Testimonial Cards */
.testimonial-card {
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }

/* Enhanced Budget Tips */
.budget__tip {
  animation: fadeInLeft 0.8s ease-out forwards;
  opacity: 0;
}

.budget__tip:nth-child(1) { animation-delay: 0.1s; }
.budget__tip:nth-child(2) { animation-delay: 0.2s; }
.budget__tip:nth-child(3) { animation-delay: 0.3s; }

/* Enhanced Calculator Tips */
.tip-card {
  animation: fadeInRight 0.8s ease-out forwards;
  opacity: 0;
}

.tip-card:nth-child(1) { animation-delay: 0.1s; }
.tip-card:nth-child(2) { animation-delay: 0.2s; }
.tip-card:nth-child(3) { animation-delay: 0.3s; }

/* Enhanced Social Links */
.social-link:hover {
  animation: wiggle 0.6s ease-in-out;
}

/* Enhanced Logo Animation */
.header__logo:hover {
  animation: wiggle 0.6s ease-in-out;
}

/* Enhanced Mobile Menu Animation */
.icon-menu:hover {
  animation: wiggle 0.6s ease-in-out;
}

/* Enhanced Scroll Indicator */
.scroll-indicator {
  animation: bounce 2s infinite;
}

/* Enhanced Loading Spinner */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loading-spinner {
  animation: spin 1s linear infinite;
}

/* Enhanced Success Animation */
@keyframes success {
  0% { transform: scale(0.8); opacity: 0; }
  50% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

.success-animation {
  animation: success 0.6s ease-out;
}

/* Enhanced Error Animation */
@keyframes error {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
  20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.error-animation {
  animation: error 0.6s ease-in-out;
}

/* Enhanced Focus States */
*:focus {
  outline: 2px solid rgba(63, 112, 84, 0.5);
  outline-offset: 2px;
}

/* Enhanced Accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}