/* ===================================
   NEAT BROOK - MINIMALIST DESIGN CSS
   Więcej czasu dla siebie, mniej stresu z porządkami
   =================================== */

/* CSS RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #333333;
  background-color: #FFFFFF;
  overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  color: #2D5F7F;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

h2 {
  font-size: 32px;
  margin-bottom: 24px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

h4 {
  font-size: 18px;
  margin-bottom: 12px;
}

p {
  margin-bottom: 16px;
  color: #555555;
  font-size: 16px;
}

a {
  color: #2D5F7F;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #7AB8D9;
}

ul, ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

li {
  margin-bottom: 8px;
  color: #555555;
}

strong {
  color: #2D5F7F;
  font-weight: 600;
}

/* CONTAINER & LAYOUT */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

section {
  margin-bottom: 80px;
  padding: 60px 0;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background-color: #2D5F7F;
  color: #FFFFFF;
  border-color: #2D5F7F;
}

.btn-primary:hover {
  background-color: #1E4A63;
  border-color: #1E4A63;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(45, 95, 127, 0.2);
}

.btn-secondary {
  background-color: transparent;
  color: #2D5F7F;
  border-color: #2D5F7F;
}

.btn-secondary:hover {
  background-color: #F0F7FA;
  color: #2D5F7F;
  transform: translateY(-2px);
}

/* HEADER */
header {
  background-color: #FFFFFF;
  border-bottom: 1px solid #E8E8E8;
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 20px 0;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.logo img {
  height: 48px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.main-nav a {
  font-size: 16px;
  font-weight: 500;
  color: #333333;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: #2D5F7F;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.header-cta .phone {
  font-weight: 600;
  color: #2D5F7F;
  font-size: 16px;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 2000;
  background-color: #2D5F7F;
  color: #FFFFFF;
  border: none;
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #1E4A63;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #FFFFFF;
  box-shadow: -4px 0 16px rgba(0, 0, 0, 0.1);
  z-index: 1999;
  padding: 80px 32px 32px;
  transition: right 0.4s ease;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  font-size: 32px;
  color: #2D5F7F;
  cursor: pointer;
  padding: 8px;
  transition: color 0.3s ease;
}

.mobile-menu-close:hover {
  color: #1E4A63;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav a {
  font-size: 18px;
  font-weight: 600;
  color: #333333;
  padding: 12px 0;
  border-bottom: 1px solid #E8E8E8;
  transition: color 0.3s ease;
}

.mobile-nav a:hover {
  color: #2D5F7F;
}

/* HERO SECTION */
.hero {
  background-color: #F0F7FA;
  padding: 80px 0;
  margin-bottom: 0;
}

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

.hero h1 {
  font-size: 48px;
  color: #2D5F7F;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 20px;
  color: #555555;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-benefits {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.hero-benefits span {
  font-size: 14px;
  color: #2D5F7F;
  font-weight: 600;
  padding: 8px 16px;
  background-color: #FFFFFF;
  border-radius: 20px;
  white-space: nowrap;
}

.hero-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.trust-badge {
  font-size: 14px;
  color: #555555;
  font-style: italic;
}

/* SECTION UTILITIES */
.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #555555;
  max-width: 700px;
  margin: 0 auto 48px;
}

/* BENEFITS GRID */
.benefits {
  background-color: #FFFFFF;
}

.benefits h2 {
  text-align: center;
  margin-bottom: 16px;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
}

.benefit-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  padding: 32px;
  background-color: #F0F7FA;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(45, 95, 127, 0.1);
}

.benefit-card img {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}

.benefit-card h3 {
  color: #2D5F7F;
  margin-bottom: 12px;
}

.benefit-card p {
  color: #555555;
  margin-bottom: 0;
}

/* HOW IT WORKS */
.how-it-works {
  background-color: #F0F7FA;
}

.how-it-works h2 {
  text-align: center;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
  margin-bottom: 48px;
}

.step {
  flex: 1 1 calc(25% - 32px);
  min-width: 240px;
  padding: 32px;
  background-color: #FFFFFF;
  border-radius: 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.step-number {
  width: 56px;
  height: 56px;
  background-color: #2D5F7F;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  flex-shrink: 0;
}

.step h3 {
  margin-bottom: 8px;
}

.step p {
  margin-bottom: 0;
}

.cta-center {
  text-align: center;
  margin-top: 48px;
}

/* SERVICES */
.services-preview {
  background-color: #FFFFFF;
}

.services-preview h2 {
  text-align: center;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
  margin-bottom: 48px;
}

.service-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  padding: 32px;
  background-color: #F0F7FA;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(45, 95, 127, 0.1);
}

