body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
}

.custom-header {
    position: relative;
    background-color: #6192c6;
    opacity: .80;
    color: #fff;
    padding: 20px;
    text-align: center;
}

.logo {
    display: inline-block;
}

.logo a {
    color: #fff;
    font-size: 24px;
    text-decoration: none;
}

.custom-navigation ul {
    list-style-type: none;
    padding: 0;
    text-align: center;
}

.custom-navigation ul li {
    display: inline;
    margin-right: 20px;
}

.custom-navigation ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}

#primary {
    margin: 80px auto 20px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 80%;
    max-width: 80%;
    text-align: center;
}

#primary img {
    max-width: 100%;
    height: auto;
}

.entry-title {
    font-size: 32px;
    margin-bottom: 20px;
}

.entry-content {
    font-size: 18px;
    line-height: 1.6;
}

.entry-footer {
    margin-top: 20px;
    font-size: 14px;
    color: #777;
}

.hamburger-menu {
    display: none;
    cursor: pointer;
    font-size: 30px;
}

.hamburger-menu ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: none;
}

.hamburger-menu.show ul {
    display: block;
}

.hamburger-menu ul li {
    display: block;
    margin-bottom: 10px;
}

.hamburger-menu ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}

@media screen and (max-width: 768px) {
    .logo a,
    .entry-title,
    .entry-content,
    .entry-footer {
        font-size: 25px;
    }

    .custom-navigation ul {
        display: none;
    }

    .hamburger-menu {
        display: block;
    }

    .custom-header {
        position: fixed;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        background-color: 6192c6;
        color: #fff;
        padding: 20px;
        text-align: center;
        z-index: 1000;
    }

    .hamburger-menu {
        position: absolute;
        top: 20px;
        right: 40px;
    }

    .custom-navigation ul.show {
        display: block !important;
    }
}

.cta-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    font-size: 16px;
    color: #fff;
    opacity: 0.7;
    text-decoration: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    margin-bottom: 10px;
}

.cta-button-primary {
    background-color: #3b7e52;
}

.cta-button-secondary {
    background-color: #2596be;
}

.cta-button:hover {
    opacity: 1;
}

.cta-link {
    display: inline-block;
    text-decoration: none;
    color: inherit;
}

.wp-block-columns {
    display:flex;
    flex-flow: column;
}

body .is-layout-flex {
    display: block;
}