/* ------------------------------
   Simple CSS Reset
--------------------------------*/

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.logo-text {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  letter-spacing: -0.02em;
}

/* Remove default list styles */
ul, ol {
  list-style: none;
}

/* Remove default link underline */
a {
  text-decoration: none;
  color: inherit;
}

/* Make images responsive by default */
img {
  max-width: 100%;
  display: block;
}

/* Keep buttons consistent */
button {
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
}

/* Reset headings: remove browser default margins */
h1, h2, h3, h4, h5, h6 {
  font-weight: inherit;
  line-height: 1.2;
  margin-bottom: 30px;
}

p {
  margin-bottom: 20px;
  font-size: 1.4rem;
}

input,
textarea,
select {
  -webkit-appearance: none;
  appearance: none;

  border: 0;                 /* kills the inset border */
  box-shadow: none;          /* kills inner bevel shadow */
  -webkit-box-shadow: none;  /* extra */
  background-image: none;    /* helps on some types */
  outline: none;
}

html {
  scroll-behavior: smooth;
}

.back-to-top {
  padding: 20px 40px;
  color: var(--color-accent);
  text-align: center;
  display: flex;              /* ADD */
  flex-direction: column;     /* ADD */
  align-items: center;        /* ADD */
  gap: 8px;     
}
.back-to-top__icon {
  width: 80px;
  display: block;
}
.back-to-top-container {
  width: 300px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 20px;
  margin-top: 100px;
}



/* ----------------------------
   GSAP POP FIX
------------------------------*/

/* Optional: avoids a flash of unanimated content */
/*.reveal {
  opacity: 0;
  transform: translateY(16px);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
}*/




/* -----------------------------
   Color Styles
-------------------------------*/
:root {
  /* Core Backgrounds */
  --color-bg-main: #060009;
  --color-bg-surface: #43026f;

  /* Brand Gradient */
  --color-gradient-start: #43026f;
  --color-gradient-end: #060009;

  /* Text */
  --color-text-main: #e9a5fa;
  --color-text-muted: #7f33a2;

  /* Accent */
  --color-accent: #99cc33;
  --color-accent-soft: rgba(124,255,0,0.25);

  /* Forms */
  --field-bg: #43026f;
  --field-bg-active: #6e12ac;
  --field-text: #f0f6d9;

  /* Header / Footer */
  --color-header-bg: #060009;
  --color-footer-bg: #000000;

  /* Lines / UI */
  --color-border: rgba(113, 28, 135, 0.555);
}


input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-text-fill-color: var(--field-text);
  -webkit-box-shadow: 0 0 0px 1000px var(--field-bg-active) inset;
  box-shadow: 0 0 0px 1000px var(--field-bg-active) inset;
  transition: background-color 9999s ease-in-out 0s;
}

/* Modern browsers */
input::placeholder,
textarea::placeholder {
  color: #AFA8D3; /* your muted lavender */
  opacity: 1;     /* Firefox needs this to avoid fading */
}

/* Chrome / Safari / Edge (older WebKit) */
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #AFA8D3;
}

/* Firefox (older) */
input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #AFA8D3;
}

/* IE / legacy Edge */
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #AFA8D3;
}

a {
  color: var(--color-accent);
}
a:hover {
  text-decoration: underline;
}

/* -----------------------------
    Fonts
-------------------------------*/
.anton-regular {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}


/* -----------------------------
    Main
-------------------------------*/
body {
    /*background: radial-gradient(circle at center, var(--color-gradient-start) 0%, var(--color-gradient-end) 100%);*/
    color: var(--color-text-main); /* a soft lavender white that compliments purple */
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 400;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background: radial-gradient(
        circle at center,
        var(--color-gradient-start) 0vh,
        var(--color-gradient-end) 80vh
    );
}

/* -----------------------------
   Header Styles
------------------------------*/

.site-header {
    background: transparent;
    color: var(--color-text-muted);
    border-bottom: none;
}