.service-card h3 {
  color: #2D5F7F;
  margin-bottom: 12px;
}

.service-card p {
  margin-bottom: 0;
}

.service-card .price {
  font-size: 24px;
  font-weight: 700;
  color: #2D5F7F;
  margin-top: auto;
}

/* SERVICES DETAILED PAGE */
.services-detailed {
  background-color: #FFFFFF;
}

.service-detail {
  margin-bottom: 60px;
  padding: 40px;
  background-color: #F0F7FA;
  border-radius: 8px;
}

.service-detail h2 {
  color: #2D5F7F;
  margin-bottom: 16px;
}

.service-detail .price {
  font-size: 28px;
  font-weight: 700;
  color: #2D5F7F;
  display: block;
  margin-bottom: 24px;
}

.service-detail h3 {
  margin-top: 24px;
  margin-bottom: 16px;
}

.service-detail ul {
  margin-bottom: 24px;
}

.service-detail li {
  padding-left: 8px;
  margin-bottom: 12px;
}

.service-detail .btn {
  margin-top: 24px;
}

/* TESTIMONIALS */
.testimonials {
  background-color: #FFFFFF;
  padding: 80px 0;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 48px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 48px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  padding: 32px;
  background-color: #FFFFFF;
  border: 2px solid #E8E8E8;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card p {
  color: #333333;
  font-size: 16px;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial-card .author {
  color: #2D5F7F;
  font-weight: 600;
  font-style: normal;
  margin-bottom: 0;
}

.trust-metrics {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
}

.trust-metrics span {
  font-size: 16px;
  font-weight: 600;
  color: #2D5F7F;
  white-space: nowrap;
}

/* CTA SECTIONS */
.cta-final,
.cta-section {
  background-color: #2D5F7F;
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
}

.cta-final h2,
.cta-section h2 {
  color: #FFFFFF;
  margin-bottom: 24px;
}

.cta-final p,
.cta-section p {
  color: #F0F7FA;
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.cta-final .btn-primary,
.cta-section .btn-primary {
  background-color: #FFFFFF;
  color: #2D5F7F;
  border-color: #FFFFFF;
}

.cta-final .btn-primary:hover,
.cta-section .btn-primary:hover {
  background-color: #F0F7FA;
  color: #2D5F7F;
}

.cta-final .btn-secondary,
.cta-section .btn-secondary {
  background-color: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.cta-final .btn-secondary:hover,
.cta-section .btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}

.reassurance {
  font-size: 14px;
  color: #F0F7FA;
  font-style: italic;
}

/* PRICING PAGE */
.pricing {
  background-color: #FFFFFF;
}

.pricing h2 {
  text-align: center;
  margin-bottom: 48px;
}

.pricing-table {
  max-width: 900px;
  margin: 0 auto;
}

.pricing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding: 24px;
  margin-bottom: 16px;
  background-color: #F0F7FA;
  border-radius: 8px;
}

.service-name {
  flex: 1 1 60%;
  min-width: 240px;
}

.service-name h3 {
  margin-bottom: 4px;
}

.service-name p {
  font-size: 14px;
  color: #777777;
  margin-bottom: 0;
}

.service-price {
  flex: 0 1 auto;
  text-align: right;
}

.service-price .price {
  font-size: 24px;
  font-weight: 700;
  color: #2D5F7F;
  display: block;
  margin-bottom: 4px;
}

.service-price p {
  font-size: 14px;
  color: #777777;
  margin-bottom: 0;
}

.pricing .note {
  text-align: center;
  font-size: 14px;
  color: #777777;
  margin-top: 32px;
  font-style: italic;
}

.pricing-factors {
  background-color: #F0F7FA;
  padding: 60px 0;
}

.pricing-factors h2 {
  text-align: center;
  margin-bottom: 32px;
}

.pricing-factors ul {
  max-width: 800px;
  margin: 0 auto;
}

.pricing-factors li {
  margin-bottom: 16px;
  padding-left: 8px;
}

.packages {
  background-color: #FFFFFF;
}

.packages h2 {
  text-align: center;
  margin-bottom: 48px;
}

.packages-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
}

.package-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  padding: 40px;
  background-color: #F0F7FA;
  border-radius: 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.package-card h3 {
  color: #2D5F7F;
  margin-bottom: 8px;
}

