@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&display=swap');

body {
    background: #faf9f5;
    font-family: 'Cormorant Garamond', serif;
    margin: 0;
    padding: 0;
    color: #3d3a33;
}

.intro-section {
    position: relative;
    max-width: 720px;
    margin: 40px auto;
    padding: 48px 40px 56px 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    box-shadow: 0 0 40px rgb(0 0 0 / 0.12);
    box-sizing: border-box;
}

.intro-text-container p {
    font-size: 1.35rem;
    line-height: 1.9;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
}

.greeting {
    font-weight: 700;
    font-size: 1.9rem;
    margin-bottom: 24px;
    text-align: center;
}

strong {
    font-weight: 700;
}

q {
    quotes: "“" "”" "‘" "’";
}

q::before {
    content: open-quote;
}

q::after {
    content: close-quote;
}

.floral-left, .floral-right {
    position: absolute;
    top: 24px;
    width: 120px;
    height: 250px;
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
}

.floral-left {
    left: -130px;
    background-image: url('4.jpg');
}

.floral-right {
    right: -130px;
    background-image: url('8.jpg');
}

@media (max-width: 768px) {
    .intro-section {
        margin: 20px 12px;
        padding: 36px 24px 40px 24px;
    }
    .floral-left, .floral-right {
        display: none;
    }
    .intro-text-container p {
        font-size: 1.15rem;
    }
    .greeting {
        font-size: 1.5rem;
    }
}