/* blog.css */

/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Typography */
  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
  }
  
  /* Container spacing if needed */
  .blog-post {
    max-width: 750px;
    margin: 40px auto;
    padding: 0 15px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  /* Header Styles */
  .blog-header {
    padding: 20px;
    border-bottom: 1px solid #ddd;
  }
  
  .blog-header h1 {
    font-size: 2rem;
    margin-bottom: 8px;
  }
  
  .blog-date {
    font-size: 0.9rem;
    color: #666;
  }
  
  /* Content Sections */
  .blog-content {
    padding: 20px;
  }
  
  .blog-content h2 {
    margin-bottom: 10px;
    font-size: 1.5rem;
  }
  
  .blog-content ul {
    margin-left: 20px;
    margin-top: 10px;
    list-style-type: disc;
  }
  
  .blog-content li {
    margin-bottom: 10px;
  }
  
  /* Call to Action Section */
  .call-to-action {
    padding: 20px;
    background: #fafafa;
    border-top: 1px solid #ddd;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
  }
  
  .call-to-action p {
    margin-bottom: 10px;
    font-size: 1.1rem;
    font-weight: 500;
  }
  
  .call-to-action blockquote {
    margin: 10px 0 0 0;
    padding: 10px 20px;
    background: #e8f5e9;
    border-left: 4px solid #4caf50;
    font-style: italic;
    border-radius: 4px;
  }
  
  /* CTA Button Styles */
.cta-button {
  display: inline-block;
  padding: 12px 24px;
  margin-top: 20px;
  background-color: #4caf50; /* Green background */
  color: #fff; /* White text */
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 4px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
  background-color: #45a049; /* Darker green on hover */
  transform: translateY(-2px);
}

.cta-button:active {
  background-color: #3e8e41; /* Even darker green on click */
  transform: translateY(0);
}
/* Kontaktformulär Styles */
.contact-form {
  margin-top: 30px;
  padding: 20px;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.contact-form h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
  color: #333;
}

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

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: #555;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #4caf50;
  outline: none;
}

.submit-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #4caf50; /* Grön bakgrund */
  color: #fff; /* Vit text */
  border: none;
  border-radius: 4px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.submit-button:hover {
  background-color: #45a049; /* Mörkare grön vid hover */
  transform: translateY(-2px);
}

.submit-button:active {
  background-color: #3e8e41; /* Ännu mörkare grön vid klick */
  transform: translateY(0);
}

/* Responsiv Design */
@media (max-width: 600px) {
  .contact-form {
    padding: 15px;
  }

  .contact-form h3 {
    font-size: 1.3rem;
  }

  .submit-button {
    width: 100%;
    text-align: center;
  }
}
