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

:root {
  --primary-color: #2c3e50;
  --accent-color: #2980b9;
  --background-color: #f4f6f8;
  --white-color: #ffffff;
  --text-color: #2c3e50;
  --light-text: #7f8c8d;
  --border-color: #e5e7eb;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s ease;
}

body {
  font-family: "Open Sans", sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-color);
  overflow-x: hidden;
}

.faqBlock {
  background: white;
  border-radius: 18px;
  box-shadow: var(--shadow);
  margin-bottom: 3rem;
  padding: 2.5rem 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.8s ease-out;
}

.faqTitle {
  font-family: "Rubik", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
  text-align: center;
}

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

.faqItem {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1.5rem;
  transition: var(--transition);
}

.faqItem:last-child {
  border-bottom: none;
}

.faqQuestion {
  width: 100%;
  background: var(--background-color);
  color: var(--primary-color);
  font-family: "Rubik", sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  border: none;
  outline: none;
  text-align: left;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: none;
  transition: var(--transition);
  position: relative;
  display: flex;
  align-items: center;
}

.faqQuestion::after {
  content: "\25BC";
  font-size: 1rem;
  color: var(--accent-color);
  margin-left: auto;
  transition: transform 0.3s;
}

.faqItem.active .faqQuestion::after {
  transform: rotate(180deg);
}

.faqQuestion:hover {
  background: var(--accent-color);
  color: white;
}

.faqAnswer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s;
  font-size: 1rem;
  color: var(--text-color);
  padding: 0 1.5rem;
  margin-top: 0.5rem;
}

.faqItem.active .faqAnswer {
  max-height: 300px;
  opacity: 1;
  padding-bottom: 1rem;
}

@media (max-width: 768px) {
  .faqBlock {
    padding: 1.5rem 0.5rem;
  }
  .faqTitle {
    font-size: 1.3rem;
  }
  .faqQuestion {
    font-size: 1rem;
    padding: 0.8rem 1rem;
  }
  .faqAnswer {
    font-size: 0.95rem;
    padding: 0 1rem;
  }
}

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

.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
}

.navbar {
  padding: 1rem 0;
}

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

.navLogo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logoWave {
  width: 30px;
  height: 30px;
}

.logoText {
  font-family: "Rubik", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-color);
}

.navMenu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.navLink {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.navLink:hover,
.navLink.active {
  color: var(--accent-color);
}

.navLink::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: var(--transition);
}

.navLink:hover::after,
.navLink.active::after {
  width: 100%;
}

