@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* --- ZMIENNE CSS --- */
:root {
  --font-title: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  
  /* Nowa paleta kolorów - z logo */
  --color-brand-red: #D0031C;       /* Intensywna czerwień z góry logo */
  --color-brand-purple: #7A00A3;    /* Fiolet przejściowy ze środka logo */
  --color-brand-blue: #0000E6;      /* Nasycony błękit królewski z dołu logo */
  --color-text-dark: #111111;       /* Głęboka czerń do tekstów */
  --color-text-muted: #555555;      /* Stonowany ciemnoszary do opisów */
  --color-bg-light: #FAFAFC;        /* Bardzo jasne, chłodne tło (neutralna biel z nutą błękitu) */
  --color-bg-pure: #FFFFFF;         /* Czysta biel do kart i kontenerów */
  --gradient-brand: linear-gradient(135deg, var(--color-brand-red) 0%, var(--color-brand-purple) 50%, var(--color-brand-blue) 100%);
  
  /* Cienie i zaokrąglenia */
  --shadow-sm: 0 2px 8px rgba(10, 25, 47, 0.04);
  --shadow-md: 0 10px 30px rgba(10, 25, 47, 0.08);
  --shadow-lg: 0 20px 40px rgba(10, 25, 47, 0.12);
  --border-radius-sm: 4px;
  --border-radius-md: 12px;
  --border-radius-lg: 20px;
  
  /* Przejścia */
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --header-height: 80px;
}

/* --- RESET --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  color: var(--color-text-dark);
  background-color: var(--color-bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button, input, textarea, select {
  font: inherit;
}

ul {
  list-style: none;
}

/* --- STYLE OGÓLNE --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

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

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

.section-subtitle {
  font-family: var(--font-body);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-brand-purple);
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-title);
  font-size: 2.5rem;
  color: var(--color-brand-blue);
  font-weight: 700;
  line-height: 1.2;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--color-brand-purple);
  margin: 20px auto 0;
}

/* Przyciski */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--gradient-brand);
  color: #FFFFFF;
}

.btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: #FFFFFF;
  border-color: var(--color-brand-blue);
}

.btn-secondary:hover {
  background-color: var(--color-brand-blue);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-brand-blue);
  border-color: var(--color-brand-blue);
}

.btn-outline:hover {
  background-color: var(--color-brand-blue);
  color: var(--color-bg-pure); /* Using pure white for contrast */
  transform: translateY(-2px);
}

/* --- NAGŁÓWEK (HEADER) --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background-color: transparent;
  transition: var(--transition);
}

.header.scrolled {
  background-color: #0A0A33;
  box-shadow: var(--shadow-md);
  height: 70px;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.1;
  letter-spacing: 0.5px;
}

.logo-sub {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #FFFFFF;
  margin-top: 4px;
  font-weight: 500;
}

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

.nav-link {
  color: #FFFFFF;
  font-weight: 500;
  font-size: 0.95rem;
  opacity: 0.85;
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-brand-red);
  transition: var(--transition);
}

.nav-link:hover {
  opacity: 1;
  color: var(--color-brand-red);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  margin-left: 16px;
}

.nav-cta .btn {
  padding: 10px 20px;
  font-size: 0.875rem;
}

/* Hamburger menu */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background-color: var(--color-text-light);
  transition: var(--transition);
}

/* --- SEKCJA HERO --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: #0A0A33; /* Dark blue background */
  /* Subtelny gradient jako tło bez używania obrazów, dostosowany do nowej palety */
  background-image: 
    radial-gradient(circle at 80% 20%, rgba(122, 0, 163, 0.08) 0%, transparent 50%), /* --color-brand-purple with opacity */
    radial-gradient(circle at 10% 80%, rgba(0, 0, 230, 0.6) 0%, transparent 60%); /* --color-brand-blue with opacity */
  padding-top: var(--header-height);
  color: var(--color-text-light);
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  max-width: 650px;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background-color: rgba(122, 0, 163, 0.15); /* rgba of --color-brand-purple */
  border: 1px solid rgba(122, 0, 163, 0.3); /* rgba of --color-brand-purple */
  color: #FFFFFF;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-title);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
  background-image: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.hero-title span {
  display: block;
}

.hero-text {
  font-size: 1.125rem;
  color: rgba(248, 250, 252, 0.8);
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 16px;
}

/* Prawa kolumna hero - Elegancki element dekoracyjny */
.hero-deco {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-shape {
  position: absolute;
  width: 300px;
  height: 300px;
  border: 2px solid rgba(197, 168, 128, 0.2);
  transform: rotate(45deg);
}

.hero-shape-fill {
  position: absolute;
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, rgba(197, 168, 128, 0.1), rgba(10, 25, 47, 0.8));
  border: 1px solid rgba(197, 168, 128, 0.3);
  transform: rotate(45deg);
  backdrop-filter: blur(10px);
}

