@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #333333;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  color: #333333;
  margin-bottom: 0.5rem;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
}
p:last-child {
  margin-bottom: 0;
}

a {
  color: #667eea;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: rgb(57.1551724138, 88.1896551724, 227.8448275862);
}

ul, ol {
  list-style: none;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input, button, textarea, select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea {
  width: 100%;
  padding: 0.5rem 1rem;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  font-size: 1rem;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
input:focus, textarea:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}
input::placeholder, textarea::placeholder {
  color: #6c757d;
}

label {
  display: block;
  font-weight: 600;
  color: #333333;
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  appearance: textfield;
  -moz-appearance: textfield;
}

table {
  border-collapse: collapse;
  width: 100%;
}

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

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

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

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

.text-muted {
  color: #6c757d;
}

.hidden {
  display: none !important;
}

.visible {
  display: block !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

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

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

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

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

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #ffffff;
}
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  background: #ffffff;
  color: #667eea;
  border: 2px solid #667eea;
}
.btn-secondary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.btn-secondary:hover:not(:disabled) {
  background: rgba(102, 126, 234, 0.1);
}

.btn-danger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  background: #dc3545;
  color: #ffffff;
}
.btn-danger:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.btn-danger:hover:not(:disabled) {
  background: rgb(189.2151898734, 32.7848101266, 47.7721518987);
}

.btn-success {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  background: #28a745;
  color: #ffffff;
}
.btn-success:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.btn-success:hover:not(:disabled) {
  background: rgb(30.1449275362, 125.8550724638, 52);
}

.btn-small {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.25rem;
}

.loading {
  opacity: 0.6;
  pointer-events: none;
}

.spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid #dee2e6;
  border-top-color: #667eea;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.message {
  padding: 1rem 1.5rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-weight: 500;
}
.message.success-message {
  background: rgba(40, 167, 69, 0.1);
  color: #28a745;
  border: 1px solid rgba(40, 167, 69, 0.3);
  border-left: 4px solid #28a745;
}
.message.error-message {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
  border: 1px solid rgba(220, 53, 69, 0.3);
  border-left: 4px solid #dc3545;
}
.message.warning-message {
  background: rgba(255, 193, 7, 0.1);
  color: #a07800;
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-left: 4px solid #ffc107;
}
.message.info-message {
  background: rgba(14, 165, 233, 0.1);
  color: #0ea5e9;
  border: 1px solid rgba(14, 165, 233, 0.3);
  border-left: 4px solid #0ea5e9;
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: 25px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.badge.badge-primary {
  background: rgba(102, 126, 234, 0.1);
  color: #667eea;
}
.badge.badge-success {
  background: rgba(40, 167, 69, 0.1);
  color: #28a745;
}
.badge.badge-danger {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
}
.badge.badge-warning {
  background: rgba(255, 193, 7, 0.1);
  color: #a07800;
}

header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 2rem;
  font-weight: 700;
  color: #667eea;
  text-decoration: none;
}
.logo:hover {
  color: rgb(57.1551724138, 88.1896551724, 227.8448275862);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: #333333;
  font-weight: 500;
  transition: color 0.3s ease;
  cursor: pointer;
}
.nav-links a:hover, .nav-links a.active {
  color: #667eea;
}
.nav-links .portal-link {
  padding: 0.25rem 1rem;
  border-radius: 8px;
  background: rgba(102, 126, 234, 0.1);
}
.nav-links .portal-link:hover {
  background: rgba(102, 126, 234, 0.2);
}

.nav-separator {
  width: 1px;
  height: 24px;
  background: rgba(51, 51, 51, 0.2);
  margin: 0 0.5rem;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}
.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #333333;
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}
.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

main {
  margin-top: 80px;
  min-height: calc(100vh - 80px);
  padding: 2rem 0;
  padding-top: 3rem;
}

.page {
  display: none !important;
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin: 2rem 0;
  animation: fadeIn 0.5s ease ease-in;
}
.page.active {
  display: block !important;
}

