/* Base Styles */
:root {
  --primary-color: #234B8C;
  --secondary-color: #FFC107;
  --dark-color: #1A365D;
  --light-color: #F8F9FA;
  --grey-color: #6C757D;
  --light-grey: #E9ECEF;
  --success-color: #4CAF50;
  --danger-color: #F44336;
  --font-primary: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --border-radius: 4px;
  --box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: #333;
  background-color: #FFFFFF;
}

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

a:hover {
  color: var(--dark-color);
}

ul {
  list-style: none;
}

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

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

.btn {
  display: inline-block;
  padding: 10px 24px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
}

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

.btn.primary:hover {
  background-color: var(--dark-color);
}

.btn.secondary {
  background-color: white;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

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

.btn.tertiary {
  background-color: transparent;
  color: var(--grey-color);
}

.btn.tertiary:hover {
  color: var(--dark-color);
}

section {
  padding: 60px 0;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.3;
  margin-bottom: 15px;
}

p {
  margin-bottom: 15px;
}

/* Header Styles */
header {
  background-color: white;
  box-shadow: var(--box-shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo img {
  height: 40px;
}

nav ul {
  display: flex;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  color: #333;
  font-weight: 500;
  padding: 5px 0;
  position: relative;
}

nav ul li a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

nav ul li a:hover:after,
nav ul li a.active:after {
  width: 100%;
}

nav ul li a.active {
  color: var(--primary-color);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 3px 0;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  padding: 80px 0;
  background-color: var(--light-color);
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.hero-content {
  flex: 1;
}

.hero-content h1 {
  font-size: 36px;
  color: var(--dark-color);
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  color: var(--grey-color);
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.hero-image {
  flex: 1;
}

/* Features Section */
.features {
  text-align: center;
  padding: 80px 0;
}

.features h2 {
  font-size: 32px;
  color: var(--dark-color);
  margin-bottom: 40px;
}

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

.feature-card {
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-card .icon {
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 20px;
  color: var(--dark-color);
}

.feature-card p {
  color: var(--grey-color);
}

/* Calculator Section */
.calculator {
  background-color: var(--light-color);
  padding: 80px 0;
}

.calculator h2 {
  font-size: 32px;
  color: var(--dark-color);
  text-align: center;
  margin-bottom: 10px;
}

.calculator > .container > p {
  text-align: center;
  color: var(--grey-color);
  margin-bottom: 40px;
}

.calculator-wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.calculator-form, .calculator-result {
  flex: 1;
  background-color: white;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

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

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

.form-group input {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--light-grey);
  border-radius: var(--border-radius);
}

.calculator-result h3 {
  font-size: 22px;
  color: var(--dark-color);
  margin-bottom: 20px;
}

.result-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--light-grey);
}

.result-label {
  font-weight: 500;
}

.result-value {
  font-weight: 600;
  color: var(--primary-color);
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
}

.testimonials h2 {
  font-size: 32px;
  color: var(--dark-color);
  text-align: center;
  margin-bottom: 40px;
}

.testimonials-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding: 20px 0;
  scrollbar-width: thin;
}

.testimonials-slider::-webkit-scrollbar {
  height: 6px;
}

.testimonials-slider::-webkit-scrollbar-track {
  background: var(--light-grey);
  border-radius: 10px;
}

.testimonials-slider::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 10px;
}

.testimonial-card {
  min-width: 350px;
  flex: 1;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  background-color: white;
}

.testimonial-card .quote {
  font-style: italic;
  color: var(--grey-color);
  margin-bottom: 20px;
  position: relative;
  padding-left: 20px;
}

.testimonial-card .quote:before {
  content: '"';
  font-size: 40px;
  color: var(--primary-color);
  position: absolute;
  left: 0;
  top: -10px;
}

.testimonial-card .author {
  display: flex;
  align-items: center;
}

.testimonial-card .author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.testimonial-card .author-info h4 {
  font-size: 18px;
  margin-bottom: 5px;
}

.testimonial-card .author-info p {
  font-size: 14px;
  color: var(--grey-color);
  margin-bottom: 0;
}

/* CTA Section */
.cta {
  text-align: center;
  padding: 80px 0;
  background-color: var(--primary-color);
  color: white;
}

.cta h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.cta p {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.cta .btn.primary:hover {
  background-color: var(--light-grey);
}

/* Footer Styles */
footer {
  background-color: var(--dark-color);
  color: white;
  padding: 60px 0 30px;
}

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

.footer-logo img {
  height: 40px;
  margin-bottom: 15px;
}

.footer-logo p {
  font-size: 14px;
  color: var(--light-grey);
}

.footer-links h4 {
  font-size: 18px;
  margin-bottom: 20px;
}

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

.footer-links ul li a {
  color: var(--light-grey);
}

.footer-links ul li a:hover {
  color: white;
}

.footer-contact h4 {
  font-size: 18px;
  margin-bottom: 20px;
}

.footer-contact p {
  color: var(--light-grey);
  margin-bottom: 10px;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.social-icons a:hover {
  background-color: var(--primary-color);
}

.social-icons svg {
  fill: white;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: none;
}

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

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

.cookie-content p {
  flex: 1;
  margin-bottom: 0;
  min-width: 300px;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-content a {
  font-size: 14px;
  margin-left: auto;
}

/* About Page Styles */
.page-header {
  background-color: var(--primary-color);
  color: white;
  text-align: center;
  padding: 60px 0;
}

.page-header h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.page-header p {
  font-size: 18px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.about-content {
  padding: 60px 0;
}

.about-story {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
  align-items: center;
}

.about-image {
  flex: 1;
}

.about-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 28px;
  color: var(--dark-color);
  margin-bottom: 20px;
}

.about-mission h2 {
  font-size: 28px;
  color: var(--dark-color);
  text-align: center;
  margin-bottom: 40px;
}

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

.mission-card {
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  background-color: white;
}

.mission-card h3 {
  font-size: 22px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.mission-card ul {
  list-style: disc;
  padding-left: 20px;
}

.mission-card ul li {
  margin-bottom: 5px;
}

.about-stats {
  display: flex;
  justify-content: space-between;
  margin: 60px 0;
  flex-wrap: wrap;
  gap: 20px;
}

.stat-item {
  text-align: center;
  flex: 1;
  min-width: 200px;
}

.stat-number {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.stat-text {
  font-size: 16px;
  color: var(--grey-color);
}

.team-section {
  margin-top: 60px;
  text-align: center;
}

.team-section h2 {
  font-size: 28px;
  color: var(--dark-color);
  margin-bottom: 10px;
}

.team-section > p {
  color: var(--grey-color);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 30px;
}

.team-card {
  padding: 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  background-color: white;
  text-align: center;
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}

.team-card h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.team-card p {
  font-size: 14px;
  color: var(--grey-color);
  margin-bottom: 10px;
}

.team-card p:first-of-type {
  color: var(--primary-color);
  font-weight: 500;
}

/* Registration Page Styles */
.registration-content {
  padding: 60px 0;
}

.registration-wrapper {
  display: flex;
  gap: 40px;
}

.registration-form {
  flex: 1;
  background-color: white;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.registration-form h2 {
  font-size: 28px;
  color: var(--dark-color);
  margin-bottom: 30px;
}

.form-hint {
  font-size: 12px;
  color: var(--grey-color);
  margin-top: 5px;
}

.plan-selection {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.plan-option {
  position: relative;
}

.plan-option input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.plan-option label {
  display: block;
  padding: 15px;
  border: 1px solid var(--light-grey);
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
}

.plan-option input[type="radio"]:checked + label {
  border-color: var(--primary-color);
  background-color: rgba(35, 75, 140, 0.05);
}

.plan-name {
  font-weight: 600;
  font-size: 18px;
  display: block;
  margin-bottom: 5px;
}

.plan-price {
  display: block;
  font-size: 16px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.plan-features {
  font-size: 14px;
  color: var(--grey-color);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-group input[type="checkbox"] {
  margin-top: 5px;
}

.registration-info {
  flex: 1;
}

.info-card {
  background-color: white;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  margin-bottom: 30px;
}

.info-card h3 {
  font-size: 22px;
  color: var(--dark-color);
  margin-bottom: 20px;
}

.info-card ul {
  list-style: none;
}

.info-card ul li {
  padding-left: 25px;
  position: relative;
  margin-bottom: 10px;
}

.info-card ul li:before {
  content: "✓";
  color: var(--primary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.plan-comparison h3 {
  font-size: 22px;
  color: var(--dark-color);
  margin-bottom: 20px;
}

.plan-comparison table {
  width: 100%;
  border-collapse: collapse;
}

.plan-comparison th, .plan-comparison td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid var(--light-grey);
}

.plan-comparison th {
  background-color: var(--light-color);
  font-weight: 600;
}

.plan-comparison tr:last-child td {
  border-bottom: none;
}

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

.registration-success.show, .contact-success.show {
  display: flex;
}

.success-content {
  background-color: white;
  padding: 40px;
  border-radius: var(--border-radius);
  text-align: center;
  max-width: 500px;
  width: 90%;
}

.success-icon {
  margin-bottom: 20px;
}

.success-content h2 {
  font-size: 24px;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.success-content p {
  color: var(--grey-color);
  margin-bottom: 25px;
}

/* FAQ Page Styles */
.faq-content {
  padding: 60px 0;
}

.faq-search {
  display: flex;
  max-width: 600px;
  margin: 0 auto 40px;
}

.faq-search input {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid var(--light-grey);
  border-right: none;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.faq-search button {
  padding: 0 15px;
  background-color: var(--primary-color);
  border: none;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  cursor: pointer;
}

.faq-search button svg {
  fill: white;
}

.faq-categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.category-btn {
  padding: 8px 15px;
  background-color: var(--light-grey);
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
}

.category-btn.active, .category-btn:hover {
  background-color: var(--primary-color);
  color: white;
}

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

.faq-item {
  margin-bottom: 15px;
  border: 1px solid var(--light-grey);
  border-radius: var(--border-radius);
}

.faq-question {
  padding: 20px;
  background-color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question h3 {
  font-size: 18px;
  margin-bottom: 0;
}

.toggle-icon {
  font-size: 24px;
  color: var(--primary-color);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active .faq-answer {
  padding: 0 20px 20px;
  max-height: 1000px;
}

.faq-item.active .toggle-icon {
  transform: rotate(45deg);
}

.faq-contact {
  text-align: center;
  margin-top: 60px;
}

.faq-contact h3 {
  font-size: 22px;
  color: var(--dark-color);
  margin-bottom: 10px;
}

.faq-contact p {
  color: var(--grey-color);
  margin-bottom: 20px;
}

/* Blog Page Styles */
.blog-content {
  padding: 60px 0;
}

.blog-wrapper {
  display: flex;
  gap: 40px;
}

.blog-main {
  flex: 2;
}

.blog-post-card {
  margin-bottom: 40px;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  overflow: hidden;
}

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

.post-content {
  padding: 30px;
}

.post-meta {
  display: flex;
  gap: 20px;
  color: var(--grey-color);
  font-size: 14px;
  margin-bottom: 15px;
}

.post-content h2 {
  font-size: 24px;
  margin-bottom: 15px;
}

.post-content h2 a {
  color: var(--dark-color);
}

.post-content h2 a:hover {
  color: var(--primary-color);
}

.read-more {
  display: inline-block;
  margin-top: 15px;
  font-weight: 500;
}

.blog-sidebar {
  flex: 1;
}

.sidebar-widget {
  background-color: white;
  padding: 25px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  margin-bottom: 30px;
}

.sidebar-widget h3 {
  font-size: 20px;
  color: var(--dark-color);
  margin-bottom: 20px;
}

.category-list li {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--light-grey);
}

.category-list li:last-child {
  border-bottom: none;
}

.popular-posts {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.popular-post a {
  display: flex;
  gap: 15px;
}

.popular-post img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: var(--border-radius);
}

.popular-post-content h4 {
  font-size: 16px;
  margin-bottom: 5px;
  color: var(--dark-color);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.newsletter-form input {
  padding: 10px;
  border: 1px solid var(--light-grey);
  border-radius: var(--border-radius);
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-cloud a {
  display: inline-block;
  padding: 5px 10px;
  background-color: var(--light-grey);
  border-radius: var(--border-radius);
  font-size: 12px;
  color: var(--grey-color);
}

.tag-cloud a:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Blog Post Page Styles */
.blog-post {
  padding: 60px 0;
}

.blog-post-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 40px;
}

.blog-post-header {
  margin-bottom: 30px;
}

.blog-post-header h1 {
  font-size: 32px;
  color: var(--dark-color);
  margin-bottom: 20px;
}

.post-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.post-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.author-name {
  font-weight: 600;
  margin-bottom: 0;
}

.author-title {
  font-size: 14px;
  color: var(--grey-color);
  margin-bottom: 0;
}

.featured-image {
  margin-bottom: 30px;
}

.featured-image img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
}

.blog-post-content {
  font-size: 17px;
  line-height: 1.7;
}

.blog-post-content h2 {
  font-size: 28px;
  color: var(--dark-color);
  margin-top: 40px;
}

.blog-post-content h3 {
  font-size: 22px;
  color: var(--dark-color);
  margin-top: 30px;
}

.blog-post-content ul, .blog-post-content ol {
  margin-left: 20px;
  margin-bottom: 20px;
}

.blog-post-content li {
  margin-bottom: 10px;
}

.blog-post-content a {
  color: var(--primary-color);
  text-decoration: underline;
}

.post-tags {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.post-tags span {
  font-weight: 600;
}

.post-tags a {
  display: inline-block;
  padding: 5px 10px;
  background-color: var(--light-grey);
  border-radius: var(--border-radius);
  font-size: 12px;
  color: var(--grey-color);
  text-decoration: none;
}

.post-tags a:hover {
  background-color: var(--primary-color);
  color: white;
}

.post-share {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--light-grey);
}

.post-share span {
  font-weight: 600;
}

.post-share a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--light-grey);
  transition: var(--transition);
}

.post-share a:hover {
  background-color: var(--primary-color);
}

.post-share a:hover svg {
  fill: white;
}

.related-posts {
  margin-top: 40px;
}

.related-posts h3 {
  font-size: 24px;
  color: var(--dark-color);
  margin-bottom: 20px;
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}

.related-post-card {
  overflow: hidden;
}

.related-post-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: var(--border-radius);
  margin-bottom: 10px;
}

.related-post-card h4 {
  font-size: 16px;
  margin-bottom: 5px;
}

.related-post-card .post-date {
  font-size: 12px;
  color: var(--grey-color);
}

.post-navigation {
  margin-top: 40px;
  text-align: center;
}

.back-to-blog {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

/* Contact Page Styles */
.contact-content {
  padding: 60px 0;
}

.contact-wrapper {
  display: flex;
  gap: 40px;
}

.contact-info {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 30px;
}

.info-card {
  padding: 25px;
  text-align: center;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.info-icon {
  margin-bottom: 15px;
}

.info-card h3 {
  font-size: 20px;
  color: var(--dark-color);
  margin-bottom: 10px;
}

.info-card p {
  color: var(--grey-color);
  margin-bottom: 0;
}

.contact-form-container {
  flex: 1;
  background-color: white;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.contact-form-container h2 {
  font-size: 28px;
  color: var(--dark-color);
  margin-bottom: 10px;
}

.contact-form-container > p {
  color: var(--grey-color);
  margin-bottom: 30px;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-row .form-group {
  flex: 1;
}

select, textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--light-grey);
  border-radius: var(--border-radius);
  font-family: var(--font-primary);
}

textarea {
  resize: vertical;
}

.map-section {
  padding: 60px 0;
}

.map-section h2 {
  font-size: 28px;
  color: var(--dark-color);
  text-align: center;
  margin-bottom: 30px;
}

.map-container {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero .container,
  .about-story,
  .calculator-wrapper,
  .registration-wrapper,
  .blog-wrapper,
  .contact-wrapper {
    flex-direction: column;
  }
  
  .hero-content,
  .hero-image,
  .about-image,
  .about-text,
  .calculator-form,
  .calculator-result,
  .registration-form,
  .registration-info,
  .blog-main,
  .blog-sidebar,
  .contact-info,
  .contact-form-container {
    width: 100%;
  }
  
  .hero-content,
  .hero-image {
    text-align: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .about-image {
    margin-bottom: 30px;
  }
  
  .calculator-result {
    margin-top: 30px;
  }
  
  .form-row {
    flex-direction: column;
    gap: 0;
  }
}

@media (max-width: 768px) {
  nav {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .social-icons {
    justify-content: center;
  }
  
  .mission-cards,
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-info {
    grid-template-columns: 1fr;
  }
  
  .blog-post-wrapper {
    padding: 20px;
  }
  
  .related-posts-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 28px;
  }
  
  .hero-content p {
    font-size: 16px;
  }
  
  .features h2,
  .calculator h2,
  .testimonials h2,
  .cta h2 {
    font-size: 26px;
  }
  
  .testimonial-card {
    min-width: 280px;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    flex-wrap: wrap;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }
  
  .page-header h1 {
    font-size: 28px;
  }
  
  .page-header p {
    font-size: 16px;
  }
  
  .blog-post-header h1 {
    font-size: 24px;
  }
}
