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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #faa 0%, #c31432 100%);
  min-height: 100vh;
  color: #2d3748;
}

/* Header med navigation */
header {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid #c31432;
}

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

.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  height: 60px;
  width: auto;
}

.site-title {
  font-size: 1.8rem;
  color: #c31432;
  font-weight: bold;
}

nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

nav a {
  color: #2d3748;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 500;
}

nav a:hover {
  background: #c31432;
  color: white;
}

/* Main content */
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

section {
  background: white;
  border-radius: 20px;
  padding: 3rem 2.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  scroll-margin-top: 100px;
  /* Offset for sticky header */
}

/* Content wrapper for better readability */
.section-content {
  max-width: 800px;
  margin: 0 auto;
}

/* Wide sections that need full width */
.section-wide {
  max-width: 100%;
}

/* Two-column layout for specific sections */
.two-column-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.column-box {
  background: #f7fafc;
  padding: 2rem;
  border-radius: 12px;
  border: 3px solid #c31432;
}

@media (max-width: 968px) {
  .two-column-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Stats sidebar layout */
.content-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
}

.stats-sidebar {
  background: #f7fafc;
  padding: 2rem;
  border-radius: 15px;
  border: 3px solid #c31432;
}

.stat-item {
  text-align: center;
  margin-bottom: 2rem;
}

.stat-item:last-child {
  margin-bottom: 0;
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  display: block;
  margin-bottom: 0.5rem;
  color: #c31432;
}

.stat-label {
  font-size: 1rem;
  color: #4a5568;
}

.stat-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #c31432;
}

@media (max-width: 968px) {
  .content-with-sidebar {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stats-sidebar {
    position: relative;
    top: 0;
    text-align: center;
  }

  .stat-item {
    display: inline-block;
    width: 48%;
    margin-right: 2%;
    margin-bottom: 1rem;
    vertical-align: top;
  }

  .stat-item:nth-child(2n) {
    margin-right: 0;
  }
}

/* Nominera section layout */
.nominera-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  margin-top: 2rem;
}

.summary-box {
  background: #fff5f5;
  border: 3px solid #c31432;
  border-radius: 15px;
  padding: 2rem;
}

.summary-box h3 {
  color: #c31432;
  margin-top: 0;
  margin-bottom: 1.5rem;
  text-align: center;
}

.checklist-item {
  display: flex;
  align-items: start;
  margin-bottom: 1rem;
  gap: 0.75rem;
}

