body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
}

header {
    background-color: #b0d0ef;
    color: #fff;
    text-align: center;
    padding: 1px 0px;
}

.logo-text {
    font-size: 2rem;
    font-weight: bold;
    color: #ff0000;
    animation: heartbeat 1.5s infinite;
}

.logo-text span {
    color: #007BFF; 
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1); 
    }
    25% {
        transform: scale(1.1);
    }
    50% {
        transform: scale(1.2); 
    }
    75% {
        transform: scale(1.1);
    }
}

.header-subtitle {
    font-size: 2rem;
    font-weight: bold;
    margin-top: 10px;
    color: #e92626;
}

.content {
    padding: 0px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

.content h2 {
    font-size: 1.8rem;
    color: #e74c3c;
    margin-bottom: 20px;
}

.content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 0 auto 20px;
}


.content h2 span {
    margin-left: 10px;
}



.contact {
    margin-top: 20px;
    font-size: 1.2rem;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact a {
    color: #000000;
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}

.contact .address-label {
    color: #000;
    font-weight: bold;
}

.contact .address {
    color: #007BFF;
    font-weight: normal;
}

.call-button {
    margin-left: 10px;
    display: inline-block;
    background-color: #6ad63c;
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    padding: 5px 15px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
    text-align: center;
}

.call-button:hover {
    background-color: #2b86e7;
}

.call-to-action {
    margin-top: 30px;
    text-align: center;
    background-color: #33cc00;
    color: #fff;
    font-weight: bold;
    font-size: 1.2rem;
    padding: 10px;
    border: 2px solid black;
}

.payment-options {
    margin-top: 30px;
    padding: 20px;
    background-color: #e6f7ff;
    border: 1px solid #007BFF;
    border-radius: 10px;
    max-width: 600px;
    text-align: left;
}

.payment-options h3 {
    color: #FF0000;
    text-align: center;
}

.payment-options p {
    margin: 10px 0;
    line-height: 1.5;
}

footer {
    background-color: #222;
    color: #fff;
    text-align: center;
    padding: 10px 20px;
    margin-top: 40px;
}

footer p {
    margin: 5px 0;
}

footer a:hover {
    text-decoration: underline;
}

.copyable {
    color: #007BFF;
    cursor: pointer;
    text-decoration: underline;
}

.copyable:hover {
    color: #0056b3;
}

@media (max-width: 768px) {
    .logo-text {
        font-size: 1.5rem; 
    }

    .header-subtitle {
        font-size: 1.5rem;
    }

    .content h2 {
        font-size: 1.2rem;
    }

    .contact {
        font-size: 1rem;
    }

    footer {
        padding: 10px;
    }
}