:root {
  /* Color palette - complex harmonious pastels */
  --primary-color: #5a78a0;
  --secondary-color: #dcc3a4;
  --accent-color-1: #e7b6af;
  --accent-color-2: #a0c3bd;
  --accent-color-3: #d9c1e6;
  --light-color: #f5f5f5;
  --dark-color: #2c3e50;
  --text-color: #333333;
  --bg-color: #ffffff;
  --footer-bg: #2c3e50;
  --footer-text: #f5f5f5;
  
  /* Typography */
  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Lora', serif;
  --base-font-size: 16px;
  --h1-size: 3rem;
  --h2-size: 2.5rem;
  --h3-size: 2rem;
  --h4-size: 1.5rem;
  --h5-size: 1.25rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: var(--base-font-size);
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

h1 {
  font-size: var(--h1-size);
}

h2 {
  font-size: var(--h2-size);
}

h3 {
  font-size: var(--h3-size);
}

h4 {
  font-size: var(--h4-size);
}

h5 {
  font-size: var(--h5-size);
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-color-1);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

section {
  padding: 80px 0;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  text-align: center;
}

.btn:hover {
  background-color: var(--dark-color);
  color: white;
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--dark-color);
}

.btn-secondary:hover {
  background-color: var(--accent-color-2);
}

.text-center {
  text-align: center;
}

.section-title {
  margin-bottom: 20px;
}

.section-subtitle {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 500;
}

.section-description {
  max-width: 800px;
  margin: 0 auto 40px;
}

/* Header Styles */
header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  padding: 20px 0;
  z-index: 1000;
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-scrolled {
  padding: 15px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark-color);
}

.navigation {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-item {
  margin: 0 15px;
}

.nav-link {
  color: var(--dark-color);
  font-weight: 600;
  position: relative;
}

.nav-link:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-link:hover:after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  cursor: pointer;
  font-size: 24px;
}

/* Hero Section */
.hero-section {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background-color: var(--bg-color);
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  margin-bottom: 20px;
  color: var(--dark-color);
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 30px;
  color: var(--primary-color);
}

.hero-description {
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.shape-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.shape-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 110px;
}

.shape-divider .shape-fill {
  fill: #FFFFFF;
}