.checklist-icon {
  color: #c31432;
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.checklist-text {
  font-size: 0.95rem;
  line-height: 1.5;
}

@media (max-width: 968px) {
  .nominera-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .summary-box {
    position: relative;
    top: 0;
  }
}

/* Card grid for lists */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.info-card {
  background: linear-gradient(135deg, #faa 0%, #c31432 100%);
  color: white;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(195, 20, 50, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(195, 20, 50, 0.3);
}

.info-card-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  display: block;
}

.info-card-text {
  font-weight: 600;
  font-size: 1rem;
}

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

section h2 {
  color: #c31432;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  border-bottom: 3px solid #faa;
  padding-bottom: 0.5rem;
}

section h3 {
  color: #8b1226;
  font-size: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

p {
  line-height: 1.8;
  margin-bottom: 1rem;
  color: #4a5568;
}

/* Hero section */
.hero {
  background-image: url('hero_background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  text-align: center;
  padding: 6rem 2.5rem;
  width: 100%;
  /* Override section defaults */
  background-color: transparent;
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 0;
  border-bottom: 3px solid #c31432;
  position: relative;
  overflow: hidden;
}

/* Parallax background layer */
.hero::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 0;
  right: 0;
  bottom: -50px;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  will-change: transform;
  transform: translateY(var(--parallax-offset, 0));
}

@media (max-width: 768px) {
  .hero::before {
    transform: none;
  }
}

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

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  font-weight: 900;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero .intro {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: white;
  font-weight: 600;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.btn {
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-block;
  border: 2px solid transparent;
}

.btn-primary {
  background: white;
  color: #c31432;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
  background: white;
  color: #c31432;
}

/* Button element styling */
button.btn {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

button.btn:active {
  transform: translateY(0);
}

/* Responsive design */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    text-align: center;
  }

  nav {
    justify-content: center;
    width: 100%;
  }

  nav a {
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
  }

  .logo {
    height: 50px;
  }

  .site-title {
    font-size: 1.4rem;
  }

  section {
    padding: 2rem 1.5rem;
  }

  section h2 {
    font-size: 1.6rem;
  }

  .hero {
    padding: 4rem 1.5rem;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero .intro {
    font-size: 1.1rem;
  }

  .hero-content {
    padding: 0 1rem;
  }

  .btn {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }

  main {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .cta-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  nav {
    gap: 0.5rem;
  }
}

/* Lista stilar */
.info-list {
  line-height: 1.8;
  margin-bottom: 1.5rem;
  margin-left: 2rem;
  color: #4a5568;
}

.contact-list {
  line-height: 2;
  margin-bottom: 1.5rem;
  margin-left: 0;
  list-style: none;
  color: #4a5568;
  font-size: 1.1rem;
}

.contact-list li {
  padding: 0.5rem 0;
}

/* Contact section grid */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.contact-column {
  text-align: center;
}

.contact-column h3 {
  color: #c31432;
  font-size: 1.5rem;
  margin-top: 0;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #faa;
}

.contact-column p {
  margin-bottom: 1rem;
}

.contact-swish-container {
  margin-top: 1rem;
}

.contact-swish-image {
  max-width: 180px;
  width: 100%;
  height: auto;
  margin: 0 auto 1rem;
  display: block;
  transition: transform 0.3s ease;
}

.contact-swish-image:hover {
  transform: scale(1.05);
}

.swish-subtitle {
  font-size: 0.95rem;
  color: #718096;
  margin-top: 0.5rem;
}

@media (max-width: 968px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-column {
    padding: 2rem;
    background: #f7fafc;
    border-radius: 12px;
  }
}

/* Call to action box */
.cta-box {
  text-align: center;
  margin-top: 2rem;
}

.cta-box .btn {
  display: inline-block;
}

.cta-box button {
  background: #c31432;
  color: white;
  border: none;
}

.cta-box button:hover {
  background: #a01128;
  box-shadow: 0 5px 15px rgba(195, 20, 50, 0.3);
}

.disclaimer {
  text-align: center;
  font-size: 0.9rem;
  color: #718096;
  margin-top: 1rem;
}

/* Viktigt meddelande */
.important-notice {
  background: #fff5f5;
  padding: 1rem;
  border-left: 4px solid #c31432;
  border-radius: 4px;
  margin: 1.5rem 0;
}

/* Positiv meddelande box */
.success-notice {
  background: #f0fdf4;
  padding: 1.5rem;
  border-left: 4px solid #10b981;
  border-radius: 4px;
  margin-top: 1.5rem;
}

/* Swish bild container */
.swish-container {
  text-align: center;
}

.swish-image {
  max-width: 250px;
  margin: 1rem auto;
  display: block;
}

.swish-text {
  text-align: center;
  font-style: italic;
}

/* Länk stilar */
.email-link {
  color: #c31432;
  text-decoration: none;
  font-weight: bold;
}

.italic-text {
  font-style: italic;
  color: #718096;
}

/* Footer stilar */
footer {
  background: #2d3748;
  color: white;
  padding: 3rem 2rem;
  text-align: center;
}

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

.footer-logo {
  height: 80px;
  width: auto;
  margin-bottom: 1.5rem;
}

.footer-title {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #faa;
}

.footer-intro {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
}

.footer-info {
  margin: 2rem 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
}

.footer-privacy {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* Feature Cards Section */
.features-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

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

.feature-card {
  background: white;
  border-radius: 15px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(195, 20, 50, 0.2);
}

.feature-icon {
  font-size: 3.5rem;
  color: #c31432;
  margin-bottom: 1rem;
  display: inline-block;
}

.feature-card h3 {
  color: #c31432;
  font-size: 1.5rem;
  margin: 1rem 0 0.5rem 0;
  font-weight: bold;
}

.feature-card p {
  color: #4a5568;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .features-section {
    padding: 1rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .feature-card {
    padding: 2rem 1.5rem;
  }

  .feature-icon {
    font-size: 3rem;
  }
}