.package-price {
  font-size: 32px;
  font-weight: 700;
  color: #2D5F7F;
  margin-bottom: 16px;
}

.package-card ul {
  text-align: left;
  padding-left: 24px;
}

.value-proposition {
  background-color: #F0F7FA;
  padding: 60px 0;
  text-align: center;
}

.value-proposition h2 {
  margin-bottom: 24px;
}

.value-comparison {
  max-width: 600px;
  margin: 32px auto;
  padding: 32px;
  background-color: #FFFFFF;
  border-radius: 8px;
}

.value-comparison p {
  font-size: 18px;
  margin-bottom: 16px;
}

.conclusion {
  max-width: 700px;
  margin: 32px auto 0;
  font-size: 18px;
}

/* PROCESS/HOW WE WORK PAGE */
.process-steps {
  background-color: #FFFFFF;
}

.process-steps h2 {
  text-align: center;
  margin-bottom: 48px;
}

.steps-detailed {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 48px;
}

.step-detail {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px;
  background-color: #F0F7FA;
  border-radius: 8px;
}

.step-detail .step-number {
  flex-shrink: 0;
}

.step-detail h3 {
  margin-bottom: 12px;
}

.step-detail p {
  margin-bottom: 8px;
}

.why-us {
  background-color: #F0F7FA;
}

.why-us h2 {
  text-align: center;
  margin-bottom: 48px;
}

.why-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.why-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  padding: 32px;
  background-color: #FFFFFF;
  border-radius: 8px;
}

.why-card h3 {
  color: #2D5F7F;
  margin-bottom: 12px;
}

.team,
.safety {
  background-color: #FFFFFF;
}

.team h2,
.safety h2 {
  text-align: center;
  margin-bottom: 32px;
}

.team p,
.safety p {
  max-width: 800px;
  margin: 0 auto 24px;
}

.team ul,
.safety ul {
  max-width: 800px;
  margin: 0 auto;
}

/* ABOUT PAGE */
.story,
.mission,
.local,
.trust {
  background-color: #FFFFFF;
}

.story h2,
.mission h2,
.local h2,
.trust h2 {
  text-align: center;
  margin-bottom: 32px;
}

.story p,
.mission p,
.local p,
.trust p {
  max-width: 800px;
  margin: 0 auto 24px;
}

.mission ul,
.trust ul {
  max-width: 800px;
  margin: 0 auto;
}

.values {
  background-color: #F0F7FA;
}

.values h2 {
  text-align: center;
  margin-bottom: 48px;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.value-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  padding: 32px;
  background-color: #FFFFFF;
  border-radius: 8px;
}

.value-card h3 {
  color: #2D5F7F;
  margin-bottom: 12px;
}

.testimonial-single {
  background-color: #F0F7FA;
  text-align: center;
}

.testimonial-single h2 {
  margin-bottom: 32px;
}

.testimonial-single .testimonial-card {
  max-width: 700px;
  margin: 0 auto 24px;
}

.testimonial-single .trust-badge {
  margin-top: 24px;
}

.rating {
  text-align: center;
  font-weight: 600;
  color: #2D5F7F;
  margin-top: 24px;
}

/* CONTACT PAGE */
.contact-methods {
  background-color: #FFFFFF;
}

.contact-methods h2 {
  text-align: center;
  margin-bottom: 48px;
}

.methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.method-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  padding: 32px;
  background-color: #F0F7FA;
  border-radius: 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.method-card img {
  width: 48px;
  height: 48px;
}

.method-card h3 {
  margin-bottom: 8px;
}

.method-card p {
  margin-bottom: 8px;
}

.contact-form {
  background-color: #F0F7FA;
}

.contact-form h2 {
  text-align: center;
  margin-bottom: 16px;
}

.contact-form > .container > p {
  text-align: center;
  margin-bottom: 48px;
}

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px;
  background-color: #FFFFFF;
  border-radius: 8px;
}

.form-field {
  margin-bottom: 24px;
}

.form-field label {
  display: block;
  font-weight: 600;
  color: #2D5F7F;
  margin-bottom: 8px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #E8E8E8;
  border-radius: 4px;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #2D5F7F;
}

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

.form-field input[type="checkbox"] {
  width: auto;
  margin-right: 8px;
}

.form-field label:has(input[type="checkbox"]) {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-weight: 400;
  cursor: pointer;
}

