body {
   background-color: #edf6f1;
   color: #152f2a;
   font-family: 'Source Sans Pro', sans-serif;
}

.company-form-container {
   max-width: 800px;
   margin: 2rem auto;
   padding: 0 1rem;
}

.page-title {
   color: #28a745;
   font-size: 2.5rem;
   font-weight: 700;
   margin-bottom: 2rem;
   text-align: center;
}

.card {
   background-color: #ffffff;
   border-radius: 8px;
   box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card-body {
   padding: 2rem;
}

.form-section {
   margin-bottom: 2rem;
}

.section-title {
   color: #28a745;
   font-size: 1.5rem;
   font-weight: 600;
   margin-bottom: 1rem;
   padding-bottom: 0.5rem;
   border-bottom: 2px solid #28a745;
}

.form-group {
   margin-bottom: 1.5rem;
}

.form-label {
   display: block;
   margin-bottom: 0.5rem;
   font-weight: 600;
   color: #152f2a;
}

.form-control {
   width: 100%;
   padding: 0.75rem;
   font-size: 1rem;
   border: 1px solid #ced4da;
   border-radius: 4px;
   transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
   border-color: #28a745;
   box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.delivery-days {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
   gap: 1rem;
}

.form-check {
   display: flex;
   align-items: center;
}

.form-check-input {
   margin-right: 0.5rem;
}

.form-check-label {
   font-weight: 400;
}

.form-actions {
   display: flex;
   justify-content: space-between;
   margin-top: 2rem;
}

.btn {
   padding: 0.75rem 1.5rem;
   font-size: 1rem;
   font-weight: 600;
   text-align: center;
   border: none;
   border-radius: 4px;
   cursor: pointer;
   transition: background-color 0.15s ease-in-out;
}

.btn-primary {
   background-color: #28a745;
   color: #ffffff;
}

.btn-primary:hover {
   background-color: #218838;
}

.btn-secondary {
   background-color: #6c757d;
   color: #ffffff;
}

.btn-secondary:hover {
   background-color: #5a6268;
}

.alert-danger {
   background-color: #f8d7da;
   border-color: #f5c6cb;
   color: #721c24;
   padding: 1rem;
   margin-bottom: 1rem;
   border-radius: 4px;
}

@media (max-width: 768px) {
   .form-actions {
      flex-direction: column;
      gap: 1rem;
   }

   .btn {
      width: 100%;
   }
}