* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #dfe7ef;
  background-color: #0f1229;
  background-image: radial-gradient(circle at 20% 50%, rgba(74, 144, 226, 0.05) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 1.5rem 0;
  color: #dfe7ef;
}

h1 {
  font-size: 2.5rem;
}
@media (max-width: 767px) {
  h1 {
    font-size: 2rem;
  }
}

h2 {
  font-size: 2rem;
}
@media (max-width: 767px) {
  h2 {
    font-size: 1.75rem;
  }
}

h3 {
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  h3 {
    font-size: 1.25rem;
  }
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin: 0 0 1.5rem 0;
  color: #b8c5d6;
}

a {
  color: #4a90e2;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: #6ba3e8;
}
a:focus {
  outline: 2px solid #4a90e2;
  outline-offset: 2px;
}

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

ul, ol {
  margin: 0 0 1.5rem 0;
  padding-left: 2rem;
  color: #b8c5d6;
}

li {
  margin-bottom: 0.5rem;
}

::-moz-selection {
  background-color: #4a90e2;
  color: #dfe7ef;
}

::selection {
  background-color: #4a90e2;
  color: #dfe7ef;
}

::-moz-selection {
  background-color: #4a90e2;
  color: #dfe7ef;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}
@media (min-width: 768px) {
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.services-grid-2col {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}
@media (min-width: 768px) {
  .services-grid-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}
@media (min-width: 768px) {
  .content-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.section {
  padding: 3rem 0;
  position: relative;
}
@media (max-width: 767px) {
  .section {
    padding: 2rem 0;
  }
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}
.section-title h1 {
  background: linear-gradient(135deg, white, #4a90e2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}
.section-title .lead {
  color: #b8c5d6;
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .section-title {
    margin-bottom: 2rem;
  }
  .section-title .lead {
    font-size: 1rem;
  }
}

.main-content {
  min-height: calc(100vh - 200px);
  padding: 0;
}

.hero-section {
  padding: 4rem 0;
  background: linear-gradient(180deg, rgb(10, 14, 39) 0%, rgba(15, 20, 50, 0.95) 100%);
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 50px 50px rgba(0, 0, 0, 0.2);
}
.hero-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(74, 144, 226, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero-section::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
@media (min-width: 768px) {
  .hero-section::after {
    display: none;
  }
}
@media (min-width: 768px) {
  .hero-section {
    background-image: url("../images/frontpage.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 600px;
    display: flex;
    align-items: center;
  }
}
@media (max-width: 767px) {
  .hero-section {
    padding: 0 0 3rem 0;
  }
}

.hero-wrapper {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .hero-wrapper {
    flex-direction: row;
    align-items: center;
    gap: 4rem;
    justify-content: flex-end;
  }
}

.hero-image {
  width: 100%;
  min-height: 300px;
  background-image: url("../images/frontpage_xs2.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  order: 1;
}
@media (max-width: 767px) {
  .hero-image {
    width: calc(100% + 1.5rem * 2);
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    margin-top: 0;
    border-radius: 0;
  }
}
@media (min-width: 768px) {
  .hero-image {
    display: none;
  }
}
.hero-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 14, 39, 0.2) 100%);
  pointer-events: none;
}

.hero-content {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  order: 2;
}
@media (min-width: 768px) {
  .hero-content {
    text-align: left;
    max-width: 550px;
    flex: 0 0 auto;
    margin-left: auto;
  }
}

.hero-subtitle {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #4a90e2;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .hero-subtitle {
    text-align: left;
  }
}
@media (max-width: 767px) {
  .hero-subtitle {
    font-size: 0.75rem;
    margin-bottom: 1rem;
  }
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: #dfe7ef;
  text-shadow: 1px 1px 2px rgb(0, 0, 0);
}
@media (min-width: 768px) {
  .hero-title {
    text-align: left;
  }
}
@media (max-width: 767px) {
  .hero-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
}

.hero-description {
  font-size: 1.25rem;
  color: white;
  line-height: 1.7;
  margin-bottom: 0;
  text-shadow: 1px 1px 2px rgb(0, 0, 0);
}
@media (max-width: 767px) {
  .hero-description {
    font-size: 1rem;
  }
}
@media (min-width: 768px) {
  .hero-description {
    max-width: 100%;
  }
}

.header {
  background-color: rgba(10, 14, 39, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(74, 144, 226, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.5rem;
  position: relative;
}
@media (max-width: 767px) {
  .header-content {
    flex-wrap: wrap;
  }
}

.logo {
  display: flex;
  align-items: center;
}
.logo img {
  height: 50px;
  width: auto;
}
@media (max-width: 767px) {
  .logo img {
    height: 40px;
  }
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 767px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #1c213f;
    flex-direction: column;
    padding: 1.5rem;
    border-top: 1px solid rgba(74, 144, 226, 0.2);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  }
  .nav.active {
    display: flex;
  }
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.5rem;
}
@media (max-width: 767px) {
  .nav-list {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }
}

.nav-item {
  margin: 0;
}

.nav-link {
  color: #b8c5d6;
  font-weight: 500;
  padding: 0.5rem 1rem;
  display: block;
  transition: color 0.3s ease;
  position: relative;
}
.nav-link:hover {
  color: #dfe7ef;
}
.nav-link.active {
  color: #00d4ff;
}
.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0.5rem;
  right: 0.5rem;
  height: 2px;
  background: linear-gradient(90deg, #4a90e2, #00d4ff);
  border-radius: 2px;
}
@media (max-width: 767px) {
  .nav-link {
    padding: 1rem;
    width: 100%;
  }
  .nav-link.active::after {
    left: 1rem;
    right: 1rem;
  }
}

.menu-toggle {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  font-family: inherit;
  display: none;
  color: #dfe7ef;
  font-size: 1.5rem;
  padding: 0.5rem;
}
@media (max-width: 767px) {
  .menu-toggle {
    display: block;
  }
}
.menu-toggle:focus {
  outline: 2px solid #4a90e2;
  outline-offset: 2px;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #00d4ff;
  font-weight: 600;
  font-size: 1.125rem;
  white-space: nowrap;
  transition: color 0.3s ease, transform 0.3s ease;
}
@media (max-width: 767px) {
  .phone-link {
    font-size: 1rem;
  }
}
.phone-link .material-symbols-outlined {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}
.phone-link:hover {
  color: #33dfff;
  transform: translateY(-1px);
}
.phone-link:hover .material-symbols-outlined {
  transform: scale(1.1);
}

.service-card {
  background: linear-gradient(135deg, rgba(30, 37, 71, 0.8) 0%, rgba(21, 27, 61, 0.9) 100%);
  border: 1px solid rgba(74, 144, 226, 0.2);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.1) 0%, rgba(0, 212, 255, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  border-radius: 12px;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(74, 144, 226, 0.4);
  box-shadow: 0 12px 40px rgba(74, 144, 226, 0.3), 0 0 20px rgba(0, 212, 255, 0.2);
}
.service-card:hover::before {
  opacity: 1;
}

.service-card-image {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.2) 0%, rgba(0, 212, 255, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7a8ba3;
  font-size: 0.875rem;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .service-card-image {
    height: 180px;
  }
}
.service-card-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 14, 39, 0.3) 100%);
  pointer-events: none;
}
.service-card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card-image img {
  transform: scale(1.05);
}

.service-card-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.service-card-title {
  margin-bottom: 1rem;
  color: #dfe7ef;
  font-weight: 700;
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .service-card-title {
    font-size: 1.25rem;
  }
}

.service-card-text {
  color: #b8c5d6;
  flex-grow: 1;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.service-card-link {
  color: #4a90e2;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease, transform 0.3s ease;
}
.service-card-link:hover {
  color: #00d4ff;
  transform: translateX(4px);
}
.service-card-link .material-symbols-outlined {
  font-size: 1rem;
  transition: transform 0.3s ease;
}
.service-card-link:hover .material-symbols-outlined {
  transform: translateX(4px);
}

.footer {
  background: linear-gradient(180deg, rgba(10, 14, 39, 0.95) 0%, rgb(15, 20, 50) 100%);
  border-top: 1px solid rgba(74, 144, 226, 0.2);
  padding: 3rem 0;
  position: relative;
  margin-top: 4rem;
  background-image: url("../images/footer_bg.png");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #4a90e2 50%, transparent 100%);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

.footer-section {
  margin-bottom: 0;
}

.footer-title {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  color: #dfe7ef;
}

.footer-text {
  color: #b8c5d6;
  margin-bottom: 0.5rem;
}

.footer-link {
  color: #b8c5d6;
  transition: color 0.3s ease;
}
.footer-link:hover {
  color: #4a90e2;
}

.footer-keywords {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .footer-keywords {
    align-items: flex-start;
  }
}

.footer-keywords-text {
  color: rgba(184, 197, 214, 0.7);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.breadcrumbs {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  padding: 1.5rem 1.5rem;
  background: linear-gradient(180deg, rgba(10, 14, 39, 0.5) 0%, transparent 100%);
}
.breadcrumbs .breadcrumb-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.breadcrumbs .breadcrumb-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #7a8ba3;
  font-size: 0.875rem;
}
.breadcrumbs .breadcrumb-link {
  color: #b8c5d6;
  transition: color 0.3s ease;
}
.breadcrumbs .breadcrumb-link:hover {
  color: #4a90e2;
}
.breadcrumbs .breadcrumb-current {
  color: #dfe7ef;
  font-weight: 500;
}

.btn.btn-primary {
  background: linear-gradient(135deg, #00d4ff 0%, #00b8e6 100%);
  border: none;
  color: #dfe7ef;
  padding: 1rem 2rem;
  font-weight: 600;
  border-radius: 6px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}
.btn.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
  background: linear-gradient(135deg, #33dfff 0%, #00d4ff 100%);
}
.btn.btn-primary:active {
  transform: translateY(0);
}
.btn.btn-primary:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 212, 255, 0.5), 0 4px 15px rgba(0, 212, 255, 0.3);
}
.btn.btn-outline {
  background-color: transparent;
  border: 2px solid #4a90e2;
  color: #4a90e2;
  padding: 1rem 2rem;
  font-weight: 600;
  border-radius: 6px;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.btn.btn-outline:hover {
  background-color: #4a90e2;
  color: #dfe7ef;
  border-color: #4a90e2;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}
.btn.btn-outline:focus {
  box-shadow: 0 0 0 0.2rem rgba(74, 144, 226, 0.5);
}

.btn-link {
  color: #4a90e2;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease, transform 0.3s ease;
}
.btn-link:hover {
  color: #00d4ff;
  transform: translateX(4px);
}
.btn-link .material-symbols-outlined {
  font-size: 1rem;
  transition: transform 0.3s ease;
}
.btn-link:hover .material-symbols-outlined {
  transform: translateX(6px);
}

.lead {
  font-size: 1.125rem;
  font-weight: 400;
  color: #b8c5d6;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .lead {
    font-size: 1rem;
  }
}

.content-section {
  max-width: 800px;
  margin: 0 auto;
}
.content-section h2 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  color: #dfe7ef;
  font-size: 1.2rem;
}
.content-section h2:first-of-type {
  margin-top: 2rem;
}
.content-section h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #dfe7ef;
}
.content-section ul, .content-section ol {
  margin-bottom: 1.5rem;
}
.content-section ul li, .content-section ol li {
  margin-bottom: 0.5rem;
  color: #b8c5d6;
}
.content-section p {
  margin-bottom: 1.5rem;
  color: #b8c5d6;
}
.content-section strong {
  color: #dfe7ef;
  font-weight: 600;
}

.cta-section {
  margin-top: 3rem;
  padding: 3rem;
  background: linear-gradient(135deg, rgba(30, 37, 71, 0.9) 0%, rgb(21, 27, 61) 100%);
  border: 1px solid rgba(74, 144, 226, 0.2);
  border-radius: 12px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(74, 144, 226, 0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section p {
  margin-bottom: 1.5rem;
  color: #dfe7ef;
  font-size: 1.125rem;
  position: relative;
  z-index: 1;
}
.cta-section .btn {
  margin: 0 0.5rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .cta-section .btn {
    display: block;
    width: 100%;
    margin: 0.5rem 0;
  }
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.service-item {
  background: linear-gradient(135deg, rgba(30, 37, 71, 0.8) 0%, rgba(21, 27, 61, 0.9) 100%);
  border: 1px solid rgba(74, 144, 226, 0.2);
  border-radius: 12px;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
}
.service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.1) 0%, rgba(0, 212, 255, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  border-radius: 12px;
}
.service-item:hover {
  transform: translateY(-4px);
  border-color: rgba(74, 144, 226, 0.4);
  box-shadow: 0 8px 30px rgba(74, 144, 226, 0.25), 0 0 15px rgba(0, 212, 255, 0.15);
}
.service-item:hover::before {
  opacity: 1;
}
.service-item h2 {
  margin-bottom: 1rem;
}
.service-item h2 .service-link {
  color: #dfe7ef;
  transition: color 0.3s ease;
}
.service-item h2 .service-link:hover {
  color: #4a90e2;
}
.service-item p {
  margin-bottom: 1.5rem;
  color: #b8c5d6;
  line-height: 1.7;
}
.service-item .btn-link {
  margin-top: 0.5rem;
}

.service-card-clickable {
  background: linear-gradient(135deg, #0f1229, rgba(21, 27, 61, 0.9) 100%);
  border: 1px solid rgba(74, 144, 226, 0.2);
  border-radius: 12px;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  cursor: pointer;
  height: 100%;
}
.service-card-clickable::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.1) 0%, rgba(0, 212, 255, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  border-radius: 12px;
}
.service-card-clickable:hover {
  transform: translateY(-6px);
  border-color: rgba(74, 144, 226, 0.4);
  box-shadow: 0 12px 40px rgba(74, 144, 226, 0.3), 0 0 20px rgba(0, 212, 255, 0.2);
  text-decoration: none;
}
.service-card-clickable:hover::before {
  opacity: 1;
}
.service-card-clickable:hover .service-card-icon .material-symbols-outlined {
  transform: scale(1.1);
  color: #00d4ff;
}
.service-card-clickable:hover .service-card-arrow {
  transform: translateX(6px);
  color: #00d4ff;
}
.service-card-clickable:focus {
  outline: 2px solid #4a90e2;
  outline-offset: 2px;
}

.service-card-icon {
  margin-bottom: 1.5rem;
  display: inline-block;
}
.service-card-icon .material-symbols-outlined {
  font-size: 2.8rem;
  color: #00d4ff;
  transition: transform 0.3s ease, color 0.3s ease;
  display: inline-block;
  line-height: 1;
}

.service-card-clickable .service-card-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.service-card-clickable .service-card-title {
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  margin-top: 0;
  color: #dfe7ef;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .service-card-clickable .service-card-title {
    font-size: 1.25rem;
  }
}

.service-card-arrow {
  font-size: 1.5rem !important;
  color: #4a90e2;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.5rem;
}

.service-card-clickable .service-card-text {
  color: #b8c5d6;
  flex-grow: 1;
  margin-bottom: 0;
  margin-top: 0;
  line-height: 1.7;
  font-size: 1rem;
}

.faq-content {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: linear-gradient(135deg, rgba(30, 37, 71, 0.8) 0%, rgba(21, 27, 61, 0.9) 100%);
  border: 1px solid rgba(74, 144, 226, 0.2);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.faq-item:hover {
  transform: translateY(-2px);
  border-color: rgba(74, 144, 226, 0.4);
  box-shadow: 0 6px 25px rgba(74, 144, 226, 0.2);
}
.faq-item h2 {
  color: #00d4ff;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .faq-item h2 {
    font-size: 1.125rem;
  }
}
.faq-item p {
  color: #b8c5d6;
  margin-bottom: 0;
  line-height: 1.7;
}

.faq-cta {
  margin-top: 3rem;
  padding: 2rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(30, 37, 71, 0.8) 0%, rgba(21, 27, 61, 0.9) 100%);
  border: 1px solid rgba(74, 144, 226, 0.2);
  border-radius: 12px;
}
.faq-cta p {
  color: #b8c5d6;
  margin-bottom: 0;
}
.faq-cta p a {
  color: #00d4ff;
  font-weight: 600;
  transition: color 0.3s ease;
}
.faq-cta p a:hover {
  color: #33dfff;
}

.contact-content {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info h2 {
  color: #dfe7ef;
  margin-bottom: 1.5rem;
}

.contact-address p {
  margin-bottom: 1.5rem;
  color: #b8c5d6;
}
.contact-address p strong {
  color: #dfe7ef;
  display: block;
  margin-bottom: 0.5rem;
}

.contact-link {
  color: #4a90e2;
  font-weight: 500;
  transition: color 0.3s ease;
}
.contact-link:hover {
  color: #00d4ff;
}

.contact-cta {
  background: linear-gradient(135deg, rgba(30, 37, 71, 0.8) 0%, rgba(21, 27, 61, 0.9) 100%);
  border: 1px solid rgba(74, 144, 226, 0.2);
  border-radius: 12px;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.contact-cta:hover {
  border-color: rgba(74, 144, 226, 0.4);
  box-shadow: 0 8px 30px rgba(74, 144, 226, 0.25);
}
.contact-cta h2 {
  color: #dfe7ef;
  margin-bottom: 1.5rem;
}
.contact-cta p {
  color: #b8c5d6;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
@media (max-width: 767px) {
  .contact-cta .btn {
    display: block;
    width: 100%;
  }
}

.adr-classes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}
@media (min-width: 768px) {
  .adr-classes {
    grid-template-columns: repeat(2, 1fr);
  }
}

.adr-class-item {
  background: linear-gradient(135deg, rgba(30, 37, 71, 0.8) 0%, rgba(21, 27, 61, 0.9) 100%);
  border: 1px solid rgba(74, 144, 226, 0.2);
  border-left: 4px solid #4a90e2;
  border-radius: 8px;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-left-color 0.3s ease;
}
.adr-class-item:hover {
  transform: translateY(-2px);
  border-left-color: #00d4ff;
  box-shadow: 0 6px 25px rgba(74, 144, 226, 0.2);
}
.adr-class-item h3 {
  color: #4a90e2;
  margin-bottom: 1rem;
  font-size: 1.125rem;
  transition: color 0.3s ease;
}
.adr-class-item:hover h3 {
  color: #00d4ff;
}
.adr-class-item p {
  color: #b8c5d6;
  margin-bottom: 1rem;
  line-height: 1.7;
}
.adr-class-item ul {
  margin-top: 1rem;
  margin-bottom: 0;
}
.adr-class-item ul li {
  color: #b8c5d6;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}
.adr-class-item ul li strong {
  color: #4a90e2;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-muted {
  color: #7a8ba3;
}

.text-accent {
  color: #4a90e2;
}

.text-accent-primary {
  color: #00d4ff;
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

.mt-5 {
  margin-top: 3rem;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

.p-0 {
  padding: 0;
}

.p-1 {
  padding: 0.5rem;
}

.p-2 {
  padding: 1rem;
}

.p-3 {
  padding: 1.5rem;
}

.p-4 {
  padding: 2rem;
}

.p-5 {
  padding: 3rem;
}

.d-none {
  display: none;
}

.d-block {
  display: block;
}

.d-flex {
  display: flex;
}

.d-grid {
  display: grid;
}

@media (min-width: 768px) {
  .d-md-none {
    display: none;
  }
  .d-md-block {
    display: block;
  }
  .d-md-flex {
    display: flex;
  }
  .d-md-grid {
    display: grid;
  }
}/*# sourceMappingURL=main.css.map */