.form-wrapper .btn {
  width: 100%;
  padding: 16px;
  font-size: 18px;
}

.form-note {
  text-align: center;
  font-size: 14px;
  color: #777777;
  margin-top: 16px;
}

.contact-info {
  background-color: #FFFFFF;
}

.contact-info h2 {
  text-align: center;
  margin-bottom: 48px;
}

.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.info-item {
  flex: 1 1 calc(50% - 32px);
  min-width: 240px;
  padding: 24px;
  background-color: #F0F7FA;
  border-radius: 8px;
}

.info-item h3 {
  color: #2D5F7F;
  margin-bottom: 12px;
}

.info-item p {
  margin-bottom: 8px;
}

.service-area {
  background-color: #F0F7FA;
  text-align: center;
}

.service-area h2 {
  margin-bottom: 24px;
}

.service-area p {
  max-width: 800px;
  margin: 0 auto 16px;
}

.what-next {
  background-color: #FFFFFF;
}

.what-next h2 {
  text-align: center;
  margin-bottom: 32px;
}

.what-next ol {
  max-width: 700px;
  margin: 0 auto;
}

.what-next li {
  margin-bottom: 16px;
  padding-left: 8px;
}

.what-next p {
  text-align: center;
  max-width: 700px;
  margin: 32px auto 0;
}

.response-time {
  text-align: center;
  font-weight: 600;
  color: #2D5F7F;
  font-size: 18px;
}

/* THANK YOU PAGE */
.thank-you {
  background-color: #F0F7FA;
  padding: 100px 0;
  text-align: center;
}

.thank-you-content {
  max-width: 700px;
  margin: 0 auto;
}

.success-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 32px;
}

.thank-you h1 {
  margin-bottom: 16px;
}

.thank-you .lead {
  font-size: 24px;
  font-weight: 600;
  color: #2D5F7F;
  margin-bottom: 24px;
}

.thank-you .what-next {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  margin-top: 48px;
  text-align: left;
}

.thank-you .what-next h2 {
  text-align: center;
  margin-bottom: 24px;
}

.thank-you .what-next ol {
  margin-bottom: 0;
}

.urgent-contact {
  background-color: #FFFFFF;
}

.urgent-contact h2 {
  text-align: center;
  margin-bottom: 24px;
}

.urgent-contact p {
  text-align: center;
  margin-bottom: 24px;
}

.urgent-contact .btn {
  display: block;
  max-width: 400px;
  margin: 0 auto 16px;
}

.urgent-contact .hours {
  text-align: center;
  font-size: 14px;
  color: #777777;
}

.helpful-links {
  background-color: #F0F7FA;
}

.helpful-links h2 {
  text-align: center;
  margin-bottom: 48px;
}

.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.link-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  padding: 24px;
  background-color: #FFFFFF;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.link-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(45, 95, 127, 0.1);
}

.link-card h3 {
  color: #2D5F7F;
  margin-bottom: 8px;
}

.link-card p {
  color: #555555;
  margin-bottom: 0;
}

.final-reassurance {
  background-color: #FFFFFF;
}

.final-reassurance h2 {
  text-align: center;
  margin-bottom: 32px;
}

.final-reassurance ul {
  max-width: 700px;
  margin: 0 auto 48px;
}

/* LEGAL PAGES */
.legal-content {
  background-color: #FFFFFF;
  padding: 80px 0;
}

.legal-content h1 {
  text-align: center;
  margin-bottom: 48px;
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
}

.legal-content h3 {
  margin-top: 24px;
  margin-bottom: 16px;
}

