/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

/* Navigation */
nav {
  background: #000;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

nav li {
  margin: 0;
}

nav a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 20px 13px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.3s;
}

nav a:hover,
nav a.active {
  background: #fff;
  color: #000;
}

/* Hero sections */
.hero {
  background-size: cover;
  background-position: center top;
  color: #fff;
  text-align: center;
  padding: 250px 20px;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  margin-top: 50px;
}

.hero h1 {
  font-family: 'Wix Madefor Display', 'Raleway', sans-serif;
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  font-family: 'Raleway', sans-serif;
  font-size: 20px;
  font-weight: 700;
}

/* Container */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 10px 20px;
}

.container-wide {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px 20px;
}

/* Typography */
h1, h2, h3 {
  font-family: 'Wix Madefor Display', 'Raleway', sans-serif;
  font-weight: 700;
  margin-bottom: 20px;
}

h1 {
  font-size: 48px;
  text-align: center;
}

h2 {
  font-size: 36px;
  text-align: center;
  margin-top: 30px;
}

h3 {
  font-size: 24px;
  margin-top: 40px;
}

p {
  font-family: 'Raleway', sans-serif;
  margin-bottom: 20px;
  font-size: 22px;
  line-height: 1.8;
}

strong {
  font-weight: 600;
}

a {
  color: #000;
  text-decoration: underline;
}

/* Buttons and CTAs */
.btn {
  display: inline-block;
  padding: 12px 32px;
  border: 2px solid #000;
  border-radius: 25px;
  color: #000;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s;
  text-transform: none;
}

.btn:hover {
  background: #000;
  color: #fff;
}

/* Service boxes */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 10px;
  margin: 60px 0;
}

.service-box {
  background: #000;
  color: #fff;
  padding: 40px 30px;
  text-align: center;
  transition: transform 0.3s;
}

.service-box:hover {
  transform: translateY(-5px);
}

.service-box .icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.service-box h3 {
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 20px 0 15px 0;
}

.service-box p {
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-box a {
  color: #fff;
  font-size: 14px;
}

/* Lists */
ul {
  margin: 20px 0 20px 20px;
}

li {
  margin-bottom: 8px;
  line-height: 1.6;
  font-size: 22px;
}

/* Client profiles section */
.client-profile {
  margin: 40px 0;
}

.client-profile h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.client-profile ul {
  margin-top: 10px;
}

/* Images */
img {
  max-width: 100%;
  height: auto;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  margin: 40px 0;
}

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

.centered-image {
  text-align: center;
  margin: 40px 0;
}

.centered-image img {
  max-width: 500px;
  border-radius: 50%;
}

/* Testimonials */

/*
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.testimonial-card {
  border: 1px solid #ddd;
  padding: 20px;


.testimonial-video {
  width: 100%;
  aspect-ratio: 16/9;
  margin-bottom: 15px;
}

.testimonial-card h3 {
  font-size: 18px;
  margin: 15px 0 5px 0;
}

.testimonial-card .title {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.testimonial-card p {
  font-size: 14px;
  line-height: 1.6;
}

.testimonial-text {
  background: #f9f9f9;
  padding: 40px;
  margin: 40px 0;
  border-left: 4px solid #000;
}

.testimonial-text img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: block;
} */

/* Footer */
footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 40px 20px;
  margin-top: 0px;
}

footer p {
  font-size: 14px;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  nav ul {
    flex-wrap: wrap;
  }
  
  nav a {
    padding: 15px 15px;
    font-size: 12px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero p {
    font-size: 18px;
  }
  
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .image-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}