@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    --primary: #f8f9fa;
    /* Light Background */
    --accent: #2c73b4;
    /* User Theme Blue */
    --accent-light: #5d9ad5;
    --text: #121212;
    /* Dark Text */
    --text-muted: #666666;
    --surface: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--primary);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    position: relative;
}

/* Abstract Background Shapes */
.bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    z-index: -1;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--accent);
    top: 0px;
    left: 0;
}

.shape-2 {
    width: 600px;
    height: 600px;
    background: #ffefef;
    bottom: 0;
    right: 0;
}

/* Container */
.container {
    text-align: center;
    max-width: 800px;
    padding: 2rem;
    z-index: 1;
}

/* Logo Area */
.logo-wrapper {
    margin-bottom: 3rem;
}

.logo-wrapper img {
    height: 60px;
    /* Adjust based on actual logo aspect ratio */
    width: auto;
    /* filter: brightness(0) invert(1); Removed for light theme */
}

/* Text Content */
.content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.1;
    color: var(--text);
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    animation: fadeInUp 1s ease-out 0.6s forwards;
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 1.2rem 3rem;
    background: var(--accent);
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.5rem;
    /* Prominent size for phone number */
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px -5px rgba(44, 115, 180, 0.4);
    animation: fadeInUp 1s ease-out 0.9s forwards;
}

.cta-button:hover {
    box-shadow: 0 20px 35px -10px rgba(44, 115, 180, 0.5);
    background: #25629a;
}

.cta-button .icon {
    font-size: 1.4rem;
}

/* Footer */
footer {
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .content h1 {
        font-size: 3rem;
    }

    .notify-form {
        flex-direction: column;
    }

    .submit-btn {
        width: 100%;
    }
}

/* --- New Styles for Text Pages --- */

.text-page-body {
    display: block;
    /* Override flex center from main body */
    padding-bottom: 4rem;
}

.text-page-header {
    text-align: center;
    padding: 3rem 1rem 2rem;
}

.text-page-header img {
    height: 50px;
    width: auto;
}

.text-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.text-content {
    color: var(--text);
    line-height: 1.8;
}

.text-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 2rem;
    text-align: center;
    border-bottom: 2px solid rgba(44, 115, 180, 0.1);
    padding-bottom: 1rem;
}

.text-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    color: var(--accent);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.text-content p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    font-weight: 300;
}

.text-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.text-content li {
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.back-link {
    display: block;
    text-align: center;
    margin-top: 3rem;
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.back-link:hover {
    opacity: 0.8;
}

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

    .text-container {
        padding: 1.5rem;
        margin: 1rem;
    }
}