/* Основные переменные */
:root {
  --primary-color: #013F4E;
  --hover-color: #0BA5BE;
  --white: #ffffff;
}

body {
  margin: 0;
  font-family: "Segoe UI", Roboto, sans-serif;
  background-color: var(--white);
  color: var(--primary-color);
}

.site-header {
  background-color: var(--white);
  border-bottom: 1px solid #eee;
  position: relative;
  z-index: 1000;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  font-size: 2rem;
  color: var(--hover);
}

.logo-text {
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--primary);
}

/* Menu */
.main-nav {
  display: flex;
  gap: 24px;
}

.main-nav a {
  text-decoration: none;
  color: var(--primary);
  font-weight: 500;
  transition: color 0.3s;
}

.main-nav a:hover {
  color: var(--hover);
}

/* Кнопки */
.header-buttons {
  display: flex;
  gap: 12px;
}

.btn-outline,
.btn-filled {
  padding: 8px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

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

.btn-outline:hover {
  background: var(--hover);
  color: #013f4e;
  border-color: var(--hover);
}

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

.btn-filled:hover {
  background: var(--hover);
  border-color: var(--hover);
}

/* Бургер */
.burger {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: var(--primary);
  cursor: pointer;
}

/* Мобильное меню */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  padding: 20px;
  border-top: 1px solid #eee;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-menu a {
  text-decoration: none;
  color: var(--primary);
  font-weight: 500;
}

.mobile-menu .btn-outline,
.mobile-menu .btn-filled {
  text-align: center;
}

/* Адаптив */
@media (max-width: 768px) {
  .main-nav,
  .header-buttons {
    display: none;
  }

  .burger {
    display: block;
  }

  .mobile-menu.show {
    display: flex;
  }

  .logo-text {
    font-size: 1.1rem;
  }
}

.hero {
  padding: 80px 20px;
  background-color: var(--white);
}

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

.hero-left,
.hero-right {
  flex: 1 1 50%;
  padding: 20px;
  box-sizing: border-box;
}

.hero-left h1 span {
  color: var(--primary-color);
}

.subtitle {
  font-size: 25px;
  color: var(--primary-color);
}

.hero-right {
  flex: 1 1 500px;
}

.description {
  font-size: 20px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 25px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  border: 2px solid var(--primary-color);
  border-radius: 999px;
  background-color: transparent;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: var(--hover-color);
  color: var(--white);
  border-color: var(--hover-color);
}

.arrow-icon {
  width: 20px;
  height: 20px;
  margin-left: 10px;
  stroke: currentColor;
}

