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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f4f4f4;
}

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

header {
  background-color: #2c3e50;
  color: #fff;
  padding: 1rem 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.logo:hover {
  color: #3498db;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #fff;
  position: relative;
  transition: background-color 0.3s;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 3px;
  background-color: #fff;
  left: 0;
  transition: transform 0.3s;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  top: 8px;
}

.nav-toggle.active .hamburger {
  background-color: transparent;
}

.nav-toggle.active .hamburger::before {
  transform: rotate(45deg) translate(5px, 6px);
}

.nav-toggle.active .hamburger::after {
  transform: rotate(-45deg) translate(5px, -6px);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links li {
  margin: 0;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 1rem;
}

.nav-links a:hover {
  color: #3498db;
}

main {
  min-height: calc(100vh - 400px);
  padding: 2rem 0;
}

footer {
  background-color: #2c3e50;
  color: #fff;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

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

.footer-section {
  padding: 0;
}

.footer-section h3 {
  margin-bottom: 1rem;
  color: #3498db;
  font-size: 1.5rem;
}

.footer-section h4 {
  margin-bottom: 1rem;
  color: #fff;
  font-size: 1.2rem;
}

.footer-section p {
  color: #ecf0f1;
  line-height: 1.8;
  margin-bottom: 1rem;
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #ecf0f1;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #3498db;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  flex-wrap: wrap;
}

.newsletter-input {
  width: 180px;
  padding: 0.5rem;
  border: none;
  border-radius: 5px;
  flex-shrink: 0;
}

.newsletter-form .btn {
  padding: 0.5rem 1rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.newsletter-error {
  color: #e74c3c;
  font-size: 0.8rem;
  flex-basis: 100%;
  margin-top: 0.5rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #34495e;
  color: #bdc3c7;
}

.footer-brand {
  margin-bottom: 1rem;
  color: #3498db;
  font-size: 1.5rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background-color: #3498db;
  color: #fff;
}

.btn-primary:hover {
  background-color: #2980b9;
}

.btn-secondary {
  background-color: #95a5a6;
  color: #fff;
}

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

.btn-danger {
  background-color: #e74c3c;
  color: #fff;
}

.btn-danger:hover {
  background-color: #c0392b;
}

.btn-full {
  width: 100%;
}

.alert {
  padding: 1rem;
  margin: 1rem 0;
  border-radius: 5px;
  transition: opacity 0.3s;
}

.alert-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert-error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.alert-info {
  background-color: #d1ecf1;
  color: #0c5460;
  border: 1px solid #bee5eb;
}

.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  padding: 4rem 2rem;
  text-align: center;
  border-radius: 10px;
  margin-bottom: 3rem;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: normal;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.hero .btn {
  font-size: 1.1rem;
  padding: 1rem 2rem;
}

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

.hero-image img {
  max-width: 100%;
  border-radius: 10px;
  margin-top: 2rem;
}

.features {
  padding: 3rem 0;
  text-align: center;
}

.features h2 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 2rem;
}

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

.feature-card {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.feature-card h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.feature-card p {
  color: #666;
  line-height: 1.8;
}

.cta-section {
  background-color: #3498db;
  color: #fff;
  padding: 3rem;
  border-radius: 10px;
  text-align: center;
  margin: 3rem 0;
}

.cta-section h2 {
  margin-bottom: 1rem;
  font-size: 2rem;
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.page-header {
  text-align: center;
  margin: 0 auto 3rem;
  max-width: 800px;
}

.page-header h1 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.page-header p {
  font-size: 1.1rem;
  color: #666;
}

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

.package-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.package-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.package-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.package-card-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  padding: 2rem;
  text-align: center;
}

.package-card-header h2 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.package-price {
  font-size: 2.5rem;
  font-weight: bold;
}

.package-card-body {
  padding: 1.5rem 2rem;
}

.package-description {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.package-features {
  list-style: none;
  margin-bottom: 2rem;
}

.package-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
  color: #555;
}

.package-features li:last-child {
  border-bottom: none;
}

.package-card-footer {
  padding: 0 2rem 2rem;
  text-align: center;
}

.package-detail {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.package-detail-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  padding: 3rem;
  text-align: center;
}

.package-detail-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.package-detail-price {
  font-size: 3rem;
  font-weight: bold;
}

.package-detail-body {
  padding: 3rem;
}

.package-detail-description {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.package-detail-features {
  list-style: none;
  margin-bottom: 2rem;
}

.package-detail-features li {
  padding: 1rem;
  border-bottom: 1px solid #eee;
  color: #555;
  font-size: 1.1rem;
}

.package-detail-features li:last-child {
  border-bottom: none;
}

.package-detail-section {
  padding: 2rem 0;
}

.package-detail-card {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.package-detail-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.package-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.package-detail-body {
  padding: 2rem 3rem 3rem;
}

.package-detail-category {
  color: #888;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.package-detail-title {
  color: #2c3e50;
  font-size: 2rem;
  margin: 0.5rem 0;
}

.package-detail-price {
  color: #3498db;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.package-detail-description {
  color: #666;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.package-meta {
  background: #f8f9fa;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.meta-item {
  padding: 0.5rem 0;
  color: #555;
}

.package-features-section {
  margin-bottom: 2rem;
}

.package-features-section h2 {
  color: #2c3e50;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.package-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.package-features-list li {
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  border-bottom: 1px solid #eee;
  color: #555;
  position: relative;
}

.package-features-list li:before {
  content: "✓";
  color: #27ae60;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.package-features-list li:last-child {
  border-bottom: none;
}

.package-detail-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

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

.package-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.form-container {
  max-width: 500px;
  margin: 2rem auto;
  background: #fff;
  padding: 3rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-container h1 {
  text-align: center;
  color: #2c3e50;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #2c3e50;
  font-weight: bold;
}

.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-control:focus {
  outline: none;
  border-color: #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

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

.form-text {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: #666;
}

.form-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.form-actions .btn {
  flex: 1;
}

.form-links {
  text-align: center;
  margin-top: 1.5rem;
}

.form-links a {
  color: #3498db;
  text-decoration: none;
}

.form-links a:hover {
  text-decoration: underline;
}

.checkout-form {
  max-width: 600px;
  margin: 0 auto;
}

.checkout-page {
  padding: 2rem 0;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.order-summary {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 2rem;
}

.order-summary h2 {
  color: #2c3e50;
  margin-bottom: 1rem;
}

.summary-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
}

.summary-card h3 {
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.package-category {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.package-details {
  margin: 1rem 0;
}

.detail-item {
  padding: 0.5rem 0;
  color: #555;
}

.price-breakdown {
  border-top: 1px solid #eee;
  margin-top: 1rem;
  padding-top: 1rem;
}

.price-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
}

.price-row.total {
  border-top: 2px solid #2c3e50;
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  font-size: 1.2rem;
}

.payment-form {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.payment-form h2 {
  color: #2c3e50;
  margin-bottom: 1rem;
}

.payment-info {
  margin-top: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 5px;
  font-size: 0.9rem;
  color: #666;
}

.order-item {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid #ddd;
}

.order-item:last-child {
  border-bottom: none;
  font-weight: bold;
  font-size: 1.2rem;
}

.profile-form {
  max-width: 600px;
  margin: 0 auto;
}

.profile-header {
  text-align: center;
  margin-bottom: 2rem;
}

.profile-header h1 {
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.profile-info {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 10px;
  margin-bottom: 2rem;
}

.profile-info p {
  margin: 0.5rem 0;
  color: #555;
}

.profile-actions {
  margin-top: 2rem;
  text-align: center;
}

.order-history-page {
  padding: 2rem 0;
}

.orders-list {
  max-width: 800px;
  margin: 0 auto;
}

.order-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.order-header {
  background: #2c3e50;
  color: #fff;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.order-header h3 {
  margin: 0;
}

.order-status {
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.875rem;
}

.status-completed {
  background-color: #27ae60;
}

.status-pending {
  background-color: #f39c12;
}

.status-cancelled {
  background-color: #e74c3c;
}

.order-details {
  padding: 1.5rem;
}

.detail-row {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

.detail-row:last-child {
  border-bottom: none;
}

.no-orders {
  text-align: center;
  padding: 3rem;
  background: #fff;
  border-radius: 10px;
}

.back-link {
  text-align: center;
  margin-top: 2rem;
}

.success-page,
.cancel-page {
  text-align: center;
  padding: 3rem 0;
}

.success-icon,
.cancel-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.success-icon {
  color: #27ae60;
}

.cancel-icon {
  color: #e74c3c;
}

.error-message {
  color: #e74c3c;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.success-message {
  color: #27ae60;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.helptext {
  display: block;
  font-size: 0.875rem;
  color: #666;
  margin-top: 0.25rem;
}

input[type="checkbox"] {
  width: auto;
  margin-right: 0.5rem;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #3498db;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
  z-index: 1000;
  display: none;
}

.back-to-top:hover {
  background-color: #2980b9;
  transform: translateY(-5px);
}

.messages {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.message {
  padding: 1rem;
  margin: 1rem 0;
  border-radius: 5px;
}

.message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.message.warning {
  background-color: #fff3cd;
  color: #856404;
  border: 1px solid #ffeeba;
}

.message.info {
  background-color: #d1ecf1;
  color: #0c5460;
  border: 1px solid #bee5eb;
}

.profile-page {
  padding: 2rem 0;
}

.profile-page .profile-header {
  margin-bottom: 2rem;
}

.profile-page .profile-header h1 {
  color: #2c3e50;
  font-size: 2rem;
}

.profile-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.profile-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.profile-card-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  padding: 1.25rem 2rem;
}

.profile-card-header h2 {
  margin: 0;
  font-size: 1.25rem;
}

.profile-card-body {
  padding: 2rem;
}

.info-item {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
}

.info-item:last-child {
  border-bottom: none;
}

.info-label {
  color: #888;
  font-weight: 500;
}

.info-value {
  color: #2c3e50;
  font-weight: 600;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.profile-card .form-group {
  margin-bottom: 1.25rem;
}

.profile-card .form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #2c3e50;
  font-weight: 600;
  font-size: 0.9rem;
}

.profile-card .form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.profile-card .form-control:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.profile-card .btn {
  margin-top: 1rem;
}

.packages-header {
  margin-bottom: 1rem;
}

.packages-header h1 {
  color: #2c3e50;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.packages-header p {
  color: #666;
}

.packages-filter {
  margin-bottom: 2rem;
}

.filter-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.5rem 1.25rem;
  background-color: #fff;
  color: #2c3e50;
  text-decoration: none;
  border-radius: 25px;
  border: 2px solid #ddd;
  transition: all 0.3s;
  font-size: 0.95rem;
}

.filter-btn:hover {
  border-color: #3498db;
  color: #3498db;
}

.filter-btn.active {
  background-color: #3498db;
  color: #fff;
  border-color: #3498db;
}

.logout-text {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #666;
}

.form-intro {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #666;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.checkbox-group label {
  display: inline;
  font-weight: normal;
  margin-bottom: 0;
}

.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;
}

.package-card-title {
  font-size: 1.25rem;
  margin: 0.5rem 0;
  color: #2c3e50;
}

.error-page-container {
  text-align: center;
  padding: 4rem 2rem;
  max-width: 600px;
  margin: 0 auto;
}

.error-icon {
  font-size: 8rem;
  font-weight: bold;
  color: #3498db;
  line-height: 1;
  margin-bottom: 1rem;
}

.error-page-container h1 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.error-description {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
}

.error-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    padding: 1rem;
    gap: 0;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin: 0;
    text-align: center;
  }

  .nav-links a {
    display: block;
    padding: 0.75rem 1rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero h2 {
    font-size: 1.2rem;
  }

  .hero p {
    font-size: 1rem;
  }

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

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

  .package-detail-header h1 {
    font-size: 2rem;
  }

  .package-detail-price {
    font-size: 2rem;
  }

  .package-actions {
    flex-direction: column;
  }

  .package-detail-body {
    padding: 1.5rem;
  }

  .package-detail-title {
    font-size: 1.5rem;
  }

  .package-detail-actions {
    flex-direction: column;
  }

  .form-container {
    padding: 2rem 1.5rem;
  }

  .form-actions {
    flex-direction: column;
  }

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

  .order-summary {
    padding: 1.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .profile-card-body {
    padding: 1.5rem;
  }

  .info-item {
    flex-direction: column;
    gap: 0.25rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}