.center {
  margin: auto;
  width: 100%;
  padding: 10px;
  text-align: center;
}

.two-col-section {
  padding: 80px 20px;
  background: #f8fafc;
}

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

.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: top;
}

/* TEXT SIDE */
.two-col-text h3 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #0f172a;
}

.two-col-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #0f172a;
}

.brand-line {
  font-size: 16px;
  color: #1d4ed8;
  margin-bottom: 15px;
}

.two-col-text p {
  font-size: 16px;
  color: #475569;
  margin-bottom: 20px;
  line-height: 1.7;
}

/* BENEFITS */
.benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.benefits li {
  margin-bottom: 10px;
  font-size: 15px;
}

/* Start: Contact button */
.contact-btn {
            display: inline-block;         
            background: #1d4ed8;
            color: white;
            padding: 14px 32px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            margin-top: 12px;
            transition: all 0.3s;
        }
        
.contact-btn:hover {
            background: #2563eb;
            transform: scale(1.05);
        }
        
/* End: Contact button */

/* IMAGE */
.two-col-image img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .two-col-grid {
    grid-template-columns: 1fr;
  }

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

  .btn-primary {
    width: 50%;
  }
}