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

:root {
  --primary-color: #2c3e50;
  --secondary-color: #3498db;
  --accent-color: #e74c3c;
  --text-color: #333;
  --light-bg: #f8f9fa;
  --white: #ffffff;
  --border-color: #ddd;
  --shadow: 0 2px 10px rgba(0,0,0,0.1);
  --transition: all 0.3s ease;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--white);
}

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

.main-header {
  background-color: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

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

.logo-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-color);
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--secondary-color);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

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

.hero-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 4rem 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.btn {
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  display: inline-block;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--secondary-color);
  color: var(--white);
}

.btn-primary:hover {
  background-color: #2980b9;
}

.btn-secondary {
  background-color: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
  background-color: var(--secondary-color);
  color: var(--white);
}

.hero-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.beginner-section,
.features-section,
.overview-section,
.cta-section,
.blog-section,
.about-content,
.team-section,
.company-info,
.contact-section,
.map-section {
  padding: 4rem 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 3rem;
}

.beginner-grid,
.features-grid,
.blog-grid,
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.beginner-card,
.feature-item,
.blog-card,
.team-member {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.beginner-card:hover,
.feature-item:hover,
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.card-icon,
.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.beginner-card h3,
.feature-item h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.card-link {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin-top: 1rem;
}

.overview-content {
  max-width: 900px;
  margin: 0 auto;
}

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

.overview-list {
  list-style-position: inside;
}

.overview-list li {
  padding: 0.5rem 0;
  color: var(--text-color);
}

.cta-section {
  background: linear-gradient(135deg, var(--secondary-color), #2c3e50);
  color: var(--white);
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn-large {
  padding: 15px 40px;
  font-size: 1.1rem;
}

.page-hero {
  background: linear-gradient(135deg, var(--secondary-color), #2c3e50);
  color: var(--white);
  padding: 4rem 20px;
  text-align: center;
}

.page-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.blog-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
  margin: -2rem -2rem 1.5rem -2rem;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #666;
}

.blog-date,
.blog-category {
  padding: 5px 10px;
  background-color: var(--light-bg);
  border-radius: 3px;
}

.blog-card h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.blog-card h2 a {
  color: var(--primary-color);
  text-decoration: none;
}

.blog-card h2 a:hover {
  color: var(--secondary-color);
}

.read-more {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
}

.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.about-text h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.values-section {
  margin-top: 4rem;
}

.values-section h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 2rem;
}

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

.value-item {
  text-align: center;
  padding: 2rem;
}

.value-item h3 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.team-intro {
  text-align: center;
  margin-bottom: 2rem;
  color: #666;
}

.team-member img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.member-role {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

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

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

.info-item {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 10px;
}

.info-item h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.info-block {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.info-icon {
  font-size: 1.5rem;
}

.info-details h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-family: inherit;
  font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
}

.map-placeholder img {
  width: 100%;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.post-article {
  padding: 2rem 20px;
}

.post-container {
  max-width: 900px;
  margin: 0 auto;
}

.post-header {
  margin-bottom: 2rem;
}

.post-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.post-date,
.post-category {
  padding: 5px 15px;
  background-color: var(--light-bg);
  border-radius: 5px;
  font-size: 0.9rem;
}

.post-header h1 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.post-excerpt {
  font-size: 1.2rem;
  color: #666;
}

.post-image {
  margin-bottom: 3rem;
}

.post-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.post-content h2 {
  color: var(--primary-color);
  margin: 2rem 0 1rem 0;
  font-size: 2rem;
}

.post-content p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.post-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.back-to-blog {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
}

.main-footer {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 3rem 20px 1rem 20px;
  margin-top: 4rem;
}

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

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

.footer-column h4 {
  margin-bottom: 1rem;
  color: var(--white);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #ddd;
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--white);
}

.company-reg {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #ddd;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  padding: 2rem;
  z-index: 2000;
  display: none;
}

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

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

.cookie-text h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.cookie-text p {
  margin-bottom: 0.5rem;
  color: #666;
}

.cookie-policy-link {
  color: var(--secondary-color);
  text-decoration: none;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 20px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}

.btn-accept {
  background-color: var(--secondary-color);
  color: var(--white);
}

.btn-accept:hover {
  background-color: #2980b9;
}

.btn-customize,
.btn-decline {
  background-color: transparent;
  color: var(--text-color);
  border: 1px solid var(--border-color);
}

.btn-customize:hover,
.btn-decline:hover {
  background-color: var(--light-bg);
}

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

.modal.show {
  display: flex;
}

.modal-content {
  background-color: var(--white);
  padding: 3rem;
  border-radius: 10px;
  max-width: 500px;
  text-align: center;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  cursor: pointer;
  color: #999;
}

.modal-icon {
  font-size: 4rem;
  color: #27ae60;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .main-nav {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    background-color: var(--white);
    box-shadow: var(--shadow);
    transition: var(--transition);
    padding: 2rem;
  }

  .main-nav.active {
    left: 0;
  }

  .nav-list {
    flex-direction: column;
    gap: 1rem;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero-section {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 2rem;
  }

  .overview-columns {
    grid-template-columns: 1fr;
  }

  .about-intro {
    grid-template-columns: 1fr;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-buttons {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
  }
}