@media (max-width: 600px) {
  .hero-container {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-left,
  .hero-right {
    flex: 1 1 100%;
    padding: 10px 0;
  }

  .hero-left h1 {
    font-size: 1.9rem;
  }

  .subtitle {
    font-size: 1.1rem;
  }

  .description {
    font-size: 1rem;
  }
}
.services {
  background: #fff;
  padding: 80px 20px;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.service-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
}

.service-card img {
  width: 100%;
  height: auto;
  display: block;
}

.service-text {
  padding: 20px;
}

.service-card h3 {
  margin-top: 0;
  font-size: 1.4rem;
  color: #013F4E;
}

.service-card p {
  font-size: 1rem;
  color: #333;
  margin-top: 8px;
  line-height: 1.5;
}

.service-card.highlight {
  background: #013F4E;
  color: white;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-card.highlight h3 {
  color: white;
  font-size: 1.5rem;
}

.service-card.highlight p {
  color: #e0e0e0;
  font-size: 1rem;
  margin-top: 10px;
}

/* Адаптивность */
@media (max-width: 900px) {
  .services-container {
    grid-template-columns: 1fr;
  }

  .service-card {
    margin-bottom: 20px;
  }
}
.testimonials {
  background-color: #f9f9f9;
  padding: 80px 20px;
  text-align: center;
}

.testimonials-title {
  font-size: 2.2rem;
  color: #013F4E;
  margin-bottom: 50px;
  font-weight: 800;
}

.testimonials-container {
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.testimonial-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
  max-width: 500px;
  padding: 30px;
  text-align: left;
  flex: 1 1 420px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
}

.testimonial-card img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #0BA5BE;
}

.testimonial-card blockquote {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.testimonial-card footer {
  margin-top: 10px;
  font-weight: 600;
  color: #013F4E;
}

/* Адаптив */
@media (max-width: 768px) {
  .testimonials-title {
    font-size: 1.8rem;
  }

  .testimonial-cards {
    flex-direction: column;
    align-items: center;
  }

  .testimonial-card {
    max-width: 100%;
  }
}

.about {
  padding: 80px 20px;
  background-color: #fff;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.about-image {
  flex: 1 1 500px;
  border-radius: 20px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
}

.about-content {
  flex: 1 1 500px;
}

.about-content h2 {
  font-size: 2rem;
  color: #013F4E;
  margin-bottom: 20px;
  font-weight: 800;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 30px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.stat-box {
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 16px;
  text-align: left;
  background-color: #f9f9f9;
  transition: border-color 0.3s, background-color 0.3s;
}

.stat-box:hover {
  border-color: #0BA5BE;
  background-color: #f0fdff;
}

.stat-box strong {
  font-size: 1.3rem;
  color: #013F4E;
  display: block;
  margin-bottom: 5px;
}

.stat-box span {
  font-size: 1rem;
  color: #444;
}

/* Адаптив */
@media (max-width: 900px) {
  .about-container {
    display: flex;
  flex-wrap: wrap;
  gap: 40px; /* ← может дать большой вертикальный пробел */
  }

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

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

  .stat-box {
    text-align: center;
  }
}
.approach {
  padding: 80px 20px;
  background-color: #ffffff;
}

.approach-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.approach-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #013F4E;
  margin-bottom: 16px;
}

.approach-subtitle {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.approach-item img {
  width: 100%;
  border-radius: 16px;
  display: block;
  object-fit: cover;
  height: auto;
  transition: transform 0.3s ease;
}

.approach-item img:hover {
  transform: scale(1.02);
}

/* Адаптив */
@media (max-width: 768px) {
  .approach-grid {
    grid-template-columns: 1fr;
  }

  .approach-title {
    font-size: 1.8rem;
  }

  .approach-subtitle {
    font-size: 1rem;
  }
}
.process-section {
  background-color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.process-container {
  max-width: 1100px;
  margin: 0 auto;
}

.process-title {
  font-size: 2.2rem;
  color: #013F4E;
  font-weight: 800;
  margin-bottom: 16px;
}

.process-subtitle {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 50px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.process-steps {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.process-step {
  background-color: #f9f9f9;
  border-radius: 16px;
  padding: 30px 20px;
  flex: 1 1 300px;
  position: relative;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.process-step:hover {
  border-color: #0BA5BE;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(-5px);
}

.step-number {
  font-size: 3rem;
  font-weight: bold;
  color: rgba(1, 63, 78, 0.07);
  position: absolute;
  top: 20px;
  right: 20px;
  transition: color 0.3s ease;
}

.process-step:hover .step-number {
  color: #0BA5BE;
}

.process-step h3 {
  font-size: 1.2rem;
  color: #013F4E;
  margin-bottom: 12px;
}

.process-step p {
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
}

/* Адаптив */
@media (max-width: 768px) {
  .process-steps {
    flex-direction: column;
  }

  .step-number {
    position: static;
    margin-bottom: 10px;
    font-size: 2.5rem;
    text-align: center;
  }

  .process-step {
    text-align: center;
  }
}
.blog-section {
  background: #ffffff;
  padding: 80px 20px;
}

.blog-container {
  max-width: 1200px;
  margin: 0 auto;
}

.blog-title {
  text-align: center;
  font-size: 2.2rem;
  color: #013F4E;
  font-weight: 800;
  margin-bottom: 50px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

.blog-card {
  border: 1px solid #eee;
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  background-color: #fff;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
  flex-grow: 1;
}

.blog-date {
  font-size: 0.9rem;
  color: #0BA5BE;
  display: block;
  margin-bottom: 8px;
}

.blog-card h3 {
  font-size: 1.2rem;
  color: #013F4E;
  margin-bottom: 10px;
}

.blog-card p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 16px;
}

.blog-link {
  color: #0BA5BE;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-link:hover {
  color: #013F4E;
}

/* Responsive */
@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-grid-1 {
    grid-template-columns: 1fr;
  }
  .blog-card img {
    height: 160px;
  }
}
.business-model {
  background-color: #f9f9f9;
  padding: 80px 20px;
}

.model-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.model-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #013F4E;
  margin-bottom: 20px;
}

.model-intro {
  font-size: 1.1rem;
  color: #444;
  max-width: 750px;
  margin: 0 auto 50px auto;
  line-height: 1.6;
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.model-box {
  background: white;
  border-radius: 16px;
  padding: 30px 25px;
  text-align: left;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, border 0.3s ease;
  border: 2px solid transparent;
}

.model-box:hover {
  transform: translateY(-5px);
  border-color: #0BA5BE;
}

.model-box h3 {
  font-size: 1.3rem;
  color: #013F4E;
  margin-bottom: 10px;
}

.model-box p {
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
}

/* Адаптив */
@media (max-width: 900px) {
  .model-grid {
    grid-template-columns: 1fr;
  }

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

.model-value-section {
  margin-top: 60px;
}

.model-subtitle {
  font-size: 1.8rem;
  color: #013F4E;
  margin-bottom: 40px;
  font-weight: 700;
}

.value-points {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.value-point {
  flex: 1 1 300px;
  background: #ffffff;
  padding: 25px 20px;
  border-radius: 14px;
  border-left: 5px solid #0BA5BE;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease;
}

.value-point:hover {
  transform: translateY(-5px);
}

.value-point h4 {
  color: #013F4E;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.value-point p {
  font-size: 1rem;
  color: #444;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .value-points {
    flex-direction: column;
    gap: 20px;
  }

  .model-subtitle {
    font-size: 1.5rem;
    text-align: center;
  }

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

.model-journey {
  margin-top: 60px;
  background-color: #fff;
  padding: 50px 25px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.journey-title {
  font-size: 1.8rem;
  color: #013F4E;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

.journey-text {
  font-size: 1.05rem;
  color: #444;
  max-width: 800px;
  margin: 0 auto 30px auto;
  text-align: center;
  line-height: 1.6;
}

.journey-steps {
  max-width: 800px;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
}

.journey-steps li {
  font-size: 1rem;
  color: #333;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.journey-steps li strong {
  color: #0BA5BE;
}

/* Responsive */
@media (max-width: 768px) {
  .journey-title {
    font-size: 1.5rem;
  }

  .journey-text,
  .journey-steps {
    text-align: left;
    padding-left: 10px;
    padding-right: 10px;
  }
}
.budget-article {
  background-color: #f0fbfd;
  padding: 80px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.article-container {
  max-width: 1050px;
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
}

.budget-article h1 {
  font-size: 2rem;
  color: #013F4E;
  font-weight: 800;
  margin-bottom: 10px;
  text-align: center;
}

.article-date {
  text-align: center;
  font-size: 0.9rem;
  color: #0BA5BE;
  margin-bottom: 30px;
}

.article-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 30px;
}

.article-step h2 {
  font-size: 1.4rem;
  color: #013F4E;
  margin-top: 30px;
  margin-bottom: 10px;
}

.article-step p,
.article-conclusion p {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 20px;
}

.article-conclusion h2 {
  margin-top: 40px;
  font-size: 1.4rem;
  color: #013F4E;
  margin-bottom: 10px;
}

/* Адаптивность */
@media (max-width: 768px) {
  .article-container {
    padding: 25px;
  }

  .budget-article h1 {
    font-size: 1.6rem;
  }

  .article-step h2,
  .article-conclusion h2 {
    font-size: 1.2rem;
  }

  .article-step p {
    font-size: 1rem;
  }
}

/* Contact Section */
.contact {
    padding: 80px 0;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.05), rgba(44, 62, 80, 0.05));
    z-index: 0;
}

.contact h2 {
    text-align: center;
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 50px;
    position: relative;
    display: block;
    width: 100%;
    z-index: 1;
}

.contact h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.contact-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0px;
}

.contact-form {
    background: var(--white);
    padding:40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.contact-form h3 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 30px;
}

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

.form-group label {
    display: block;
    color: var(--text-color);
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

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

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.checkbox-group label {
    margin: 0;
    font-size: 14px;
}

.contact-info {
    padding: 40px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.contact-info h3 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 30px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-details h4 {
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 5px;
}

.contact-details p {
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.6;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

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

@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 0 20px;
  }

  .contact h2 {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .contact-form,
  .contact-info {
    padding: 30px;
  }

  .contact-form h3,
  .contact-info h3 {
    font-size: 22px;
  }

  .form-control {
    font-size: 15px;
  }

  .contact-details h4 {
    font-size: 16px;
  }

  .contact-details p {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    padding: 0 15px;
  }

  .contact h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .contact-form,
  .contact-info {
    padding: 25px;
  }

  .contact-form h3,
  .contact-info h3 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .contact-method {
    flex-direction: row;
    align-items: flex-start;
  }

  .contact-icon {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .contact-details h4 {
    font-size: 15px;
  }

  .contact-details p {
    font-size: 14px;
  }

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

@media (max-width: 480px) {
  .contact h2 {
    font-size: 24px;
  }

  .contact-form,
  .contact-form-1
  .contact-info {
    padding: 20px;
  }

  .form-control {
    padding: 10px;
    font-size: 14px;
  }

  .checkbox-group label {
    font-size: 13px;
  }

  .contact-method {
    flex-direction: column;
    gap: 10px;
  }

  .contact-icon {
    margin-bottom: 10px;
    margin-right: 0;
  }

  .contact-details h4 {
    font-size: 14px;
  }

  .contact-details p {
    font-size: 13px;
  }
}
.privacy-policy {
  padding: 60px 20px;
  background: #f0fbfd;
  font-family: 'Segoe UI', sans-serif;
}

.privacy-policy .container {
  max-width: 1100px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.privacy-policy h1 {
  font-size: 2rem;
  color: #013F4E;
  margin-bottom: 20px;
}

.privacy-policy h2 {
  font-size: 1.3rem;
  color: #013F4E;
  margin-top: 30px;
  margin-bottom: 10px;
}

.privacy-policy p,
.privacy-policy li {
  font-size: 1rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 10px;
}

.privacy-policy ul {
  padding-left: 20px;
}
.signup-section {
  background-color: #f0fbfd;
  padding: 80px 20px;
  text-align: center;
}

.signup-section .container {
  max-width: 650px;
  margin: 0 auto;
  background: #fff;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.signup-section .form-title {
  font-size: 2rem;
  color: #013F4E;
  margin-bottom: 10px;
  font-weight: 800;
}

.signup-section .form-subtitle {
  font-size: 1rem;
  color: #5f6c7b;
  margin-bottom: 30px;
  line-height: 1.6;
}

.signup-form .form-control {
  width: 100%;
  padding: 14px;
  margin-bottom: 20px;
  font-size: 1rem;
  border-radius: 8px;
  border: 1px solid #ddd;
  transition: 0.3s;
}

.signup-form .form-control:focus {
  outline: none;
  border-color: #0BA5BE;
  box-shadow: 0 0 0 3px rgba(11, 165, 190, 0.1);
}

.signup-form .btn {
  background-color: #013F4E;
  color: #fff;
  padding: 14px;
  width: 100%;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.signup-form .btn:hover {
  background-color: #0BA5BE;
}
