/* General styling */
body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #333;
    background-color: #f5f5f7;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    margin-top: 20px;
    max-width: 150px;
    /* Adjust size as needed */
}

/* Container styling */
.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1;
    text-align: center;
    padding: 20px;
    max-width: 800px;
}
/* Main content */
.content {
    margin-bottom: 40px;
}

/* Footer */
.footer {
    padding: 10px 20px;
    font-size: 0.75rem;
    color: #6e6e73;
}

/* Text styling */
.content h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: #1d1d1f;
    line-height: 1.2;
}

.content p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: #1d1d1f;
    line-height: 1.6;
}

/* CTA button */
.cta-button {
    background-color: #007aff;
    background-image: linear-gradient(145deg, #007aff, #005bb5);
    border: none;
    color: #fff;
    padding: 16px 40px;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 28px;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0, 122, 255, 0.2);
    transition: background-color 0.3s, transform 0.2s;
}

.cta-button:hover {
    background-color: #005bb5;
    transform: translateY(-2px);
}

/* Footer links */
.footer a {
    color: #007aff;
    text-decoration: none;
    transition: color 0.2s;
}

.footer a:hover {
    color: #005bb5;
}

/* Quote section */
.quote-section {
    margin: 3rem 0;
    font-style: italic;
    color: #1d1d1f;
    line-height: 1.6;
    position: relative;
    padding: 20px 30px;
    border-left: 4px solid #007aff;
    background-color: #f0f4f8;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.quote-section:before {
    content: '“';
    font-size: 4rem;
    color: #007aff;
    position: absolute;
    top: -30px;
    left: 10px;
}

.quote-section:after {
    content: '”';
    font-size: 4rem;
    color: #007aff;
    position: absolute;
    bottom: -30px;
    right: 15px;
    transform: rotate(180deg);
}

.quote-section p {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.quote-section .fact {
    font-size: 1rem;
    color: #6e6e73;
}



.container.policy, .container.policy{
    text-align: left;
    font-size: 0.9em;
}


@media screen and (max-width: 768px) {
    .content h1 {
        font-size: 2rem;
    }

    .content p {
        font-size: 1rem;
    }

    .quote-section p, .quote-section .fact {
        font-size: 0.9rem;
    }
    
}