.ourthoughtsbackground {
    font-family: 'Lora', serif;
    overflow-x: hidden;
    
    min-height: 100vh;
    position: relative;
}

.watercolor-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.6;
    background:
        radial-gradient(ellipse 800px 600px at 20% 30%, rgba(255, 193, 7, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 600px 800px at 80% 70%, rgba(233, 30, 99, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 500px 400px at 60% 20%, rgba(156, 39, 176, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 700px 500px at 10% 80%, rgba(255, 152, 0, 0.1) 0%, transparent 50%);
}

.container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 40px;
    text-align: center;
}

.floral-left {
    position: absolute;
    top: 80px;
    left: 60px;
    width: 120px;
    height: 200px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 200"><g fill="none" stroke-width="2"><path d="M30 20 Q40 10 50 20 Q55 25 50 30 Q45 35 40 30 Q35 25 30 20" fill="%23ff6b9d" stroke="%23ff6b9d"/><path d="M40 40 Q50 30 60 40 Q65 45 60 50 Q55 55 50 50 Q45 45 40 40" fill="%23ffc107" stroke="%23ffc107"/><path d="M35 65 Q45 55 55 65 Q60 70 55 75 Q50 80 45 75 Q40 70 35 65" fill="%23ff8a80" stroke="%23ff8a80"/><path d="M25 90 Q35 80 45 90 Q50 95 45 100 Q40 105 35 100 Q30 95 25 90" fill="%23ffb74d" stroke="%23ffb74d"/><path d="M45 115 Q55 105 65 115 Q70 120 65 125 Q60 130 55 125 Q50 120 45 115" fill="%23f48fb1" stroke="%23f48fb1"/><path d="M20 25 Q25 15 35 25 L35 180" stroke="%234caf50" fill="none"/><path d="M50 35 Q55 25 65 35 L65 170" stroke="%234caf50" fill="none"/><path d="M35 70 Q40 60 50 70 L50 160" stroke="%234caf50" fill="none"/></g></svg>') no-repeat;
    background-size: contain;
    animation: sway 6s ease-in-out infinite;
}

.floral-right {
    position: absolute;
    top: 120px;
    right: 60px;
    width: 140px;
    height: 180px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 140 180"><g fill="none" stroke-width="2"><path d="M70 20 Q80 10 90 20 Q95 25 90 30 Q85 35 80 30 Q75 25 70 20" fill="%23ff6b9d" stroke="%23ff6b9d"/><path d="M80 45 Q90 35 100 45 Q105 50 100 55 Q95 60 90 55 Q85 50 80 45" fill="%23ffc107" stroke="%23ffc107"/><path d="M85 70 Q95 60 105 70 Q110 75 105 80 Q100 85 95 80 Q90 75 85 70" fill="%23ffab91" stroke="%23ffab91"/><path d="M60 95 Q70 85 80 95 Q85 100 80 105 Q75 110 70 105 Q65 100 60 95" fill="%23ce93d8" stroke="%23ce93d8"/><path d="M90 120 Q100 110 110 120 Q115 125 110 130 Q105 135 100 130 Q95 125 90 120" fill="%23ffb74d" stroke="%23ffb74d"/><path d="M75 25 Q80 15 90 25 L90 160" stroke="%234caf50" fill="none"/><path d="M95 50 Q100 40 110 50 L110 150" stroke="%234caf50" fill="none"/><path d="M65 100 Q70 90 80 100 L80 140" stroke="%234caf50" fill="none"/></g></svg>') no-repeat;
    background-size: contain;
    animation: sway 6s ease-in-out infinite reverse;
}

.quote-mark {
    font-size: 80px;
    color: #d4af37;
    font-family: 'Playfair Display', serif;
    line-height: 0.5;
    margin-bottom: 20px;
}

.quote-mark.opening {
    text-align: left;
    margin-left: 100px;
}

.quote-mark.closing {
    text-align: right;
    margin-right: 100px;
    margin-top: 20px;
    margin-bottom: 0;
}

.main-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 60px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 30px;
}

.main-text {
    font-size: 18px;
    line-height: 1.8;
    color: #34495e;
    text-align: justify;
    margin-bottom: 40px;
    text-indent: 2em;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.tagline {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    color: #8b4513;
    font-style: italic;
    margin-top: 30px;
    position: relative;
}

.tagline::before,
.tagline::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 80px;
    height: 1px;
    background: linear-gradient(to right, transparent, #d4af37, transparent);
}

.tagline::before {
    left: -100px;
}

.tagline::after {
    right: -100px;
}

@keyframes sway {

    0%,
    100% {
        transform: translateX(0) rotate(0deg);
    }

    25% {
        transform: translateX(5px) rotate(1deg);
    }

    50% {
        transform: translateX(0) rotate(0deg);
    }

    75% {
        transform: translateX(-5px) rotate(-1deg);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container>* {
    animation: fadeIn 1s ease-out forwards;
}

.main-content {
    animation-delay: 0.3s;
}

.floral-left {
    animation-delay: 0.6s;
}

.floral-right {
    animation-delay: 0.9s;
}

@media (max-width: 768px) {
    .container {
        padding: 60px 20px;
    }

    .main-content {
        padding: 30px 40px;
        margin: 0 20px;
    }

    .main-text {
        font-size: 16px;
        text-align: center;
        text-indent: 0;
    }

    .floral-left,
    .floral-right {
        display: none;
    }

    .quote-mark.opening {
        margin-left: 0;
    }

    .quote-mark.closing {
        margin-right: 0;
    }

    .tagline::before,
    .tagline::after {
        display: none;
    }
}