.header-container {
  /*max-width: 1200px;*/
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* LOGO */
.logo {
  font-size: 1.5rem;
  font-weight: 700;
  white-space: nowrap;
}

.logo span {
  color: #99cc33; /* accent */
}
.logo img {
  display: block;
  height: 62px;   /* or 60–80px if you want it bigger */
  width: auto;
}


/* NAVIGATION (base) */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 24px;
}

.main-nav a {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: color 0.25s ease;
}

.main-nav a:hover {
  color: var(--color-accent);
}

/* PHONE */
.header-phone a {
  color: var(--color-accent);
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  white-space: nowrap;
  transition: color 0.25s ease;
}

.header-phone a:hover {
  color: #8cff8c;
}

/* HAMBURGER BUTTON (base styles) */
.nav-toggle {
  width: 42px;
  height: 30px;
  padding: 0;
  border-radius: 4px;
  
  background: transparent;

  display: none;          /* hidden on desktop; shown in mobile query */
  position: relative;     /* lines are positioned inside this box */
}

/* Three lines stacked with absolute positioning */
.nav-toggle__line {
  position: absolute;
  left: 4px;
  right: 4px;
  height: 2px;
  background: var(--color-text-muted);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Top, middle, bottom bars */
.nav-toggle__line:nth-child(1) {
  top: 5px;
}

.nav-toggle__line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.nav-toggle__line:nth-child(3) {
  bottom: 5px;
}

/* When nav is open, turn into a perfect X */
.site-header.nav-open .nav-toggle__line:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.site-header.nav-open .nav-toggle__line:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .nav-toggle__line:nth-child(3) {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

/* Sticky mobile call button */
.mobile-call-button {
  display: none;                 /* hidden on desktop */
}

/* -----------------------------
   Desktop layout
------------------------------*/

/*------------------------------
   Contact Form 
-------------------------------*/
.main-contact-form-container {
    width: 60%;
    padding-top: 80px;
    padding-bottom: 80px;
    background: rgba(0, 0, 0, 1);
    /*background-color: var(--color-footer-bg);*/
    border-radius: 10px;
    margin: 50px auto;
    text-align: left;
    
}
.main-contact-form {
  /*background: rgba(0, 0, 0, 0.4);*/
  /*background-color: var(--color-footer-bg);*/
  padding-top: 40px;
  padding-bottom: 40px;
}
.main-contact-form input, select, textarea {
    padding: 15px;
    border-radius: 5px;
    background-color: var(--field-bg);
    color: var(--field-text);
    width: 100%;
    margin-bottom: 20px;
    

}

.main-contact-form div {
    margin-left: 20%;
    margin-right: 20%;
    
}

.main-contact-form label {
    color: var(--color-text-main);
}

.contact-form-button {
  background-color: var(--color-accent);
  color: var(--color-bg-main);
  font-weight: 600;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 5px;

}

/* Default placeholder look */
.main-contact-form ::placeholder{
  color: var(--color-bg-main);
}

/* Hide placeholder when field is focused */
.main-contact-form input:focus::placeholder,
.main-contact-form textarea:focus::placeholder{
  opacity: 0;
}

/* === FORM CONTAINER MATCHING CARDS === */

.main-contact-form-container {
  border: 2px solid transparent;
  transition: border 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.main-contact-form-container:hover {
  border: 2px solid #a6ff00;
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(166, 255, 0, 0.3);
}

.main-contact-form input,
.main-contact-form select,
.main-contact-form textarea {
  border: 1px solid transparent;
  transition: border 0.25s ease, box-shadow 0.25s ease;
}

.main-contact-form input:focus,
.main-contact-form select:focus,
.main-contact-form textarea:focus {
  outline: none;
  border: 1px solid #a6ff00;
  box-shadow: 0 0 8px rgba(166, 255, 0, 0.4);
}

.main-contact-form button.cta1 {
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.main-contact-form button.cta1:hover {
  box-shadow: 0 0 15px rgba(166, 255, 0, 0.4);
  transform: translateY(-2px);
}






@media (min-width: 769px) {
  .header-container {
    flex-wrap: nowrap;
  }

  .main-nav {
    order: 2;
  }

  .header-phone {
    order: 3;
  }

  .nav-toggle {
    display: none;
  }
}

/* -----------------------------
   Mobile layout
------------------------------*/

@media (max-width: 768px) {
  
  .header-container {
    flex-wrap: no-wrap;
    align-items: center;
    /* keeps row 2 elements (phone + burger) spread apart */
    justify-content: space-between;
  }

  /* Row 1: logo centered, full width */
  .logo {
    order: 1;
    width: 100%;
    text-align: center;
    margin-bottom: 6px;
  }

  /* Row 2 left: phone */
  .header-phone {
    order: 2;
    display: none;
    font-family: 'Anton', sans-serif;
  }
  .phone-icon {
  display: inline-block;
  margin-right: 8px;
  color: green;
}

  /* Row 2 right: hamburger */
  .nav-toggle {
    order: 3;
    display: flex;       /* show the button on mobile */
    margin-left: auto;   /* push it to the right edge */
  }

  /* Row 3: nav dropdown, full width, hidden by default */
  .main-nav {
    /*order: 4;*/
    width: 100%;
    display: none;
    border-top: 1px solid #222;
    margin-top: 8px;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0 10px;
    
  }

  .site-header.nav-open .main-nav {
    display: block;
    position: absolute;
    z-index: 1000;
    left: 0;
    top: 70px;
    width: 100vw;
    padding-left: 5vw;
    padding-top: 20px;
    height: 300px;
    background-color: var(--color-bg-surface);
    
  }
  .mobile-call-button {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;

    background: var(--color-accent);
    color: var(--color-bg-main);
    font-weight: 700;
    text-align: center;
    padding: 15px 0;
    font-size: 1.1rem;

    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.25);
    border-top: 1px solid #4bbf4b;

    z-index: 9999;
  }
  .mobile-call-button:hover {
    background: #7cff7c;
  }

  .main-contact-form div {
    margin-left: 4%;
    margin-right: 4%;
    
    
}
  .main-contact-form-container {
      padding-top: 20px;
      width: 100%;
      border-radius: 0;
    }

   
}


/*-----------------------------
    Main
------------------------------*/
section p {
  line-height: 1.8em;
  margin-bottom: 40px;
}
.nav-link.active,
.nav-link:hover{
  color: var(--color-accent); /* or your brand green */
  text-decoration: underline;
}

.main {
    min-height: 600px;
}
.top-banner {
  background-color: var(--color-text-muted);
  text-align: center;
  padding-top: 5px;
  padding-bottom: 5px;
}
.top-banner h3 {
  padding: 0;
  margin: 0;
  color: var(--color-footer-bg);
  filter: none;
}
.hero {
    /*min-height: 500px;*/
    width: 100vw;
    background-color: #000000;
    text-align: center;
 padding-bottom: 30px;
 padding-top: 50px;
 background-image: url("/assets/images/vaksul-with-website-sign.png");
 background-position: bottom right;
 background-repeat: no-repeat;
 background-size: 360px 360px;
}
.hero h1 {
  
  color: var(--color-accent);
 
}
section {
  margin-bottom: 10px;
  padding-top: 60px;
}
.sub {
  font-size: 1.1em;
}
.section-one-column {
  text-align: center;
}

.section-inner-container {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
}

.section-two-column .section-inner-container,
.section-three-column .section-inner-container,
.section-four-column .section-inner-container {
  display: grid;
  gap: 20px;
}

.section-two-column .section-inner-container {
  grid-template-columns: repeat(2, 1fr);
}

.section-three-column .section-inner-container {
  grid-template-columns: repeat(3, 1fr);
}

.section-four-column .section-inner-container {
  grid-template-columns: repeat(4, 1fr);
}

/* Shared card style */

.col,
.pricing-box {
  min-width: 0;
  background: #000;
  border-radius: 15px;
  padding: 25px;
  text-align: left;
  border: 2px solid transparent;
  transition: border 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.col:hover,
.pricing-box:hover {
  border: 2px solid #a6ff00;
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(166, 255, 0, 0.3);
}

.col h2,
.pricing-plan-title {
  color: #a6ff00;
  font-size: 22px;
  margin: 0 0 10px;
}

.col p {
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
}

/* Pricing boxes */

.pricing {
  padding: 40px 20px;
  text-align: center;
}

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

.pricing-wrap {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pricing-price {
  font-family: 'Anton', sans-serif;
  color: #fff;
  font-size: 38px;
  line-height: 1;
  margin-bottom: 18px;
}

.pricing-price span {
  font-family: Arial, sans-serif;
  font-size: 16px;
  color: #ccc;
  margin-left: 4px;
}

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

.pricing-list li {
  display: flex;
  align-items: center;
  color: var(--color-text-main);
  font-size: 16px;
  margin-bottom: 12px;
}

.pricing-list li::before {
  content: "";
  flex: 0 0 25px;
  width: 25px;
  height: 25px;
  margin-right: 12px;
  background-image: url("/assets/images/checkmark.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
/* Hero Checks */

.hero-checks {
  max-width: 1000px;
  margin: 20px auto 0;
  text-align: center;
}

.hero-checks ul {
  display: flex;
  justify-content: center;
  gap: 20px; /* spacing between items */
  padding: 0;
  margin: 0;
  list-style: none;
  flex-wrap: wrap; /* allows wrapping on smaller screens */
}

.hero-checks li {
  display: flex;
  align-items: center;
  
  font-size: 1.5em;
}

.hero-checks li::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  margin-right: 8px;

  background-image: url("/assets/images/checkmark.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}


@media (max-width: 768px) {

  .section-inner-container {
    width: 92%;
  }

  .section-two-column .section-inner-container,
  .section-three-column .section-inner-container,
  .section-four-column .section-inner-container,
  .pricing-wrap {
    grid-template-columns: 1fr;
  }

  .pricing-wrap {
    width: 100%;
  }

  .pricing-box,
  .col {
    width: 100%;
  }

  .pricing-price {
  font-family: 'Anton', sans-serif;
  }

  .hero {
    min-height: 1050px;
    background-position: bottom center;
   }

}

/****************************************
  Prices and Services section
******************************************/

.pricing-services-page {
  padding: 40px 20px 70px;
}

.pricing-wrap-one-column {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 900px;
  margin: 0 auto;
  gap: 25px;
}

.pricing-wrap-one-column .pricing-box {
  width: 100%;
}

.pricing-offer-card {
  padding: 42px;
  overflow: hidden;
}

.pricing-offer-top {
  display: grid;
  grid-template-columns: 1.45fr 0.85fr;
  gap: 44px;
  align-items: center;
  padding-bottom: 34px;
  margin-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.pricing-eyebrow {
  color: #a6ff00;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.pricing-plan-title-large {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
  margin: 0 0 18px;
}

.pricing-description {
  color: #fff;
  font-size: 20px;
  line-height: 1.55;
  margin: 0;
  max-width: 640px;
}

.pricing-price-block {
  border-left: 1px solid rgba(255, 255, 255, 0.35);
  padding-left: 36px;
}

.pricing-price-block .pricing-price {
  font-size: clamp(58px, 8vw, 86px);
  margin: 0 0 16px;
}

.pricing-badge {
  display: inline-block;
  color: #a6ff00;
  border: 2px solid #a6ff00;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.pricing-price-note {
  color: #d8d8d8;
  font-size: 16px;
  line-height: 1.45;
  margin: 0;
}

.pricing-list-two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 54px;
}

.pricing-feature-list li {
  margin: 0;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.pricing-cta-wrap {
  text-align: center;
  margin-top: 34px;
}

.pricing-button {
  display: inline-block;
  background: #a6ff00;
  color: #000;
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 14px 42px;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(166, 255, 0, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 28px rgba(166, 255, 0, 0.55);
}

@media (max-width: 800px) {
  .pricing-offer-card {
    padding: 28px;
  }

  .pricing-offer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .pricing-price-block {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    padding-left: 0;
    padding-top: 28px;
  }

  .pricing-list-two-column {
    grid-template-columns: 1fr;
  }

  .pricing-description {
    font-size: 18px;
  }

  .pricing-button {
    width: 100%;
  }
}

/* end prices and services */

/* Starter Website Promo */

.starter-promo {
  padding: 25px 20px 10px;
  text-align: center;
}

.starter-promo-box {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  background: #000;
  border-radius: 15px;
  padding: 28px 32px;
  border: 2px solid transparent;
  text-align: center;
  transition: border 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.starter-promo-box {
  grid-column: 1 / -1;
}

.starter-promo-inner {
  max-width: 900px;
  margin: 0 auto;
}

.starter-promo-box:hover {
  border: 2px solid #a6ff00;
  box-shadow: 0 0 18px rgba(166, 255, 0, 0.25);
  transform: translateY(-3px);
}

.starter-promo-eyebrow {
  color: #a6ff00;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.starter-promo-box h3 {
  color: #fff;
  font-size: clamp(24px, 4vw, 34px);
  margin: 0 0 8px;
}

.starter-promo-main {
  color: #d8d8d8;
  font-size: 17px;
  margin: 0 0 20px;
}

.starter-promo-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 760px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 28px;
  text-align: left;
}

.starter-promo-list li {
  display: flex;
  align-items: center;
  color: var(--color-text-main);
  font-size: 15px;
}

.starter-promo-list li::before {
  content: "";
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  margin-right: 10px;
  background-image: url("/assets/images/checkmark.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

@media (max-width: 700px) {
  .starter-promo {
    padding-left: 20px;
    padding-right: 20px;
  }

  .starter-promo-box {
    width: 100%;
    padding: 24px 25px;
  }

  .starter-promo-list {
    grid-template-columns: 1fr;
  }
}


h1, h2, h3, h4 {
  font-family: 'Anton', sans-serif;
  color: var(--color-text-muted);
  filter: drop-shadow(2px 5px 8px #000000);
}
h1 {
  font-size: 3.5rem;
}
h2 {
  font-size: 2.5rem;
}
h3 {
  font-size: 1.5rem;
}
h4 {
  font-size: 1rem;
}

/* -------------------------
   Buttons
---------------------------*/
.cta1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 2rem;
  color: var(--color-bg-main);
  background: #99CC33;
  background: linear-gradient(180deg, rgba(153, 204, 51, 1) 7%, rgba(41, 64, 7, 1) 100%);
  padding: 20px 40px;
  border-radius: 10px;
  filter: drop-shadow(5px 5px 10px #000000);
}
.cta1:hover {
  background: #99CC33;
  background: linear-gradient(180deg, rgb(98, 134, 26) 7%, rgb(142, 207, 44) 100%);
  text-decoration: none;
}



/* Footer styles */
.site-footer {
    background: var(--color-gradient-end);
    color: var(--color-text-muted); /* slightly dimmer than body text */
    text-align: left;
    padding: 40px 20px;
    font-size: 0.9rem;
    margin-top: 0;
}

.site-footer p {
  font-size: 1rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  /*max-width: 1100px;*/
  margin: 0 auto;
}

.footer-container h3,
.footer-container h4 {
  margin-bottom: 10px;
  color: var(--color-accent);
}

.footer-nav ul {
  list-style: none;
  padding: 0;
}

.footer-nav ul li {
  margin-bottom: 6px;
}

.footer-nav a {
  color: var(--color-text-muted);
  text-decoration: none;
}

.footer-nav a:hover {
  color: var(--color-text-main);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #333;
  margin-top: 30px;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
}
