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

html, body {
  width: 100%;
  height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background-color: #fafafa;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: white;
  border-bottom: 1px solid #e0e0e0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.navbar-brand img {
  height: 40px;
  width: auto;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #3CB371;
}

body {
  padding-top: 60px;
}

.hero {
  width: 100%;
  height: 500px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
  .hero {
    height: 350px;
    background-attachment: scroll;
  }
}

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

.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin: 3rem 0;
}

@media (max-width: 768px) {
  .row {
    grid-template-columns: 1fr;
  }
}

.col {
  padding: 1rem;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #222;
}

@media (max-width: 768px) {
  h1 {
    font-size: 1.8rem;
  }
}

h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #222;
  margin-top: 2rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: #333;
  margin-top: 1.5rem;
}

p {
  margin-bottom: 1rem;
  line-height: 1.7;
  color: #555;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #3CB371;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.btn:hover {
  background-color: #2d9b5e;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(60, 179, 113, 0.3);
}

.btn-secondary {
  background-color: #e0e0e0;
  color: #333;
}

.btn-secondary:hover {
  background-color: #d0d0d0;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

footer {
  background-color: #f5f5f5;
  border-top: 1px solid #e0e0e0;
  padding: 2rem 1rem;
  margin-top: 4rem;
}

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

.footer-section h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  color: #333;
}

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

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

.footer-section a {
  color: #555;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #3CB371;
}

.footer-disclaimer {
  background-color: #f0f8f4;
  border-left: 4px solid #3CB371;
  padding: 1rem;
  margin-bottom: 2rem;
  font-size: 14px;
  color: #555;
}

.footer-bottom {
  border-top: 1px solid #e0e0e0;
  padding-top: 1rem;
  text-align: center;
  color: #999;
  font-size: 14px;
}

.faq {
  margin: 2rem 0;
}

.faq-item {
  background: white;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-radius: 4px;
  border-left: 4px solid #3CB371;
}

.faq-item h4 {
  color: #3CB371;
  margin-bottom: 0.5rem;
}

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

.blog-card {
  background: white;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

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

.blog-card-content {
  padding: 1.5rem;
}

.blog-card-content h3 {
  margin-top: 0;
}

.blog-card-content p {
  color: #777;
  font-size: 14px;
}

.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  color: #333;
  font-weight: 500;
}

input, textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 16px;
}

input:focus, textarea:focus {
  outline: none;
  border-color: #3CB371;
  box-shadow: 0 0 0 3px rgba(60, 179, 113, 0.1);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.compliance-box {
  background-color: #f0f8f4;
  border: 1px solid #3CB371;
  border-radius: 4px;
  padding: 1.5rem;
  margin: 2rem 0;
  font-size: 14px;
  line-height: 1.7;
  color: #555;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-top: 1px solid #e0e0e0;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
  z-index: 999;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-text {
  flex: 1;
  min-width: 200px;
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

.cookie-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.cookie-actions button {
  padding: 0.5rem 1rem;
  border: 1px solid #ddd;
  background: white;
  color: #333;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
}

.cookie-actions button:hover {
  background-color: #f5f5f5;
  border-color: #ccc;
}

.cookie-actions button.accept {
  background-color: #3CB371;
  color: white;
  border-color: #3CB371;
}

.cookie-actions button.accept:hover {
  background-color: #2d9b5e;
  border-color: #2d9b5e;
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-actions {
    width: 100%;
  }
  
  .cookie-actions button {
    flex: 1;
  }
  
  .nav-links {
    gap: 1rem;
    font-size: 14px;
  }
}

.section {
  padding: 3rem 0;
}

.section-light {
  background-color: white;
}

.section-gray {
  background-color: #f9f9f9;
}

.main-content {
  padding-bottom: 2rem;
}