.ctaButton {
  background: var(--accent-color);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.ctaButton:hover {
  background: #1f6ba8;
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--primary-color);
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.heroSection {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.heroBackground {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

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

.heroOverlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(44, 62, 80, 0.7);
  z-index: -1;
}

.heroContent {
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 20px;
  animation: fadeInUp 1s ease-out;
}

.heroTitle {
  font-family: "Rubik", sans-serif;
  font-weight: 700;
  font-size: 3.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.heroSubtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.heroButtons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.heroButtonPrimary {
  background: var(--accent-color);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.heroButtonPrimary:hover {
  background: #1f6ba8;
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.heroButtonSecondary {
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.heroButtonSecondary:hover {
  background: white;
  color: var(--primary-color);
  transform: translateY(-3px);
}

.aboutSection {
  padding: 5rem 0;
  background: white;
}

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

.aboutServices {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.serviceIcon {
  text-align: center;
  padding: 2rem;
  border-radius: 15px;
  background: var(--background-color);
  transition: var(--transition);
}

.serviceIcon:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

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

.serviceIcon h3 {
  font-family: "Rubik", sans-serif;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.serviceIcon p {
  color: var(--light-text);
}

.aboutContent {
  position: relative;
}

.aboutImage {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
}

.aboutText h2 {
  font-family: "Rubik", sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.aboutText p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--light-text);
}

.servicesSection {
  padding: 5rem 0;
  background: var(--background-color);
}

.sectionTitle {
  font-family: "Rubik", sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 3rem;
}

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

.serviceCard {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.serviceImage {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.serviceContent {
  padding: 2rem;
}

.serviceContent h3 {
  font-family: "Rubik", sans-serif;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.serviceContent p {
  color: var(--light-text);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.serviceButton {
  background: var(--accent-color);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.serviceButton:hover {
  background: #1f6ba8;
  transform: translateY(-2px);
}

.portfolioSection {
  padding: 5rem 0;
  background: white;
}

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

.portfolioItem {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  height: 300px;
}

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

.portfolioOverlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 2rem;
  transform: translateY(100%);
  transition: var(--transition);
}

.portfolioItem:hover .portfolioImage {
  transform: scale(1.1);
}

.portfolioItem:hover .portfolioOverlay {
  transform: translateY(0);
}

.portfolioOverlay h3 {
  font-family: "Rubik", sans-serif;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricingSection {
  padding: 5rem 0;
  background: var(--background-color);
}

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

.pricingCard {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}

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

.pricingCardFeatured {
  border: 3px solid var(--accent-color);
  transform: scale(1.05);
}

.pricingCardFeatured::before {
  content: "Beliebt";
  position: absolute;
  top: 0;
  right: 0;
  background: var(--accent-color);
  color: white;
  padding: 0.5rem 1rem;
  font-weight: 600;
  border-radius: 0 0 0 15px;
}

.pricingImage {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.pricingContent {
  padding: 2rem;
}

.pricingContent h3 {
  font-family: "Rubik", sans-serif;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
  text-align: center;
}

.pricingPrice {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  text-align: center;
  margin-bottom: 2rem;
}

.pricingFeatures {
  list-style: none;
  margin-bottom: 2rem;
}

.pricingFeatures li {
  padding: 0.5rem 0;
  color: var(--light-text);
  position: relative;
  padding-left: 1.5rem;
}

.pricingFeatures li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

.pricingButton {
  width: 100%;
  background: var(--accent-color);
  color: white;
  border: none;
  padding: 15px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.pricingButton:hover {
  background: #1f6ba8;
  transform: translateY(-2px);
}

.blogSection {
  padding: 5rem 0;
  background: white;
}

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

.blogCard {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.blogCard:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.blogImage {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blogContent {
  padding: 2rem;
}

.blogContent h3 {
  font-family: "Rubik", sans-serif;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.blogContent p {
  color: var(--light-text);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.blogDate {
  color: var(--accent-color);
  font-weight: 500;
  font-size: 0.9rem;
}

.blogButtonContainer {
  text-align: center;
}

.blogViewAll {
  background: var(--accent-color);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.blogViewAll:hover {
  background: #1f6ba8;
  transform: translateY(-2px);
}

.contactSection {
  padding: 5rem 0;
  background: var(--background-color);
}

.contactGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: 10px 45px;
}

.contactDetails h3 {
  font-family: "Rubik", sans-serif;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.contactItem {
  margin-bottom: 1.5rem;
}

.contactItem strong {
  color: var(--primary-color);
  display: block;
  margin-bottom: 0.5rem;
}

.contactItem p {
  color: var(--light-text);
  margin: 0;
}

.contactMap {
  margin-top: 2rem;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.contactForm {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.formGroup {
  margin-bottom: 1.5rem;
}

.formGroup input,
.formGroup textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
  transition: var(--transition);
  font-family: "Open Sans", sans-serif;
}

.formGroup input:focus,
.formGroup textarea:focus {
  outline: none;
  border-color: var(--accent-color);
}

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

.formSubmit {
  width: 100%;
  background: var(--accent-color);
  color: white;
  border: none;
  padding: 15px;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.formSubmit:hover {
  background: #1f6ba8;
  transform: translateY(-2px);
}

.footer {
  background: var(--primary-color);
  color: white;
  padding: 3rem 0 1rem;
}

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

.footerLogo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}

.footerLogo .logoWave path {
  stroke: white;
}

.footerLogo .logoText {
  color: white;
}

.footerDescription {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.footerNav h4,
.footerLegal h4 {
  margin-bottom: 1rem;
  font-family: "Rubik", sans-serif;
  font-weight: 700;
}

.footerNav ul,
.footerLegal ul {
  list-style: none;
}

.footerNav ul li,
.footerLegal ul li {
  margin-bottom: 0.5rem;
}

.footerNav ul li a,
.footerLegal ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

.footerNav ul li a:hover,
.footerLegal ul li a:hover {
  color: white;
}

.footerBottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.lightboxContent {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.lightboxImage {
  max-width: 100%;
  max-height: 100%;
  border-radius: 10px;
}

.lightboxClose {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.fadeInUp {
  animation: fadeInUp 0.8s ease-out;
}

@media (max-width: 1024px) {
  .navMenu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: white;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 2rem;
    transition: var(--transition);
    box-shadow: var(--shadow);
  }

  .navMenu.active {
    left: 0;
  }

  .hamburger {
    display: flex;
  }

  .ctaButton {
    display: none;
  }

  .heroTitle {
    font-size: 2.5rem;
  }

  .heroSubtitle {
    font-size: 1.2rem;
  }

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

  .aboutServices {
    order: 2;
  }

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

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

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

  .heroTitle {
    font-size: 2rem;
  }

  .heroButtons {
    flex-direction: column;
    align-items: center;
  }

  .heroButtonPrimary,
  .heroButtonSecondary {
    width: 100%;
    max-width: 300px;
  }

  .servicesGrid,
  .portfolioGrid,
  .pricingGrid,
  .blogGrid {
    grid-template-columns: 1fr;
  }

  .pricingCardFeatured {
    transform: none;
  }

  .aboutText h2,
  .sectionTitle {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .heroTitle {
    font-size: 1.8rem;
  }

  .heroSubtitle {
    font-size: 1rem;
  }

  .navContainer {
    padding: 0 15px;
  }

  .contactForm {
    padding: 1.5rem;
  }

  .portfolioGrid {
    gap: 1rem;
  }

  .portfolioItem {
    height: 250px;
  }
}
