:root {
  --primary-orange: #D97638;
  --dark-bg: #1a1a1a;
  --light-bg: #f5f5f5;
  --text-dark: #222222;
  --text-light: #666666;
  --border-color: #e0e0e0;
  --white: #ffffff;
}

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

html, body {
  height: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
}

.container-fluid {
  padding-left: 15px;
  padding-right: 15px;
}

header {
  background-color: var(--white);
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-orange);
  text-decoration: none;
  letter-spacing: 0.05em;
}

.logo:hover {
  color: var(--text-dark);
  text-decoration: none;
}

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

.nav-menu a {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: var(--primary-orange);
}

@media (max-width: 768px) {
  .nav-menu {
    gap: 1rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
  .nav-menu {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  
  .logo {
    font-size: 1.2rem;
  }
}

.hero {
  position: relative;
  height: 400px;
  background: linear-gradient(rgba(26, 26, 26, 0.3), rgba(26, 26, 26, 0.3)), url('images/hero-home.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .hero {
    height: 300px;
    margin-bottom: 2rem;
  }
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

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

.hero p {
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.03em;
}

@media (max-width: 576px) {
  .hero p {
    font-size: 0.9rem;
  }
}

.section {
  margin-bottom: 4rem;
  padding: 2rem 0;
}

.section-content {
  max-width: 900px;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  font-weight: 700;
  letter-spacing: -0.01em;
}

@media (max-width: 576px) {
  h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
}

h3 {
  font-size: 1.3rem;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-orange);
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
  line-height: 1.7;
}

.section-image {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 4px;
  margin: 2rem 0;
}

@media (max-width: 768px) {
  .section-image {
    max-height: 300px;
    margin: 1.5rem 0;
  }
}

.cta {
  background-color: var(--primary-orange);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 4px;
  display: inline-block;
  transition: background-color 0.3s ease;
  font-weight: 500;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.cta:hover {
  background-color: #c05a2a;
  text-decoration: none;
  color: var(--white);
}

.cta-secondary {
  background-color: transparent;
  color: var(--primary-orange);
  border: 1px solid var(--primary-orange);
}

.cta-secondary:hover {
  background-color: var(--primary-orange);
  color: var(--white);
}

footer {
  background-color: var(--dark-bg);
  color: var(--white);
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
  border-top: 1px solid var(--border-color);
}

footer a {
  color: var(--primary-orange);
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--white);
}

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

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

.footer-section h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

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

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

.contact-info {
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: #999;
}

form {
  max-width: 600px;
  margin: 2rem 0;
}

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

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-dark);
}

input[type="email"],
textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 2px rgba(217, 118, 56, 0.1);
}

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

.checkbox-group {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

input[type="checkbox"] {
  margin-right: 0.5rem;
  cursor: pointer;
}

.checkbox-group label {
  margin-bottom: 0;
  cursor: pointer;
  font-weight: normal;
}

.thank-you-message {
  text-align: center;
  padding: 3rem 0;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.thank-you-message h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.thank-you-message p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

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

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

.privacy-section {
  margin-bottom: 2.5rem;
}

.privacy-section h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.privacy-section p {
  margin-bottom: 1rem;
}

ul, ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

li {
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--dark-bg);
  color: var(--white);
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .cookie-consent {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}

.cookie-consent p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--white);
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

@media (max-width: 768px) {
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}

.cookie-btn {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.cookie-accept {
  background-color: var(--primary-orange);
  color: var(--white);
}

.cookie-accept:hover {
  background-color: #c05a2a;
}

.cookie-decline {
  background-color: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}

.cookie-decline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
