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

:root {
  --primary-color: #1a4d2e;
  --secondary-color: #2d6a4f;
  --accent-color: #52b788;
  --text-dark: #1b263b;
  --text-light: #415a77;
  --background-light: #f8f9fa;
  --white: #ffffff;
  --border-color: #dee2e6;
  --shadow: 0 2px 10px rgba(0,0,0,0.1);
  --shadow-hover: 0 4px 20px rgba(0,0,0,0.15);
  --transition: all 0.3s ease;
}

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

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

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

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

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: var(--transition);
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary-color);
  border-bottom-color: var(--accent-color);
}

.hero-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--white);
  padding: 80px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 30px;
  opacity: 0.95;
}

.cta-button-hero {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--white);
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
}

.cta-button-hero:hover {
  background-color: #40916c;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(82, 183, 136, 0.4);
}

.hero-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.services-overview {
  padding: 80px 20px;
  background-color: var(--background-light);
}

.services-overview h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 60px;
}

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

.service-card {
  background: var(--white);
  padding: 40px;
  border-radius: 15px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}

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

.service-icon {
  font-size: 4rem;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.service-card p {
  color: var(--text-light);
  font-size: 1.05rem;
}

.methodology-section {
  padding: 80px 20px;
}

.methodology-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.methodology-text h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 25px;
}

.methodology-text p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: var(--text-light);
}

.benefit-list {
  list-style: none;
  margin-top: 30px;
}

.benefit-list li {
  padding: 12px 0 12px 35px;
  position: relative;
  font-size: 1.05rem;
  color: var(--text-dark);
}

.benefit-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
  font-size: 1.3rem;
}

.methodology-visual img {
  width: 100%;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.blog-preview {
  padding: 80px 20px;
  background-color: var(--background-light);
}

.blog-preview h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 60px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

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

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

.blog-card-preview img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-card-content {
  padding: 30px;
}

.blog-card-content h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.blog-card-content p {
  color: var(--text-light);
  margin-bottom: 20px;
}

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

.read-more:hover {
  color: var(--primary-color);
}

.blog-cta {
  text-align: center;
}

.button-secondary {
  display: inline-block;
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.button-secondary:hover {
  background-color: var(--primary-color);
  transform: translateY(-2px);
}

.process-section {
  padding: 80px 20px;
}

.process-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 60px;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.process-step {
  text-align: center;
  padding: 30px;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0 auto 20px;
}

.process-step h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

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

.cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  color: var(--white);
  text-align: center;
}

.cta-content h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.cta-description {
  font-size: 1.3rem;
  margin-bottom: 40px;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.button-primary-large,
.button-outline-large {
  padding: 18px 45px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
  display: inline-block;
}

.button-primary-large {
  background-color: var(--accent-color);
  color: var(--white);
}

.button-primary-large:hover {
  background-color: #40916c;
  transform: translateY(-2px);
}

.button-outline-large {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.button-outline-large:hover {
  background-color: var(--white);
  color: var(--primary-color);
}

.responsibility-statement {
  max-width: 900px;
  margin: 0 auto;
  padding: 30px;
  background-color: rgba(255,255,255,0.1);
  border-radius: 10px;
  text-align: left;
}

.responsibility-statement p {
  font-size: 0.95rem;
  line-height: 1.7;
}

.newsletter-section {
  padding: 60px 20px;
  background-color: var(--background-light);
}

.newsletter-box {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  background: var(--white);
  padding: 50px;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.newsletter-box h3 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.newsletter-box p {
  color: var(--text-light);
  margin-bottom: 30px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.newsletter-form input {
  flex: 1;
  padding: 15px 20px;
  border: 2px solid var(--border-color);
  border-radius: 50px;
  font-size: 1rem;
  outline: none;
  transition: var(--transition);
}

.newsletter-form input:focus {
  border-color: var(--accent-color);
}

.button-newsletter {
  padding: 15px 35px;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.button-newsletter:hover {
  background-color: var(--secondary-color);
}

.subscriber-count {
  color: var(--text-light);
  font-size: 0.95rem;
  font-style: italic;
}

.site-footer {
  background-color: var(--text-dark);
  color: var(--white);
  padding: 60px 20px 30px;
}

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

.footer-col h4 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--accent-color);
}

.footer-col p {
  margin-bottom: 10px;
  opacity: 0.9;
  font-size: 0.95rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col a {
  color: var(--white);
  text-decoration: none;
  opacity: 0.85;
  transition: var(--transition);
}

.footer-col a:hover {
  opacity: 1;
  color: var(--accent-color);
}

.registration-info {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-top: 15px;
}

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

.cookie-consent {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-dark);
  color: var(--white);
  padding: 25px 20px;
  box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
  z-index: 10000;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-content p {
  margin-bottom: 15px;
  font-size: 0.95rem;
}

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

.cookie-btn {
  padding: 12px 30px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

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

.cookie-btn.accept:hover {
  background-color: #40916c;
}

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

.cookie-btn.necessary:hover {
  background-color: var(--white);
  color: var(--text-dark);
}

.cookie-link {
  color: var(--accent-color);
  text-decoration: underline;
  margin-left: 15px;
}

.page-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--white);
  padding: 80px 20px 60px;
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.page-subtitle {
  font-size: 1.3rem;
  opacity: 0.95;
}

.blog-main-section {
  padding: 80px 20px;
}

.blog-articles-list {
  max-width: 900px;
  margin: 0 auto;
}

.blog-article-card {
  background: var(--white);
  margin-bottom: 50px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.blog-article-card:hover {
  box-shadow: var(--shadow-hover);
}

.article-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.article-details {
  display: flex;
  gap: 20px;
  padding: 25px 35px 0;
}

.article-category {
  background-color: var(--accent-color);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.article-date {
  color: var(--text-light);
  font-size: 0.9rem;
}

.blog-article-card h2 {
  padding: 15px 35px 0;
  font-size: 1.8rem;
}

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

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

.blog-article-card > p {
  padding: 15px 35px 25px;
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.7;
}

.article-read-more {
  display: inline-block;
  margin: 0 35px 30px;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.article-read-more:hover {
  color: var(--primary-color);
}

.about-story {
  padding: 80px 20px;
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-text h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 25px;
}

.story-text p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
}

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

.values-section {
  padding: 80px 20px;
  background-color: var(--background-light);
}

.values-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 60px;
}

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

.value-card {
  background: var(--white);
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow);
}

.value-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.value-card h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

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

.team-section {
  padding: 80px 20px;
}

.team-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.team-intro {
  text-align: center;
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 60px;
}

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

.team-member {
  text-align: center;
}

.team-member img {
  width: 100%;
  max-width: 280px;
  height: 280px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
}

.team-member h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.member-position {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 15px;
  display: block;
}

.team-member p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.95rem;
}

.approach-section {
  padding: 80px 20px;
  background-color: var(--background-light);
}

.approach-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 60px;
}

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

.approach-item {
  background: var(--white);
  padding: 40px;
  border-radius: 15px;
  margin-bottom: 30px;
  box-shadow: var(--shadow);
}

.approach-item h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.approach-item p {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 1.05rem;
}

.cta-about {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  color: var(--white);
  text-align: center;
}

.cta-about h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-about p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.contact-main-section {
  padding: 80px 20px;
}

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

.contact-info-box {
  background: var(--background-light);
  padding: 40px;
  border-radius: 15px;
}

.contact-info-box h2 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 30px;
}

.contact-detail {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-icon {
  font-size: 2rem;
  color: var(--accent-color);
}

.contact-detail h3 {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.contact-detail p,
.contact-detail a {
  color: var(--text-light);
  text-decoration: none;
  line-height: 1.6;
}

.contact-detail a:hover {
  color: var(--accent-color);
}

.registration-box {
  margin-top: 30px;
  padding: 20px;
  background: var(--white);
  border-radius: 10px;
  border-left: 4px solid var(--accent-color);
}

.contact-form-box {
  background: var(--white);
  padding: 40px;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.contact-form-box h2 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 30px;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-dark);
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  transition: var(--transition);
}

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

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.checkbox-label input {
  width: auto;
  cursor: pointer;
}

.checkbox-label a {
  color: var(--accent-color);
}

.map-section {
  padding: 60px 20px;
  background-color: var(--background-light);
}

.map-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 40px;
}

.map-placeholder {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-placeholder img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.map-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26, 77, 46, 0.9);
  color: var(--white);
  padding: 20px;
  text-align: center;
}

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.7);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-content {
  background: var(--white);
  padding: 50px;
  border-radius: 15px;
  text-align: center;
  max-width: 500px;
}