.page-header {
  text-align: center;
  margin-bottom: 3rem;
  margin-top: 2rem;
}
.page-header h1 {
  color: #667eea;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.page-header .page-subtitle {
  color: #6c757d;
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto;
}

.section-block {
  margin: 3rem 0;
  margin-top: 3rem;
}
.section-block h2 {
  color: #764ba2;
  text-align: center;
  margin-bottom: 2rem;
  margin-top: 3rem;
}

.hero {
  text-align: center;
  padding: 3rem 0;
  background-image: url("/assets/images/background.jpg");
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  margin-bottom: 3rem;
}
.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero .business-motto {
  max-width: 600px;
  margin: 0 auto 2rem;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 1rem;
  border-radius: 8px;
}
.hero .business-motto p {
  font-size: 1.25rem;
  color: #333333;
  margin: 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: linear-gradient(135deg, #f8f9ff, #e8f2ff);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-color: #667eea;
}
.feature-card .feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}
.feature-card h3 {
  color: #667eea;
  margin-bottom: 0.5rem;
}
.feature-card p {
  color: #6c757d;
  margin: 0;
}

.cta-section {
  text-align: center;
  padding: 3rem;
  background: linear-gradient(135deg, #f8f9ff, #e8f2ff);
  border-radius: 12px;
}
.cta-section h2 {
  margin-bottom: 0.5rem;
}
.cta-section p {
  color: #6c757d;
  margin-bottom: 2rem;
}

.portal-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.about-content {
  max-width: 800px;
  margin: 0 auto 3rem;
}
.about-content h2 {
  color: #667eea;
  text-align: left;
  margin-bottom: 1rem;
}
.about-content p {
  color: #333333;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-story,
.about-mission {
  margin-bottom: 3rem;
}

.about-values {
  margin-bottom: 3rem;
}
.about-values h2 {
  text-align: center;
  color: #764ba2;
  margin-bottom: 2rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.value-item {
  text-align: center;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 2px solid rgba(102, 126, 234, 0.1);
}
.value-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-color: #667eea;
}
.value-item .value-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
}
.value-item h4 {
  color: #667eea;
  margin-bottom: 0.5rem;
}
.value-item p {
  color: #6c757d;
  font-size: 0.875rem;
  margin: 0;
}

.about-stats h2 {
  text-align: center;
  color: #764ba2;
  margin-bottom: 2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item .stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #667eea;
  margin-bottom: 0.25rem;
}
.stat-item .stat-label {
  color: #6c757d;
  font-size: 0.875rem;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.pricing-card {
  background: #ffffff;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}
.pricing-card:hover {
  border-color: #667eea;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.pricing-card.featured {
  border-color: #667eea;
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.pricing-card.featured .plan-badge {
  display: block;
}
.pricing-card .plan-badge {
  display: none;
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #667eea;
  color: #ffffff;
  padding: 0.25rem 1rem;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 600;
}
.pricing-card .plan-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e9ecef;
}
.pricing-card .plan-header h3 {
  color: #333333;
  margin-bottom: 0.5rem;
}
.pricing-card .price .amount {
  font-size: 3rem;
  font-weight: 700;
  color: #667eea;
}
.pricing-card .price .period {
  color: #6c757d;
  font-size: 1rem;
}
.pricing-card .plan-features {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
}
.pricing-card .plan-features li {
  padding: 0.5rem 0;
  color: #333333;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pricing-card .plan-features li .check {
  color: #28a745;
  font-weight: 700;
}
.pricing-card .btn {
  width: 100%;
}

.pricing-faq {
  max-width: 900px;
  margin: 0 auto;
}
.pricing-faq h2 {
  text-align: center;
  color: #764ba2;
  margin-bottom: 2rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.faq-item h4 {
  color: #667eea;
  margin-bottom: 0.5rem;
}
.faq-item p {
  color: #6c757d;
  margin: 0;
}

.contact-content {
  max-width: 1000px;
  margin: 0 auto;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-card {
  background: linear-gradient(135deg, #f8f9ff, #e8f2ff);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}
.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.contact-card .contact-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
}
.contact-card h3 {
  color: #667eea;
  margin-bottom: 0.5rem;
}
.contact-card p {
  color: #6c757d;
  margin-bottom: 1rem;
}
.contact-card .contact-link {
  color: #667eea;
  font-weight: 600;
  text-decoration: none;
}
.contact-card .contact-link:hover {
  color: #764ba2;
}
.contact-card .contact-address {
  color: #333333;
  line-height: 1.6;
}

.contact-form-section {
  margin-bottom: 3rem;
}
.contact-form-section h2 {
  color: #764ba2;
  margin-bottom: 2rem;
}

.contact-form {
  max-width: 700px;
}
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 768px) {
  .contact-form .form-row {
    grid-template-columns: 1fr;
  }
}
.contact-form .form-group {
  margin-bottom: 1rem;
}
.contact-form .form-group label {
  display: block;
  font-weight: 600;
  color: #333333;
  margin-bottom: 0.25rem;
}
.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
  width: 100%;
  padding: 0.5rem 1rem;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}
.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}
.contact-form .form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.business-hours {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
}
.business-hours h3 {
  color: #667eea;
  margin-bottom: 1rem;
}
.business-hours ul {
  list-style: none;
}
.business-hours ul li {
  padding: 0.25rem 0;
  color: #333333;
}
.business-hours ul li span {
  font-weight: 600;
  margin-right: 0.5rem;
}
.business-hours .hours-note {
  margin-top: 1rem;
  color: #6c757d;
  font-size: 0.875rem;
  font-style: italic;
}

.site-footer {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: #ffffff;
  padding: 3rem 0 2rem;
  margin-top: 3rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h3, .footer-section h4 {
  color: #ffffff;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}
.footer-section ul {
  list-style: none;
}
.footer-section li {
  margin-bottom: 0.5rem;
}
.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-section a:hover {
  color: #ffffff;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-contact .contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
}
.footer-contact .contact-info li .contact-icon {
  flex-shrink: 0;
}

.footer-bottom {
  padding-top: 1rem;
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-legal p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  font-size: 0.875rem;
}

.legal-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.legal-links .legal-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}
.legal-links .legal-link:hover {
  color: #ffffff;
}
.legal-links .separator {
  color: rgba(255, 255, 255, 0.3);
}

.landing-message {
  padding: 1rem 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 500;
}
.landing-message.success-message {
  background: rgba(40, 167, 69, 0.1);
  color: #28a745;
  border: 1px solid rgba(40, 167, 69, 0.3);
}
.landing-message.error-message {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
  border: 1px solid rgba(220, 53, 69, 0.3);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.25rem;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    padding: 1rem 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 8px 8px;
    gap: 0;
  }
  .nav-links.active {
    display: flex;
  }
  .nav-links li {
    margin: 0;
    text-align: center;
  }
  .nav-links a {
    display: block;
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
  }
  .nav-links .nav-separator {
    display: none;
  }
  .nav-links .portal-link {
    background: rgba(102, 126, 234, 0.1);
    margin: 0.5rem 1rem;
    border-radius: 8px;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .hero {
    padding: 2rem;
    margin: 1.5rem 1.5rem;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .footer-contact .contact-info li {
    justify-content: center;
  }
  .footer-legal {
    flex-direction: column;
    text-align: center;
  }
  .pricing-card.featured {
    transform: none;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .page {
    padding: 1.5rem;
    margin: 1rem 0;
  }
  .hero {
    padding: 1.5rem;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero .business-motto p {
    font-size: 1rem;
  }
  .features-grid,
  .values-grid,
  .pricing-cards {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .portal-buttons {
    flex-direction: column;
  }
  .portal-buttons .btn {
    width: 100%;
  }
}

/*# sourceMappingURL=styles.css.map */
