:root {
  --color-bg-light: #EFF6FF;
  --color-primary: #60A5FA;
  --color-primary-dark: #1D4ED8;
  --color-primary-darker: #1E3A8A;
  --color-text: #1E293B;
  --color-text-light: #64748B;
  --color-white: #FFFFFF;
  --color-border: #E2E8F0;
  
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  
  --transition: all 0.3s ease;
}

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

body {
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

h1 {
  font-size: 1.875rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.125rem;
}

p {
  margin-bottom: var(--space-md);
  font-size: 0.875rem;
}

a {
  color: var(--color-primary-dark);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--color-primary-darker);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.header {
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 100;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) var(--space-md);
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-primary-dark);
}

.logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 9px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--color-text);
  cursor: pointer;
  padding: var(--space-xs);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--space-lg);
  align-items: center;
}

.nav-menu a {
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
}

.nav-menu a:hover {
  background: var(--color-bg-light);
  color: var(--color-primary-dark);
}

.hero {
  padding: var(--space-2xl) var(--space-md);
  background: linear-gradient(135deg, var(--color-bg-light) 0%, var(--color-white) 100%);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.hero-text h1 {
  font-size: 2rem;
  margin-bottom: var(--space-md);
  color: var(--color-primary-darker);
}

.hero-text p {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
}

.hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 17px outset #1C6EA4;
border-radius: 0px 40px 0px 0px;
}

.hero-image img {
  width: 100%;
  height: auto;
}

.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--color-primary-dark);
  border: 2px solid var(--color-primary);
}

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

.section {
  padding: var(--space-2xl) var(--space-md);
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-title h2 {
  font-size: 1.75rem;
  color: var(--color-primary-darker);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.card-icon {
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.card h3 {
  font-size: 1.125rem;
  margin-bottom: var(--space-sm);
}

.card p {
  font-size: 0.8125rem;
  color: var(--color-text-light);
  margin-bottom: 0;
}

.footer {
  background: var(--color-primary-darker);
  color: var(--color-white);
  padding: var(--space-xl) var(--space-md);
  margin-top: var(--space-2xl);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
}

.footer-section h4 {
  color: var(--color-white);
  margin-bottom: var(--space-md);
  font-size: 1rem;
}

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

.footer-section ul li {
  margin-bottom: var(--space-xs);
}

.footer-section a {
  color: var(--color-bg-light);
  font-size: 0.8125rem;
}

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

.footer-bottom {
  text-align: center;
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--color-text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-sm);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.875rem;
}

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

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
  margin-bottom: var(--space-lg);
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 0.2rem;
}

.checkbox-group label {
  font-size: 0.8125rem;
  margin-bottom: 0;
  font-weight: 400;
}

.map-container {
  width: 100%;
  height: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: var(--space-lg) 0;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-primary-darker);
  color: var(--color-white);
  padding: var(--space-md);
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  display: none;
}

.privacy-popup.show {
  display: block;
}

.privacy-popup-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.privacy-popup-text {
  flex: 1;
  font-size: 0.8125rem;
}

.privacy-popup-actions {
  display: flex;
  gap: var(--space-sm);
}

.privacy-popup-actions .btn {
  padding: var(--space-xs) var(--space-md);
  font-size: 0.8125rem;
}

.thank-you-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl);
}

.thank-you-content h1 {
  color: var(--color-primary-darker);
  margin-bottom: var(--space-lg);
}

.thank-you-content p {
  font-size: 1rem;
  color: var(--color-text-light);
  margin-bottom: var(--space-xl);
}

.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl);
  background: var(--color-bg-light);
}

