:root {
  --jade: #046865;
  --coral: #FF6B6B;
  --sand: #F2C57C;
  --graphite: #1C1C1E;
  --light-bg: #FAFAF9;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  --radius: 12px;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--graphite);
  background-color: var(--light-bg);
  line-height: 1.6;
  padding-top: 5rem;
}

/* Typography */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
  color: var(--jade);
}

h2 {
  font-size: 2rem;
  position: relative;
  margin-bottom: 2rem;
}

h2:after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--coral);
}

h3 {
  font-size: 1.5rem;
  color: var(--jade);
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--jade);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--coral);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

section {
  padding: 4rem 0;
}

/* Button Styles */
.btn {
  display: inline-block;
  background-color: var(--jade);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
  text-align: center;
  box-shadow: var(--shadow);
}

.btn:hover {
  background-color: var(--coral);
  color: white;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--coral);
}

.btn-secondary:hover {
  background-color: var(--jade);
}

/* Header */
.header {
  background-color: white;
  box-shadow: var(--shadow);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.5rem 0;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
}

/* Navigation */
.nav-checkbox {
  display: none;
}

.nav-toggle {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--jade);
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-item {
  margin-left: 1.5rem;
}

.nav-link {
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
}

/* Hero Section */
.hero {
  
  border-radius: var(--radius);
  
  overflow: hidden;
  margin-top: 1rem;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.hero-text {
  padding: 2rem;
}

.hero-image {
  height: 400px;
  background-size: cover;
  background-position: center;
}

/* Sections */
.about, .advantages, .services, .process, .testimonials, .faq, .contact {
  
  margin-bottom: 2rem;
  
}

/* Grid & Flex Layouts */
.grid {
  display: grid;
  gap: 2rem;
}
.grid-2{
  grid-template-columns: repeat(2, 1fr);
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.flex {
  display: flex;
}

.flex-between {
  justify-content: space-between;
}

.flex-center {
  justify-content: center;
  align-items: center;
}

/* Cards */
.card {
  background-color: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-5px);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--jade);
  color: white;
  border-radius: 50%;
  margin-bottom: 1rem;
}

/* Form Styles */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-control {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: var(--radius);
  background-color: white;
}

.form-control:focus {
  outline: none;
  border-color: var(--jade);
}

.form-check {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.form-check input {
  margin-right: 0.5rem;
  margin-top: 0.3rem;
}

/* Footer */
.footer {
  background-color: var(--graphite);
  color: white;
  padding: 3rem 0 1rem;
}

.footer h3 {
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #ddd;
}

.footer-links a:hover {
  color: var(--sand);
}

.copyright {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

/* FAQ */
.faq-item {
  margin-bottom: 1rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 1rem;
}

.faq-question {
  font-weight: 600;
  color: var(--jade);
  margin-bottom: 0.5rem;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  max-width: 400px;
  background-color: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  z-index: 1001;
  display: none;
}

.cookie-popup.show {
  display: block;
}

.cookie-popup p {
  margin-bottom: 1rem;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

/* Responsive */
@media (max-width: 992px) {
  .grid-3, .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 4rem;
  }
  
  h1 {
    font-size: 1.5rem !important;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  h3{
    font-size: 1.1rem !important;
  }
  section {
    padding: 2rem 0;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
  }
  
  .hero-image {
    height: 250px;
  }
  
  .nav-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 60px;
    right: -100%;
    flex-direction: column;
    background-color: white;
    width: 80%;
    height: calc(100vh - 60px);
    padding: 2rem;
    transition: var(--transition);
    box-shadow: var(--shadow);
  }
  
  .nav-checkbox:checked ~ .nav-menu {
    right: 0;
  }
  
  .nav-item {
    margin: 1rem 0;
  }
  
  .logo img {
    height: 36px;
  }
}

@media (max-width: 480px) {
  body {
    padding-top: 3.5rem;
  }
  

  
  .grid-2, .grid-3, .grid-4, .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .card {
    padding: 1rem;
  }
  
  .header {
    padding: 0.3rem 0;
  }
  
  .logo img {
    height: 30px;
  }
  
  .nav-link {
    font-size: 0.8rem;
  }
} 