.hero-shape-solid {
  position: absolute;
  width: 150px;
  height: 150px;
  border: 1px solid var(--color-brand-blue);
  transform: rotate(15deg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand-blue);
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: bold;
}

.hero-logo {
  position: absolute;
  width: 300px;
  height: 300px; /* Set height explicitly to fill the space */
  max-width: 300px;
  max-height: 300px;
  object-fit: contain; /* Ensure the image fits within the bounds without cropping */
  /* Remove border and transform as requested */
  z-index: 1;
  border-radius: var(--border-radius-md); /* Zaokrąglone rogi */
}


/* --- SEKCJA O MNIE --- */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

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

.about-image-frame {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 8px solid var(--color-bg-white);
}

.about-image {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
  filter: contrast(1.02) brightness(0.98);
}

.about-image-deco {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--color-brand-red);
  border-radius: var(--border-radius-md);
  z-index: -1;
  transition: var(--transition);
}

.about-image-wrapper:hover .about-image-deco {
  transform: translate(-10px, -10px);
}

.about-content h3 {
  font-family: var(--font-title);
  font-size: 1.8rem;
  color: var(--color-brand-blue);
  margin-bottom: 16px;
  line-height: 1.3;
}

.about-content .credentials {
  font-weight: 600;
  color: var(--color-brand-purple);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.about-content .credentials::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background-color: var(--color-brand-purple);
}

.about-text {
  color: var(--color-text-dark);
  font-size: 1rem;
  margin-bottom: 24px;
}

.about-text p {
  margin-bottom: 16px;
}

.about-bullets {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.about-bullet-icon {
  color: var(--color-brand-blue);
  flex-shrink: 0;
  margin-top: 3px;
}

.about-bullet-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-primary);
}

/* --- SEKCJA OFERTA (ZAKRES WYCEN) --- */
.offer-intro {
  max-width: 700px;
  margin: -30px auto 50px;
  text-align: center;
  color: var(--color-text-muted);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.offer-card {
  background-color: var(--color-bg-white);
  border-radius: var(--border-radius-md);
  padding: 40px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10, 25, 47, 0.05);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.offer-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 0, 230, 0.4); /* rgba of --color-brand-blue */
}

.offer-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  background-color: rgba(122, 0, 163, 0.1); /* Lighter purple from --color-brand-purple */
  color: var(--color-brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition);
}

.offer-card:hover .offer-icon-wrapper {
  background-color: var(--color-brand-blue);
  color: var(--color-bg-pure);
}

.offer-card-title {
  font-family: var(--font-title);
  font-size: 1.4rem;
  color: var(--color-brand-blue);
  font-weight: 700;
  margin-bottom: 16px;
}

.offer-card-text {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 24px;
  flex-grow: 1;
}

.offer-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 20px;
}

.offer-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--color-text-dark);
}

.offer-list-icon {
  color: var(--color-brand-blue);
  flex-shrink: 0;
}

/* Ważny komunikat pod ofertą */
.offer-info-banner {
  margin-top: 60px;
  background-color: var(--color-bg-light);
  border-left: 4px solid var(--color-brand-blue);
  padding: 24px 30px;
  border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
  display: flex;
  align-items: center;
  gap: 20px;
}

.offer-banner-icon {
  color: var(--color-brand-red);
  flex-shrink: 0;
}

.offer-banner-text {
  font-size: 0.95rem;
  color: var(--color-primary);
  font-weight: 500;
  line-height: 1.5;
}

/* --- SEKCJA ZASADY (ETYKA) --- */
.principles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.principle-card {
  text-align: center;
  padding: 30px 20px;
}

.principle-icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 230, 0.4); /* rgba of --color-brand-blue */
  background-color: var(--color-bg-white);
  color: var(--color-brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.principle-card:hover .principle-icon-wrapper {
  background-color: var(--color-brand-purple);
  color: var(--color-bg-pure);
  transform: rotateY(180deg);
}

.principle-title {
  font-family: var(--font-title);
  font-size: 1.25rem;
  color: var(--color-brand-blue);
  font-weight: 700;
  margin-bottom: 12px;
}

.principle-text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* --- SEKCJA KONTAKT I MAPA --- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Formularz */
.contact-form-wrapper {
  background-color: var(--color-bg-white);
  border-radius: var(--border-radius-md);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(10, 25, 47, 0.05);
}

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

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(10, 25, 47, 0.15);
  border-radius: var(--border-radius-sm);
  background-color: var(--color-bg-light);
  color: var(--color-text-dark);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-brand-blue);
  background-color: var(--color-bg-white);
  box-shadow: 0 0 0 4px rgba(0, 0, 230, 0.15); /* rgba of --color-brand-blue */
}

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

/* Checkbox RODO */
.rodo-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
  cursor: pointer;
}