.modal-icon {
  width: 80px;
  height: 80px;
  background-color: var(--accent-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto 25px;
}

.modal-content h2 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.modal-content p {
  color: var(--text-light);
  margin-bottom: 30px;
}

.post-container {
  background: var(--white);
}

.post-header {
  background: var(--background-light);
  padding: 40px 20px;
}

.post-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  justify-content: center;
}

.post-category {
  background-color: var(--accent-color);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.post-date {
  color: var(--text-light);
  padding: 6px 0;
}

.post-header h1 {
  font-size: 2.8rem;
  color: var(--primary-color);
  margin-bottom: 30px;
  text-align: center;
  line-height: 1.3;
}

.post-featured-image {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: block;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.post-content {
  padding: 60px 20px;
}

.post-content .container-main {
  max-width: 800px;
}

.lead-paragraph {
  font-size: 1.25rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 40px;
  padding-left: 20px;
  border-left: 4px solid var(--accent-color);
}

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

.post-content h3 {
  font-size: 1.6rem;
  color: var(--secondary-color);
  margin: 35px 0 20px;
}

.post-content p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.post-content strong {
  color: var(--primary-color);
}

.post-footer {
  padding: 40px 20px;
  background-color: var(--background-light);
}

.post-navigation {
  display: flex;
  justify-content: space-between;
  max-width: 800px;
  margin: 0 auto;
  gap: 20px;
  flex-wrap: wrap;
}

.post-navigation a {
  padding: 12px 30px;
  background-color: var(--primary-color);
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
}

.post-navigation a:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .hero-section,
  .methodology-content,
  .story-content,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-content h1,
  .page-header h1 {
    font-size: 2rem;
  }

  .hero-subtitle,
  .page-subtitle {
    font-size: 1.1rem;
  }

  .nav-menu {
    gap: 15px;
    font-size: 0.9rem;
  }

  .services-grid,
  .blog-grid,
  .process-timeline,
  .values-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .post-header h1 {
    font-size: 2rem;
  }

  .post-navigation {
    flex-direction: column;
  }
}

@media print {
  .main-navigation,
  .cookie-consent,
  .newsletter-section,
  .cta-section,
  .site-footer {
    display: none;
  }
}