/*
Theme Name: Accident Tool Theme
Author: BBG-Solutions
Version: 1.0
Text Domain: accident-tool
*/
:root {
  --accent-color: #e72313;
}
body {
  margin: 0;
  padding: 0;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  color: #333;
  background: #f9f9f9;
  line-height: 1.6;
}
.site-header, .site-footer {
  background: #fff;
  padding: 20px 0;
  text-align: center;
}
.nav {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
}
.nav li a {
  text-decoration: none;
  color: #333;
}
.btn {
  display: inline-block;
  padding: 10px 20px;
  background: var(--accent-color);
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
}
.hero {
  background: url('assets/images/startscreen-eup-23-03-02.png') no-repeat center/cover;
  padding: 120px 20px;
  color: #fff;
  text-align: center;
}
.section {
  padding: 60px 20px;
  max-width: 960px;
  margin: 0 auto;
}
.section:nth-of-type(even) {
  background: #fff;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 20px;
}
.gallery img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
