
* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden; 
    background: #f8f9fa;
    color: #333;
    font-family: Arial, sans-serif;
}

.container, .wp-block-group__inner-container, .site-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto; 
    padding: 0 15px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5 {
    text-align: center;
    margin: 20px 0;
}

a.btn, .wp-block-button__link {
    display: inline-block;
    background: #4674ff;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s;
    text-align: center;
}

a.btn:hover, .wp-block-button__link:hover {
    background: #3259d6;
}

header {
    background: #020609;
    color: white;
    padding: 15px 0;
}

header img {
    max-height: 60px;
}


header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

header nav ul li {
    display: inline-block;
    margin: 0 15px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

header nav ul li a:hover {
    color: #638aff;
}

table {
    border-collapse: collapse;
    width: 100%;
    background: white;
}

table td, table th {
    border: 1px solid #ddd;
    padding: 10px;
}

section, .wp-block-group, .wp-block-columns {
    margin-bottom: 40px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}


@media (max-width: 768px) {
    header nav ul li {
        display: block;
        margin: 10px 0;
    }
}

.wp-block-cover__inner-container h3,
.wp-block-cover__inner-container p {
    color: black !important;
}

.wp-block-image.alignwide {
    text-align: center;
}
.wp-block-image.alignwide img {
    display: inline-block;
}


.wp-block-cover {
  position: relative !important;
  overflow: hidden !important;
}


.wp-block-cover .wp-block-cover__image-background {
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  transform: translate(-50%, -50%) !important;

  
  min-width: 100% !important;
  min-height: 100% !important;
  width: auto !important;
  height: auto !important;

  object-fit: cover !important;
  object-position: center center !important;
}



