
:root {
  --primary: #2E5BFF;
  --secondary: #FF6B2B;
  --tertiary: #1AD598;
  --dark: #1A2B6D;
  --text: #3E4462;
  --light-text: #8798AD;
  --background: #F9FAFC;
  --card-bg: #FFFFFF;
  --border: #E5EAEF;
  --shadow: rgba(46, 91, 255, 0.08);
}

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

body {
  font-family: 'Noto Sans', sans-serif;
  color: var(--text);
  background-color: var(--background);
  line-height: 1.6;
}

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

.content-container {
  width: 65%;
  max-width: 780px;
  margin: 0 auto;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--dark);
  margin-bottom: 1rem;
  font-weight: 700;
}

h1 {
  font-size: 2.5rem;
  line-height: 1.2;
}

h2 {
  font-size: 2rem;
  line-height: 1.3;
}

h3 {
  font-size: 1.5rem;
  line-height: 1.4;
}

p {
  margin-bottom: 1.5rem;
}

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

a:hover {
  color: var(--secondary);
}

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

.btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--primary);
  color: white;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn:hover {
  background-color: #2450E3;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46, 91, 255, 0.2);
}

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

.btn-secondary:hover {
  background-color: #E85A1F;
}

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

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


.card {
  background-color: var(--card-bg);
  border-radius: 12px;
  box-shadow: 0 8px 16px var(--shadow);
  padding: 24px;
  margin-bottom: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(46, 91, 255, 0.12);
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--dark);
}

.card-subtitle {
  font-size: 1rem;
  color: var(--light-text);
  margin-bottom: 16px;
}

.card-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(46, 91, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.card-icon i {
  color: var(--primary);
  font-size: 24px;
}


.header {
  background-color: var(--card-bg);
  box-shadow: 0 4px 12px rgba(46, 91, 255, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.logo {
  height: 40px;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  margin-left: 32px;
}

.nav-link {
  color: var(--dark);
  font-weight: 500;
  padding: 8px 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--dark);
  margin: 5px 0;
  transition: all 0.3s ease;
}

.hero {
  padding: 80px 0 40px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 16px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--light-text);
  margin-bottom: 32px;
  max-width: 600px;
}

.section {
  padding: 60px 0;
}

.section-title {
  margin-bottom: 40px;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--light-text);
  margin-bottom: 32px;
  max-width: 600px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.footer {
  background-color: var(--card-bg);
  padding: 60px 0 30px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-col {
  flex: 1;
  margin-right: 40px;
}

.footer-col:last-child {
  margin-right: 0;
}

.footer-title {
  font-size: 1.25rem;
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-link {
  margin-bottom: 12px;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--border);
  text-align: left;
  color: var(--light-text);
}


.form-group {
  margin-bottom: 24px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--dark);
}

input, textarea, select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: 'Noto Sans', sans-serif;
  font-size: 1rem;
  color: var(--text);
  transition: border-color 0.3s ease;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(46, 91, 255, 0.1);
}

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

.checkbox-group {
  display: flex;
  align-items: flex-start;
  margin-bottom: 24px;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-right: 12px;
  margin-top: 4px;
}


.iti {
  width: 100%;
}


.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.modal.active {
  display: flex;
}

.modal-content {
  background-color: var(--card-bg);
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  padding: 32px;
  max-width: 500px;
  width: 90%;
  position: relative;
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--light-text);
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: var(--dark);
}

.modal-title {
  margin-bottom: 16px;
}

.modal-body {
  margin-bottom: 24px;
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
}


.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--card-bg);
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
  padding: 20px;
  z-index: 999;
  display: none;
}

.cookie-banner.active {
  display: block;
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-text {
  flex: 1;
  padding-right: 20px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-settings-modal .modal-body {
  max-height: 400px;
  overflow-y: auto;
}

.cookie-category {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.cookie-category:last-child {
  border-bottom: none;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 34px;
}

.cookie-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .cookie-slider {
  background-color: var(--primary);
}

input:focus + .cookie-slider {
  box-shadow: 0 0 1px var(--primary);
}

input:checked + .cookie-slider:before {
  transform: translateX(24px);
}

.cookie-category-description {
  font-size: 0.9rem;
  color: var(--light-text);
}


.feature-section {
  margin-bottom: 60px;
}

.feature-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 16px var(--shadow);
  margin-bottom: 24px;
}

.feature-content {
  margin-bottom: 24px;
}

.feature-list {
  margin-bottom: 24px;
}

.feature-item {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
}

.feature-item i {
  color: var(--tertiary);
  margin-right: 12px;
  font-size: 18px;
  margin-top: 4px;
}


.map-container {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 40px;
}

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


.update-date {
  font-size: 0.9rem;
  color: var(--light-text);
  margin-bottom: 24px;
}


@media (max-width: 1024px) {
  .content-container {
    width: 75%;
  }
}

@media (max-width: 768px) {
  .content-container {
    width: 100%;
    padding-right: 0;
  }
  
  .hamburger {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 72px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 72px);
    background-color: var(--card-bg);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    transition: left 0.3s ease;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-item {
    margin: 0 0 20px 0;
    width: 100%;
  }
  
  .nav-link {
    display: block;
    padding: 10px 0;
    font-size: 1.2rem;
  }
  
  .grid, .grid-3 {
    grid-template-columns: 1fr;
  }
  
  .footer-container {
    flex-direction: column;
  }
  
  .footer-col {
    margin-right: 0;
    margin-bottom: 40px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-text {
    padding-right: 0;
    margin-bottom: 20px;
  }
  
  .cookie-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .cookie-actions button {
    width: 100%;
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .section {
    padding: 40px 0;
  }
  
  .btn {
    width: 100%;
  }
}