body {
    font-family: 'Trebuchet MS', sans-serif;
    background-color: #6699FF;
    color: white;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    text-align: center;
}

header {
    margin-top: 60px;
    padding: 0 20px;
}

h1 {
    font-size: 6rem;
    margin: 0;
    letter-spacing: 2px;
}

p.tagline {
    font-family: Garamond, serif;
    font-size: 1.5rem;
    max-width: 800px;
    margin: 15px auto 40px;
    line-height: 1.5;
    padding: 0 20px;
}

section.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    width: 90%;
    max-width: 900px;
    margin-bottom: 30px;
}

.feature {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px 25px;
    backdrop-filter: blur(6px);
    transition: all 0.3s ease;
}

.feature:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.feature h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.feature p {
    font-family: Garamond, serif;
    font-size: 1.1rem;
    line-height: 1.6;
}

.cta {
    background: white;
    color: #6699FF;
    font-weight: bold;
    font-size: 1.3rem;
    padding: 14px 36px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    margin: 5px 20px 20px;
    transition: background 0.3s ease, color 0.3s ease;
}

.cta:hover {
    background: #3366CC;
    color: white;
}

footer {
    font-family: Garamond, serif;
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 30px;
    padding: 0 20px;
}

.content {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
    text-align: left;
}

.content h1 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 40px;
}

.content h2 {
    font-size: 1.6rem;
    margin: 30px 0 15px 0;
    font-family: 'Trebuchet MS', sans-serif;
}

.content p {
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 1.1rem;
    line-height: 1.1;
    margin-bottom: 10px;
}

.content p.garamond-line {
    font-family: Garamond, serif !important;
    font-size: 1.4rem;
    line-height: 1.1;
}

.content ul {
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 1.1rem;
    line-height: 1.2;
    margin: 10px 0;
    padding-left: 50px;
}

.content li {
    margin-bottom: 8px;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
    h1 {
        font-size: 3.5rem;
    }

    p.tagline {
        font-size: 1.2rem;
    }

    section.features {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        width: 95%;
    }

    .feature {
        padding: 20px 15px;
    }

    .feature h3 {
        font-size: 1.4rem;
    }

    .feature p {
        font-size: 1rem;
    }

    .cta {
        font-size: 1.1rem;
        padding: 12px 30px;
    }

    .content h1 {
        font-size: 2.5rem;
    }

    .content h2 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    header {
        margin-top: 40px;
    }

    h1 {
        font-size: 2.8rem;
    }

    p.tagline {
        font-size: 1.1rem;
    }

    .content h1 {
        font-size: 2rem;
    }
}