/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/

.my-flex-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}
.my-button {
    display: inline-block;
    margin-right: 15px;
    margin-bottom: 10px;
}
.my-card {
    border: 3px solid #dc2626;
    border-radius: 20px;
    padding: 30px;
    background: white;
    width: 320px;
}
.my-service-box {
    text-align: center;
    width: 200px;
}





.page .entry-header,
.page-title,
h1.page-title {
  display: none !important;
}

.site-info {
    display: none;
}



















/* Hero Sections */
.wp-block-group[style*="background-color:#1a1a1a"] {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%) !important;
  color: white;
}

.wp-block-group[style*="background-color:#dc2626"] {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%) !important;
  color: white;
}

/* Light sections */
.wp-block-group[style*="background-color:#ffffff"] {
  background-color: #ffffff;
  color: #1a1a1a;
}

.wp-block-group[style*="background-color:#f5f5f5"] {
  background-color: #f5f5f5;
  color: #1a1a1a;
}

.wp-block-group[style*="background-color:#f9f9f9"] {
  background-color: #f9f9f9;
  color: #1a1a1a;
}

/* Buttons */
.wp-block-button__link {
  border-radius: 8px;
  font-weight: 700;
  padding: 16px 32px !important;
  transition: all 0.3s ease;
}

.wp-block-button__link:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* Columns */
.wp-block-columns {
  gap: 40px;
}

.wp-block-column {
  flex: 1;
  min-width: 280px;
}

/* Headings */
h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 15px;
}

h2 {
  font-size: 36px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 60px;
}

h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

/* Paragraphs */
p {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
}

/* Quotes/Testimonials */
.wp-block-quote {
  border-left: 4px solid #dc2626;
  padding-left: 20px;
  margin-left: 0;
  font-style: italic;
}

.wp-block-quote cite {
  display: block;
  margin-top: 10px;
  font-weight: 700;
  font-style: normal;
  color: #1a1a1a;
}