/*
 Theme Name:   Astra Child - No Limits Marketing
 Theme URI:    https://example.com/astra-child/
 Description:  Custom child theme for No Limits Marketing based on Astra
 Author:       Your Name
 Template:     astra
 Version:      1.0.0
*/

/* Global Colors & Typography Base */
:root {
  --primary-blue: #236b8e;
  --dark-text: #000000;
  --light-bg: #f2f2f2;
  --card-bg: #41a5d1;
}

/* Custom Call to Action Button */
.btn-call-us {
  display: none;
  background-color: var(--card-bg);
  color: var(--dark-text);
  font-weight: 700;
  font-size: 1.25rem;
  padding: 14px 40px;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.btn-call-us:hover {
  background-color: #c8c8c8;
  color: var(--dark-text);
}

/* Hero Section Formatting */
.hero-section {
  background-color: #f7f7f712;
  padding: 80px 20px;
  text-align: center;
}

/* Feature Cards Styling */
.services-card {
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: 4px;
}

.why-choose-card {
  background-color: var(--card-bg);
  padding: 40px;
  border-radius: 4px;
}