/* About Section */
.about-section {
  background-color: var(--light-color);
  position: relative;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-text {
  flex: 1;
}

.about-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.about-feature-item {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about-feature-name {
  font-size: var(--h4-size);
  margin-bottom: 15px;
  color: var(--primary-color);
}

/* Services Section */
.services-section {
  background-color: var(--bg-color);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.services-item {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.services-item-image {
  height: 200px;
  overflow: hidden;
}

.services-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.services-item:hover .services-item-image img {
  transform: scale(1.1);
}

.services-item-content {
  padding: 25px;
}

.services-item-name {
  font-size: var(--h4-size);
  margin-bottom: 15px;
  color: var(--dark-color);
}

.services-item-desc {
  margin-bottom: 20px;
}

.services-item-features {
  margin-bottom: 20px;
}

.services-item-features ul {
  list-style: none;
}

.services-item-features li {
  padding: 5px 0;
  position: relative;
  padding-left: 25px;
}

.services-item-features li:before {
  content: '✓';
  color: var(--primary-color);
  position: absolute;
  left: 0;
}

.services-item-price {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 700;
}

/* Features Section */
.features-section {
  background-color: var(--light-color);
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.features-item {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.features-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.features-item-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background-color: var(--light-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: var(--primary-color);
}

.features-item-name {
  font-size: var(--h4-size);
  margin-bottom: 15px;
  color: var(--dark-color);
}

/* Price Plan Section */
.priceplan-section {
  background-color: var(--bg-color);
}

.priceplan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.priceplan-item {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  padding: 40px 30px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.priceplan-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.priceplan-item-name {
  font-size: var(--h3-size);
  margin-bottom: 15px;
  color: var(--dark-color);
}

.priceplan-item-price {
  font-size: 2.5rem;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 20px;
}

.priceplan-item-features {
  margin-bottom: 30px;
}

.priceplan-item-features ul {
  list-style: none;
  text-align: left;
}

.priceplan-item-features li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  position: relative;
  padding-left: 25px;
}

.priceplan-item-features li:last-child {
  border-bottom: none;
}

.priceplan-item-features li:before {
  content: '✓';
  color: var(--primary-color);
  position: absolute;
  left: 0;
}

/* Team Section */
.team-section {
  background-color: var(--light-color);
  position: relative;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.team-member {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-member-image {
  height: 250px;
  overflow: hidden;
}

.team-member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member-info {
  padding: 20px;
}

.team-member-name {
  font-size: var(--h4-size);
  margin-bottom: 5px;
  color: var(--dark-color);
}

.team-member-role {
  color: var(--primary-color);
  font-weight: 500;
}

/* Reviews Section */
.reviews-section {
  background-color: var(--bg-color);
  position: relative;
}

.reviews-slider {
  width: 100%;
  padding-bottom: 50px;
}

.review-item {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin: 20px 10px;
}

.review-text {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  padding: 0 20px;
}

.review-text:before,
.review-text:after {
  content: '"';
  font-size: 50px;
  color: var(--accent-color-2);
  opacity: 0.3;
  position: absolute;
}

.review-text:before {
  top: -20px;
  left: -10px;
}

.review-text:after {
  bottom: -40px;
  right: -10px;
}

.review-author {
  font-weight: 700;
  color: var(--dark-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Core Info Section */
.coreinfo-section {
  background-color: var(--light-color);
  position: relative;
}

.coreinfo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.coreinfo-item {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.coreinfo-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.coreinfo-item-title {
  font-size: var(--h4-size);
  margin-bottom: 15px;
  color: var(--primary-color);
}

/* Contact Section */
.contact-section {
  background-color: var(--bg-color);
  position: relative;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.contact-form-container {
  flex: 1;
  min-width: 300px;
}

.contact-form {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e1e1e1;
  border-radius: 5px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-group input {
  margin-top: 4px;
}

.service-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  margin-bottom: 20px;
}

.service-option {
  position: relative;
  padding-left: 25px;
}

.service-option input {
  position: absolute;
  left: 0;
  top: 4px;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-info-item {
  display: flex;
  margin-bottom: 30px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: white;
  font-size: 20px;
}

.contact-info-content h4 {
  margin-bottom: 5px;
}

/* Blog Section */
.blog-section {
  background-color: var(--light-color);
  position: relative;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.blog-item {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-item-image {
  height: 200px;
  overflow: hidden;
}

.blog-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-item:hover .blog-item-image img {
  transform: scale(1.1);
}

.blog-item-content {
  padding: 25px;
}

.blog-item-title {
  font-size: var(--h4-size);
  margin-bottom: 15px;
  color: var(--dark-color);
}

.blog-item-excerpt {
  margin-bottom: 20px;
}

.blog-item-link {
  color: var(--primary-color);
  font-weight: 600;
  display: inline-block;
  position: relative;
}

.blog-item-link:after {
  content: '→';
  margin-left: 5px;
  transition: margin-left 0.3s ease;
}

.blog-item-link:hover:after {
  margin-left: 10px;
}

/* FAQ Section */
.faq-section {
  background-color: var(--bg-color);
  position: relative;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.accordion {
  margin-bottom: 20px;
}

.accordion-item {
  background-color: white;
  border-radius: 5px;
  margin-bottom: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.accordion-header {
  padding: 15px 20px;
  background-color: white;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.accordion-header:hover {
  background-color: var(--light-color);
}

.accordion-header:after {
  content: '+';
  font-size: 20px;
  color: var(--primary-color);
}

.accordion-header.active:after {
  content: '-';
}

.accordion-content {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-content.active {
  padding: 15px 20px;
  max-height: 1000px;
}

/* Footer */
footer {
  background-color: var(--footer-bg);
  color: var(--footer-text);
  padding: 80px 0 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 50px;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-description {
  margin-bottom: 30px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: background-color 0.3s ease;
}

.footer-social a:hover {
  background-color: var(--primary-color);
}

.footer-links h3 {
  font-size: 1.2rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: var(--footer-text);
  transition: color 0.3s ease, padding-left 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-contacts {
  margin-bottom: 30px;
}

.footer-contacts h3 {
  font-size: 1.2rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-contacts h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-contact-item {
  display: flex;
  margin-bottom: 15px;
}

.footer-contact-icon {
  margin-right: 15px;
  color: var(--primary-color);
}

.footer-bottom {
  margin-top: 50px;
  padding-top: 20px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-disclaimer {
  margin-bottom: 10px;
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}

/* Space Page */
.space-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

#space {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 0;
}

/* Media Queries */
@media (max-width: 992px) {
  section {
    padding: 60px 0;
  }
  
  .hero-section {
    height: auto;
    min-height: 100vh;
  }
  
  .hero-bg {
    width: 100%;
    opacity: 0.1;
  }
  
  .about-content {
    flex-direction: column;
  }
  
  .contact-container {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  :root {
    --h1-size: 2.5rem;
    --h2-size: 2rem;
    --h3-size: 1.75rem;
    --h4-size: 1.4rem;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background-color: white;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-item {
    margin: 15px 0;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
  }
}

@media (max-width: 576px) {
  :root {
    --base-font-size: 15px;
    --h1-size: 2.2rem;
    --h2-size: 1.8rem;
    --h3-size: 1.5rem;
    --h4-size: 1.3rem;
  }
  
  section {
    padding: 50px 0;
  }
  
  .services-grid,
  .features-grid,
  .team-grid,
  .blog-grid,
  .priceplan-grid {
    grid-template-columns: 1fr;
  }
} 