.legal-content p,
.legal-content ul {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.legal-content .cta-center {
  margin-top: 60px;
}

/* FOOTER */
footer {
  background-color: #2D5F7F;
  color: #F0F7FA;
  padding: 60px 0 24px;
  margin-top: 80px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-col {
  flex: 1 1 calc(33.333% - 48px);
  min-width: 240px;
}

.footer-col img {
  height: 40px;
  margin-bottom: 16px;
}

.footer-col p {
  color: #F0F7FA;
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-col h4 {
  color: #FFFFFF;
  font-size: 18px;
  margin-bottom: 16px;
}

.footer-col nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col nav a {
  color: #F0F7FA;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-col nav a:hover {
  color: #FFFFFF;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(240, 247, 250, 0.2);
}

.footer-bottom p {
  color: #F0F7FA;
  font-size: 14px;
  margin-bottom: 0;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #FFFFFF;
  border-top: 2px solid #E8E8E8;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
  padding: 24px;
  z-index: 1998;
  display: none;
}

.cookie-banner.active {
  display: block;
}

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

.cookie-banner-text {
  flex: 1 1 60%;
  min-width: 280px;
}

.cookie-banner-text p {
  color: #555555;
  font-size: 14px;
  margin-bottom: 0;
}

.cookie-banner-buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner .btn {
  padding: 10px 24px;
  font-size: 14px;
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal-content {
  background-color: #FFFFFF;
  border-radius: 8px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  color: #2D5F7F;
  cursor: pointer;
  padding: 8px;
}

.cookie-modal h2 {
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background-color: #F0F7FA;
  border-radius: 8px;
}

.cookie-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 12px;
}

.cookie-category h3 {
  margin-bottom: 0;
}

.cookie-toggle {
  position: relative;
  width: 48px;
  height: 24px;
}

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

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

.cookie-toggle-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: #FFFFFF;
  transition: 0.3s;
  border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background-color: #2D5F7F;
}

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

.cookie-toggle input:disabled + .cookie-toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-category p {
  font-size: 14px;
  color: #555555;
  margin-bottom: 0;
}

.cookie-modal-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.cookie-modal-buttons .btn {
  flex: 1 1 auto;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  /* Header */
  .main-nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .mobile-menu {
    display: block;
  }

  /* Sections */
  section {
    margin-bottom: 60px;
    padding: 40px 0;
  }

  .hero {
    padding: 60px 0;
  }

  /* Grids - ensure proper flexbox wrapping */
  .benefits-grid,
  .services-grid,
  .packages-grid,
  .why-grid,
  .values-grid,
  .methods-grid,
  .info-grid,
  .links-grid {
    flex-direction: column;
  }

  .benefit-card,
  .service-card,
  .package-card,
  .why-card,
  .value-card,
  .method-card,
  .info-item,
  .link-card {
    flex: 1 1 100%;
    min-width: 100%;
  }

  /* Steps */
  .steps-grid {
    flex-direction: column;
  }

  .step {
    flex: 1 1 100%;
    min-width: 100%;
  }

  .step-detail {
    flex-direction: column;
    text-align: center;
  }

  /* Testimonials */
  .testimonials-grid {
    flex-direction: column;
  }

  .testimonial-card {
    flex: 1 1 100%;
    min-width: 100%;
  }

  /* CTA Buttons */
  .hero-cta,
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta .btn,
  .cta-buttons .btn {
    width: 100%;
  }

  /* Pricing */
  .pricing-row {
    flex-direction: column;
    text-align: center;
  }

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

  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }

  .footer-col {
    flex: 1 1 100%;
  }

  /* Cookie Banner */
  .cookie-banner-content {
    flex-direction: column;
  }

  .cookie-banner-text {
    flex: 1 1 100%;
  }

  .cookie-banner-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-banner-buttons .btn {
    width: 100%;
  }

  /* Forms */
  .form-wrapper {
    padding: 24px;
  }

  /* Cookie Modal */
  .cookie-modal-content {
    padding: 24px;
  }

  .cookie-modal-buttons {
    flex-direction: column;
  }

  .cookie-modal-buttons .btn {
    width: 100%;
  }

  /* Trust Metrics */
  .trust-metrics {
    flex-direction: column;
    gap: 16px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Adjust grid items for tablets */
  .benefit-card,
  .why-card,
  .value-card,
  .info-item {
    flex: 1 1 calc(50% - 32px);
  }

  .service-card,
  .package-card,
  .method-card {
    flex: 1 1 calc(50% - 32px);
  }

  .step {
    flex: 1 1 calc(50% - 32px);
  }
}

/* ANIMATIONS & TRANSITIONS */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content,
.benefit-card,
.service-card,
.testimonial-card {
  animation: fadeIn 0.6s ease-out;
}

/* UTILITY CLASSES */
.text-center {
  text-align: center;
}

.mt-24 {
  margin-top: 24px;
}

.mb-24 {
  margin-bottom: 24px;
}

.p-24 {
  padding: 24px;
}

/* ACCESSIBILITY */
*:focus {
  outline: 2px solid #2D5F7F;
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 2px solid #2D5F7F;
  outline-offset: 2px;
}

/* PRINT STYLES */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  .btn {
    display: none;
  }

  body {
    color: #000000;
  }

  a {
    text-decoration: underline;
  }
}