.error-content h1 {
  font-size: 4rem;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.error-content h2 {
  color: var(--color-primary-darker);
  margin-bottom: var(--space-lg);
}

.error-content p {
  font-size: 1rem;
  color: var(--color-text-light);
  margin-bottom: var(--space-xl);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-white);
    flex-direction: column;
    padding: var(--space-md);
    box-shadow: var(--shadow-md);
    display: none;
    gap: var(--space-sm);
  }

  .nav-menu.active {
    display: flex;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .hero-text h1 {
    font-size: 1.5rem;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .privacy-popup-content {
    flex-direction: column;
    text-align: center;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 0.8125rem;
  }

  .container {
    padding: 0 var(--space-sm);
  }

  .hero {
    padding: var(--space-xl) var(--space-sm);
  }

  .section {
    padding: var(--space-xl) var(--space-sm);
  }

  .hero-text h1 {
    font-size: 1.25rem;
  }

  .section-title h2 {
    font-size: 1.5rem;
  }

  .card {
    padding: var(--space-md);
  }

  .btn {
    padding: var(--space-xs) var(--space-md);
    font-size: 0.8125rem;
  }
}

.custom-section-1 {
  padding: var(--space-2xl) var(--space-md);
  background: linear-gradient(45deg, #F0F9FF 0%, #FFFFFF 50%, #F0F9FF 100%);
}

.custom-section-content-1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.custom-section-image-1 {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.custom-section-image-1:hover {
  transform: rotate(0deg) scale(1.02);
}

.custom-section-image-1 img {
  width: 100%;
  height: auto;
  display: block;
}

.custom-section-text-1 h2 {
  font-size: 1.75rem;
  color: var(--color-primary-darker);
  margin-bottom: var(--space-lg);
  position: relative;
  padding-bottom: var(--space-sm);
}

.custom-section-text-1 h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--color-primary);
  border-radius: var(--radius-sm);
}

.custom-section-text-1 p {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.custom-section-2 {
  padding: var(--space-2xl) var(--space-md);
  background: var(--color-white);
  position: relative;
}

.custom-section-2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 50px,
    rgba(96, 165, 250, 0.03) 50px,
    rgba(96, 165, 250, 0.03) 51px
  );
}

.custom-section-content-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.custom-section-text-2 h2 {
  font-size: 1.75rem;
  color: var(--color-primary-darker);
  margin-bottom: var(--space-lg);
  font-weight: 700;
}

.custom-section-text-2 p {
  font-size: 0.9375rem;
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
  border-left: 4px solid var(--color-primary);
}

.custom-section-image-2 {
  position: relative;
  border-radius: 50% 20% / 10% 40%;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.custom-section-image-2:hover {
  border-radius: 20% 50% / 40% 10%;
  transform: scale(1.05);
}

.custom-section-image-2 img {
  width: 100%;
  height: auto;
  display: block;
}

.custom-section-3 {
  position: relative;
  padding: var(--space-2xl) var(--space-md);
  background: linear-gradient(135deg, var(--color-primary-darker) 0%, var(--color-primary-dark) 100%);
  min-height: 400px;
  display: flex;
  align-items: center;
}

.custom-section-3::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.custom-section-overlay-3 {
  position: relative;
  z-index: 1;
  width: 100%;
}

.custom-section-content-3 {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  color: var(--color-white);
}

.custom-section-content-3 h2 {
  font-size: 2rem;
  color: var(--color-white);
  margin-bottom: var(--space-lg);
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.custom-section-content-3 p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.custom-section-4 {
  padding: var(--space-2xl) var(--space-md);
  background: var(--color-bg-light);
}

.custom-section-content-4 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  max-width: 1000px;
  margin: 0 auto;
}

.custom-section-column-4 {
  background: var(--color-white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border-top: 4px solid var(--color-primary);
  position: relative;
  overflow: hidden;
}

.custom-section-column-4::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.1) 0%, transparent 70%);
  transition: var(--transition);
}

.custom-section-column-4:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.custom-section-column-4:hover::before {
  top: -30%;
  right: -30%;
}

.custom-section-column-4 h3 {
  font-size: 1.25rem;
  color: var(--color-primary-darker);
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
}

.custom-section-column-4 p {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .custom-section-content-1,
  .custom-section-content-2 {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .custom-section-image-1 {
    transform: rotate(0deg);
  }

  .custom-section-content-4 {
    grid-template-columns: 1fr;
  }

  .custom-section-content-3 h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 380px) {
  .column{
    display: flex !important;
    flex-direction: column;
  }
  .logo {
    font-size: 0.875rem;
  }

  .logo img {
    width: 32px;
    height: 32px;
  }

  .hero-text h1 {
    font-size: 1.125rem;
  }

  .section-title h2 {
    font-size: 1.25rem;
  }

  .card-grid {
    gap: var(--space-md);
  }

  .custom-section-text-1 h2,
  .custom-section-text-2 h2 {
    font-size: 1.25rem;
  }

  .custom-section-content-3 h2 {
    font-size: 1.25rem;
  }
}
