/* Global Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #fffaf7;
  color: #2c2c2c;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: #8d5c34;
  transition: 0.3s;
}

a:hover {
  color: #5e3a22;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 10px;
}

/* Header */
.site-header {
  background-color: #fff;
  padding: 5px 0;
  border-bottom: 1px solid #eee;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.branding img {
  max-height: 200px;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

.main-nav a {
  font-weight: 600;
  font-size: 1.1rem; /* was 1rem */
  letter-spacing: 0.5px;
  padding: 8px 12px;
}


/* Hero Section */
.hero {
  background-color: #f8ede8;
  padding: 80px 20px;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.hero-text {
  flex: 1;
  min-width: 280px;
  max-width: 600px;
}

.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 1.25rem;
  margin-bottom: 30px;
}

.hero-image {
  flex: 1;
  max-width: 400px;
  text-align: center;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}


/* Buttons */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 12px 24px;
  background-color: #8d5c34;
  color: #fff;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.btn-primary:hover,
.btn-secondary:hover {
  background-color: #5e3a22;
}

/* Intro Section */
.intro h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
}

.intro .highlight {
  color: #8d5c34;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}

.intro p {
  max-width: 800px;
  margin: 10px auto 30px auto;
  text-align: center;
}

/* Services */
.services h2 {
  text-align: center;
  font-size: 2rem;
  font-family: 'Playfair Display', serif;
  margin-bottom: 10px;
}

.services p {
  text-align: center;
  margin-bottom: 30px;
}

.services-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  font-weight: bold;
  margin-bottom: 30px;
}

/* Process */
.process {
  background-color: #f8ede8;
}

.process h2 {
  text-align: center;
  font-size: 2rem;
  font-family: 'Playfair Display', serif;
  margin-bottom: 40px;
}

.steps {
  list-style: none;
  counter-reset: step;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 20px;
}

.steps li {
  font-size: 1.1rem;
  margin-bottom: 20px;
  position: relative;
  padding-left: 30px;
}

.steps li::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero) ".";
  position: absolute;
  left: 0;
  font-weight: bold;
  color: #8d5c34;
}

/* About */
.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 20px;
}

.about-image img {
  max-width: 400px;
  width: 100%;
  border-radius: 10px;
}

/* Footer */
.site-footer {
  background-color: #f8ede8;
  padding: 60px 20px;
  text-align: center;
  font-size: 0.9rem;
  color: #555;
}

.footer-logo img {
  max-height: 60px;
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
}

.footer-links a {
  color: #8d5c34;
  font-weight: bold;
}

.footer-links a:hover {
  text-decoration: underline;
}

.disclaimer {
  color: #999;
}

/* Features */
.features {
  background-color: #fdf7f2;
  padding: 60px 20px;
}

.features h2 {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 40px;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-bottom: 30px;
}

.feature {
  flex: 1 1 250px;
  max-width: 300px;
  text-align: center;
}

.feature h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.testimonial {
  background-color: #f8ede8;
  padding: 60px 20px;
  text-align: center;
  font-style: italic;
}

.cta-section {
  background-color: #8d5c34;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 20px;
}
.licenses {
  background-color: #f8ede8;
  padding: 60px 20px;
}

.licenses h2 {
  text-align: center;
  font-size: 2rem;
  font-family: 'Playfair Display', serif;
  margin-bottom: 20px;
}

.licenses p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.license-list {
  max-width: 600px;
  margin: 0 auto;
  list-style-type: disc;
  padding-left: 20px;
  line-height: 1.8;
  font-size: 1.1rem;
  color: #2c2c2c;
}
.contact-hero {
  background-color: #f8ede8;
  padding: 60px 20px;
  text-align: center;
}

.contact-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.contact-section {
  background-color: #fffaf7;
  padding: 60px 20px;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.contact-form,
.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form label {
  font-weight: bold;
  margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
}

.contact-info ul {
  padding-left: 20px;
  list-style: disc;
}

.contact-info h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 1.2rem;
}


.center-button {
  display: block;
  width: fit-content;
  margin: 0 auto;
}
