/* ========== Common Styles ========== */

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Urbanist", sans-serif;
  color: #333;
  background-color: #fff;
}

/* ========== Responsive Container System (Mobile First) ========== */
.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding: 0 20px;
	position: relative;
	z-index:2;
}

/* Small devices (≥576px) */
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

/* Medium devices (≥768px) */
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

/* Large devices (≥992px) */
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

/* X-Large devices (≥1200px) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/* XX-Large devices (≥1400px) */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

/* XXX-Large devices (≥1600px) */
@media (min-width: 1600px) {
  .container {
    max-width: 1500px;
  }
}

/* Common Padding */
.common-padding {
  padding-top: 60px;
  padding-bottom: 60px;
}

/* Text Utilities */
.text-center {
  text-align: center;
}

.text-blue {
  color: #008dff;
}

/* Button Base Styles */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 12px;
  font-family: "Urbanist", sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: #008dff;
  color: #fff;
}

.btn-primary:hover {
  background: #0077dd;
}

/* Section Title Styles */
.title {
  text-align: center;
  margin-bottom: 48px;
}

.subtitle {
    color: #333;
  font-size: 28px;
  font-weight: 400;
  line-height: 32px;
  padding-bottom: 32px;
}

.maintitle {
  font-size: 48px;
  font-weight: 400;
  line-height: 1.2;
  color: #333;
  margin-bottom: 8px;
}

.maintitle-blue {
  font-size: 48px;
  line-height: 1.2;
  color: #008dff;
  margin-bottom: 16px;
}

/* Responsive Typography */
@media (max-width: 768px) {
  .maintitle,
  .maintitle-blue {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .maintitle,
  .maintitle-blue {
    font-size: 24px;
  }

  .subtitle {
    font-size: 14px;
  }
}
