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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  height: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #ffffff;
  overflow-x: hidden;
  width: 100%;
  min-height: 100vh;
  padding-top: 4rem;
}

@media (max-width: 767px) {
  body {
    padding-top: 0.5rem;
  }
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
  overflow-x: hidden;
}

@media (min-width: 640px) {
  .container {
    padding: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  width: 100%;
  max-width: 300px;
}

@media (max-width: 500px) {
  .btn {
    width: 100%;
    max-width: 250px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    justify-content: center;
  }
}

@media (min-width: 640px) {
  .btn {
    width: auto;
  }
}

.btn-primary {
  background-color: #fbbf24;
  color: #000000;
}

.btn-primary:hover {
  background-color: #f59e0b;
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.btn-outline:hover {
  background-color: #ffffff;
  color: #000000;
}

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

/* Navigation */
.navbar {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #f3f4f6;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  width: 100%;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4rem;
  width: 100%;
  overflow-x: hidden;
  position: relative;
}

@media (max-width: 767px) {
  .nav-container {
    height: 3rem;
    padding: 0 0.75rem;
  }
}

@media (min-width: 640px) {
  .nav-container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .nav-container {
    padding: 0 2rem;
  }
}

.nav-brand {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #000000;
}

.nav-brand i {
  height: 2.5rem;
  width: 2.5rem;
  color: #fbbf24;
  margin-right: 0.5rem;
}

@media (max-width: 767px) {
  .nav-brand {
    font-size: 1.25rem;
  }

  .nav-brand i {
    height: 2rem;
    width: 2rem;
    margin-right: 0.375rem;
  }
}

.nav-menu {
  display: none;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav-menu {
    display: flex;
  }
}

.nav-link {
  background: none;
  border: none;
  color: #374151;
  font-size: 1rem;
  cursor: pointer;
  transition: color 0.3s ease;
  padding: 0.5rem;
}

.nav-link:hover,
.nav-link.active {
  color: #fbbf24;
  font-weight: 600;
}

.nav-cta {
  display: none;
}

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

.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: #374151;
  transition: color 0.3s ease;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu-btn:hover {
  color: #fbbf24;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background-color: currentColor;
  transition: all 0.3s ease;
}

.mobile-menu {
  display: none;
  padding: 1rem 0;
  border-top: 1px solid #e5e7eb;
  background-color: #ffffff;
  width: 100%;
  max-width: 100%;
  position: fixed;
  top: 4rem;
  left: 0;
  right: 0;
  z-index: 9999;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  min-height: auto;
  max-height: 80vh;
  overflow-y: auto;
  box-sizing: border-box;
}

@media (max-width: 767px) {
  .mobile-menu {
    top: 3rem;
    padding: 0.75rem 0;
  }
}

.mobile-menu.active {
  display: block;
}

.mobile-menu .nav-link {
  display: block;
  width: calc(100% - 2rem);
  max-width: calc(100vw - 2rem);
  text-align: left;
  padding: 0.75rem 1rem;
  border-radius: 0.375rem;
  margin: 0 1rem 0.5rem 1rem;
  background: none;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #374151;
  box-sizing: border-box;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.mobile-menu .nav-link:hover,
.mobile-menu .nav-link.active {
  background-color: #fbbf24;
  color: #000000;
}

.mobile-cta {
  margin: 0.5rem 1rem;
  width: calc(100% - 2rem);
  max-width: calc(100vw - 2rem);
  box-sizing: border-box;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-background {
  position: absolute;
  inset: 0;
  background-image: url("assets/hero-kitchen.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-background::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
  overflow-x: hidden;
}

@media (max-width: 500px) {
  .hero-content {
    padding: 0 0.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  padding: 0 1rem;
  word-wrap: break-word;
  text-align: center;
}

@media (max-width: 500px) {
  .hero h1 {
    font-size: 2rem;
    padding: 0 0.5rem;
    margin-bottom: 1rem;
    text-align: center;
    width: 100%;
  }
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 4.5rem;
    padding: 0;
  }
}

.hero p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  padding: 0 1rem;
  word-wrap: break-word;
  text-align: center;
}

@media (max-width: 500px) {
  .hero p {
    font-size: 1rem;
    padding: 0 0.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    width: 100%;
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  .hero p {
    font-size: 1.5rem;
    padding: 0;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  padding: 0 1rem;
  width: 100%;
  align-items: center;
}

@media (max-width: 500px) {
  .hero-buttons {
    padding: 0 0.5rem;
    gap: 0.75rem;
    width: 100%;
    align-items: center;
  }
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    padding: 0;
  }
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .section-header h2 {
    font-size: 3rem;
  }
}

.section-header p {
  font-size: 1.25rem;
  color: #6b7280;
  max-width: 48rem;
  margin: 0 auto;
}

/* Services Section */
.services {
  padding: 6rem 0;
  background-color: #ffffff;
}

.services-grid {
  display: grid;
  gap: 2rem;
}

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

.service-card {
  text-align: center;
  transition: transform 0.3s ease;
}

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

.service-icon {
  width: 6rem !important;
  height: 6rem !important;
  background-color: #fbbf24;
  border-radius: 50%;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 auto 1.5rem;
  transition: transform 0.3s ease;
  text-align: center !important;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-icon i {
  height: 3rem !important;
  width: 3rem !important;
  color: #000000;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 1rem;
}

.service-card p {
  color: #6b7280;
  line-height: 1.6;
}

/* Work Section */
.work {
  padding: 6rem 0;
  background-color: #f9fafb;
}

.work-grid {
  display: grid;
  gap: 2rem;
}

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

@media (min-width: 1024px) {
  .work-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.work-card {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.work-card:hover {
  transform: translateY(-5px);
}

.work-image {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
}

.work-image img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.work-card:hover .work-image img {
  transform: scale(1.05);
}

.work-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #000000;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.work-card p {
  color: #6b7280;
}

/* Testimonials Section */
.testimonials {
  padding: 6rem 0;
  background-color: #ffffff;
}

.testimonials-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

.stars {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.stars i {
  height: 1.25rem;
  width: 1.25rem;
  color: #fbbf24;
  margin: 0 0.125rem;
}

.testimonial-card p {
  color: #6b7280;
  margin-bottom: 1.5rem;
  font-style: italic;
  line-height: 1.6;
}

.testimonial-author strong {
  display: block;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.25rem;
}

.testimonial-author span {
  color: #9ca3af;
}

/* Contact Section */
.contact {
  padding: 6rem 0;
  background-color: #f9fafb;
}

.contact-form {
  max-width: 42rem;
  margin: 0 auto 4rem;
}

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

.form-group input {
  width: 100%;
  font-size: 1.125rem;
  padding: 1.5rem 0;
  border: none;
  border-bottom: 2px solid #d1d5db;
  border-radius: 0;
  background-color: transparent;
  transition: border-color 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-bottom-color: #fbbf24;
}

.form-group input::placeholder {
  color: #9ca3af;
}

.form-submit {
  text-align: center;
  margin-top: 3rem;
}

.contact-info {
  display: grid;
  gap: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .contact-info {
    grid-template-columns: repeat(3, 1fr);
  }
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-icon {
  width: 5rem !important;
  height: 5rem !important;
  background-color: #fbbf24;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.contact-icon:hover {
  transform: scale(1.1);
}

.contact-icon i {
  height: 2.5rem !important;
  width: 2.5rem !important;
  color: #000000;
}

.contact-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.5rem;
}

.contact-item p {
  color: #6b7280;
}

/* Footer */
.footer {
  background-color: #000000;
  color: #ffffff;
  padding: 3rem 0;
}

.footer-content {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-logo i {
  height: 2.5rem;
  width: 2.5rem;
  color: #fbbf24;
  margin-right: 0.5rem;
}

.footer-brand p {
  color: #9ca3af;
  line-height: 1.6;
}

.footer-links h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  color: #9ca3af;
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 2rem;
  text-align: center;
  color: #9ca3af;
}

/* Scroll to Top Button */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: #fbbf24;
  color: #000000;
  padding: 0.75rem;
  border: none;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background-color: #f59e0b;
  transform: translateY(-5px) scale(1.1);
}

.scroll-top i {
  height: 1.5rem;
  width: 1.5rem;
}

/* Responsive Design */
@media (max-width: 767px) {
  .hero h1 {
    font-size: 2.5rem;
  }

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

  .section-header h2 {
    font-size: 2rem;
  }

  .section-header p {
    font-size: 1.125rem;
  }

  .services,
  .work,
  .testimonials,
  .contact {
    padding: 4rem 0;
  }

  .container {
    padding: 0 1rem;
  }

  .mobile-menu {
    position: fixed;
    top: 3rem;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    background-color: #ffffff !important;
    border: 1px solid #e5e7eb;
    max-height: 80vh;
    overflow-y: auto;
  }

  /* Debug mobile menu visibility */
  .mobile-menu.active {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    min-height: 200px !important;
  }

  .mobile-menu.active .nav-link {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  /* Ensure no horizontal scroll and fix vertical scrollbars */
  .hero,
  .services,
  .work,
  .testimonials,
  .contact,
  .footer {
    width: 100%;
    overflow-x: hidden;
    overflow-y: visible;
  }

  /* Remove unwanted scrollbars */
  html,
  body {
    overflow-x: hidden;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
  }

  html::-webkit-scrollbar,
  body::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
  }
}

/* Icon Size Overrides */
.service-icon i.fas,
.service-icon i.far,
.service-icon i.fab {
  font-size: 3rem !important;
  height: 3rem !important;
  width: 3rem !important;
  line-height: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}

.contact-icon i.fas,
.contact-icon i.far,
.contact-icon i.fab {
  font-size: 2.5rem !important;
  height: 2.5rem !important;
  width: 2.5rem !important;
  line-height: 1 !important;
}

.nav-brand i.fas,
.nav-brand i.far,
.nav-brand i.fab {
  font-size: 2.5rem !important;
  height: 2.5rem !important;
  width: 2.5rem !important;
  line-height: 1 !important;
}

.footer-logo i.fas,
.footer-logo i.far,
.footer-logo i.fab {
  font-size: 2.5rem !important;
  height: 2.5rem !important;
  width: 2.5rem !important;
  line-height: 1 !important;
}

/* Utility Classes */
.hidden {
  display: none !important;
}

@media (min-width: 768px) {
  .md\:hidden {
    display: none !important;
  }
}

/* Contact Form Enhancements */
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-family: inherit;
  resize: vertical;
  min-height: 6rem;
  transition: border-color 0.3s ease;
}

.contact-form textarea:focus {
  outline: none;
  border-color: #fbbf24;
}

/* Form validation styling */
.contact-form input.error,
.contact-form textarea.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.contact-form input.error:focus,
.contact-form textarea.error:focus {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
}

/* Success and Error Messages */
.success-message,
.error-message {
  text-align: center;
  padding: 2rem;
  border-radius: 0.5rem;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.success-message {
  background-color: #d1fae5;
  border: 2px solid #10b981;
  color: #065f46;
}

.error-message {
  background-color: #fee2e2;
  border: 2px solid #ef4444;
  color: #991b1b;
}

.success-message i,
.error-message i {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.success-message h3,
.error-message h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
}

.success-message p,
.error-message p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
}

/* Thank You Page Styles */
.thank-you-section {
  padding: 8rem 0 6rem;
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.thank-you-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.thank-you-icon {
  margin-bottom: 2rem;
}

.thank-you-icon i {
  font-size: 5rem;
  color: #10b981;
  animation: bounceIn 0.8s ease-out;
}

@keyframes bounceIn {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }
  50% {
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.thank-you-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: #000000;
  margin-bottom: 1rem;
  animation: slideInUp 0.8s ease-out 0.2s both;
}

.thank-you-content h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #6b7280;
  margin-bottom: 2rem;
  animation: slideInUp 0.8s ease-out 0.4s both;
}

.thank-you-content p {
  font-size: 1.125rem;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 3rem;
  animation: slideInUp 0.8s ease-out 0.6s both;
}

@keyframes slideInUp {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.next-steps {
  margin: 4rem 0;
  animation: slideInUp 0.8s ease-out 0.8s both;
}

.next-steps h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 2rem;
}

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

.step-item {
  background: #ffffff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.step-number {
  width: 3rem;
  height: 3rem;
  background: #fbbf24;
  color: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.step-item h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 1rem;
}

.step-item p {
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

.contact-info-thanks {
  margin: 4rem 0;
  animation: slideInUp 0.8s ease-out 1s both;
}

.contact-info-thanks h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 1rem;
}

.contact-info-thanks p {
  color: #6b7280;
  margin-bottom: 1.5rem;
}

.contact-methods {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
}

.contact-method i {
  font-size: 1.25rem;
  color: #fbbf24;
}

.contact-method span {
  font-weight: 600;
  color: #000000;
}

.action-buttons {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  animation: slideInUp 0.8s ease-out 1.2s both;
}

.btn-secondary {
  background-color: #6b7280;
  color: #ffffff;
  border: 2px solid #6b7280;
}

.btn-secondary:hover {
  background-color: #4b5563;
  border-color: #4b5563;
}

/* Responsive Design for Thank You Page */
@media (max-width: 768px) {
  .thank-you-section {
    padding: 6rem 0 4rem;
  }

  .thank-you-content h1 {
    font-size: 2.5rem;
  }

  .thank-you-content h2 {
    font-size: 1.25rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-methods {
    flex-direction: column;
    gap: 1rem;
  }

  .action-buttons {
    flex-direction: column;
    align-items: center;
  }

  .action-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}