.rodo-checkbox {
  margin-top: 4px;
  accent-color: var(--color-brand-blue);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.rodo-text {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

.rodo-text a {
  color: var(--color-brand-blue);
  text-decoration: underline;
  font-weight: 500;
}

.form-status {
  padding: 12px;
  border-radius: var(--border-radius-sm);
  font-size: 0.9rem;
  margin-bottom: 20px;
  display: none;
}

.form-status.success {
  display: block;
  background-color: #DEF7EC;
  color: #03543F;
  border: 1px solid #BCF0DA;
}

.form-status.error {
  display: block;
  background-color: #FDE8E8;
  color: #9B1C1C;
  border: 1px solid #FBD5D5;
}

/* Dane firmy */
.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.contact-info-card {
  display: flex;
  gap: 16px;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(0, 0, 230, 0.1); /* Lighter blue from --color-brand-blue */
  color: var(--color-brand-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-content h4 {
  font-family: var(--font-title);
  font-size: 1.1rem;
  color: var(--color-brand-blue);
  margin-bottom: 6px;
}

.contact-info-content p, 
.contact-info-content a {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.contact-info-content a:hover {
  color: var(--color-brand-red);
}

.company-tax-info {
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 24px;
  display: flex;
  gap: 40px;
}

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

.tax-label {
  font-weight: 600;
  color: var(--color-primary);
  margin-right: 6px;
}

.tax-value {
  color: var(--color-text-muted);
}

/* Mapa */
.map-container {
  height: 300px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.08);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: auto;
}

/* --- PODSTRONA POLITYKI PRYWATNOŚCI --- */
.privacy-hero {
  padding: 140px 0 60px;
  background-color: #0A0A33;
  color: var(--color-text-light);
  text-align: center;
}

.privacy-content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 0 100px;
}

.privacy-document {
  background-color: var(--color-bg-white);
  border-radius: var(--border-radius-md);
  padding: 50px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.05);
}

.privacy-document h2 {
  font-family: var(--font-title);
  font-size: 1.6rem;
  color: var(--color-brand-blue);
  margin: 35px 0 15px;
}

.privacy-document h2:first-of-type {
  margin-top: 0;
}

.privacy-document p {
  color: var(--color-text-dark);
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.privacy-document ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}

.privacy-document li {
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: var(--color-text-dark);
}

/* --- STOPKA (FOOTER) --- */
.footer {
  background-color: #0A0A33; /* Dark blue, consistent with hero */
  color: var(--color-text-light);
  padding: 60px 0 30px;
  border-top: 1px solid rgba(0, 0, 230, 0.1); /* rgba of --color-brand-blue */
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(248, 250, 252, 0.1);
  padding-bottom: 40px;
  margin-bottom: 30px;
}

.footer-logo {
  max-width: 400px;
  display: flex;
  flex-direction: column;
}

.footer-nav {
  display: flex;
  gap: 24px;
}

.footer-link {
  font-size: 0.9rem;
  color: rgba(248, 250, 252, 0.7);
}

.footer-link:hover {
  color: var(--color-brand-red);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  font-size: 0.8rem;
  color: rgba(248, 250, 252, 0.5);
}

.footer-privacy-link {
  font-size: 0.8rem;
  color: rgba(248, 250, 252, 0.5);
  text-decoration: underline;
}

.footer-privacy-link:hover {
  color: var(--color-brand-red);
}

/* --- RESPONSYWNOŚĆ (RWD) --- */

@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .about-grid {
    gap: 40px;
  }
  
  .offer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .principles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }
  
  .section {
    padding: 70px 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  /* Menu mobilne */
  .nav-toggle {
    display: block;
    z-index: 1001;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background-color: var(--color-primary);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    box-shadow: var(--shadow-lg);
    transition: 0.4s cubic-bezier(0.1, 0.9, 0.2, 1);
    z-index: 1000;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  /* Hamburger animacja */
  .nav-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  
  .nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  
  .nav-cta {
    margin-left: 0;
    width: 80%;
    text-align: center;
  }
  
  .nav-cta .btn {
    width: 100%;
  }
  
  /* Hero */
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-content {
    margin: 0 auto;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-deco {
    display: flex;
  }
  
  /* O mnie */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .about-image-wrapper {
    max-width: 400px;
    margin: 0 auto;
  }
  
  /* Kontakt */
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-top {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }
  
  .hero-actions .btn {
    width: 100%;
  }
  
  .offer-grid {
    grid-template-columns: 1fr;
  }
  
  .principles-grid {
    grid-template-columns: 1fr;
  }
  
  .about-bullets {
    grid-template-columns: 1fr;
  }
  
  .contact-details {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .company-tax-info {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  
  .contact-form-wrapper {
    padding: 24px;
  }
  
  .privacy-document {
    padding: 24px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}
