* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Montserrat Alternates", sans-serif;
    background: linear-gradient(to bottom, #fef9f3 0%, #f5e6d3 100%);
    color: #2d3e2d;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.header {
    background: #fef9f3;
    padding: 40px 40px;
    margin: 0 0 20px;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.header-top {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: -30px;
}

.cats-decoration {
    width: 200px;
    height: auto;
}

.cats-decoration img {
    width: 100%;
    height: auto;
    display: block;
}

.header-center {
    text-align: center;
}

.header-text {
    font-family: "Pacifico", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 33px;
    margin-top: 20px;
    margin-bottom: 20px;
    color: #8b7355;
}

.names {
    font-family: "Pacifico", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 64px;
    /* font-weight: bold; */
    color: #3d5a3d;
    line-height: 1.1;
    margin-bottom: 10px;
    margin-left: 20px;
}

.event-info {
    font-family: "Pacifico", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 33px;
    margin-top: 20px;
    margin-bottom: 20px;
    color: #2d3e2d;
}

.separator {
    color: #8b7355;
    font-size: 20px;
}

.flowers-decoration {
    display: none;
}

.welcome {
    background: #fef9f3;
    padding: 40px;
    text-align: center;
    margin: 40px 0;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.welcome h2 {
    /* font-family: "Pacifico", cursive; */
    font-weight: bold;
    font-style: normal;
    font-size: 32px;
    color: #3d5a3d;
    margin-bottom: 20px;
}

.welcome p {
    font-size: 16px;
    line-height: 1.6;
    color: #5a5a5a;
    margin-bottom: 10px;
}

.venues {
    display: flex;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
    justify-content: center;
}

.venue-card {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
}

.venue-image {
    width: 100%;
    height: 200px;
    background: #e5d5c5;
    border-radius: 50% 50% 15px 15px;
    margin-bottom: 15px;
    overflow: hidden;
}

.venue-title {
    /* font-family: "Pacifico", cursive; */
    font-style: normal;
    font-size: 18px;
    font-weight: bold;
    color: #3d5a3d;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.venue-info {
    font-size: 13px;
    color: #5a5a5a;
    line-height: 1.4;
}

.schedule {
    background: #fef9f3;
    padding: 50px 40px;
    margin: 40px 0;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    position: relative;
    overflow: hidden;
}

.schedule-left {
    display: flex;
    flex-direction: column;
}

.schedule-title {
    font-size: 56px;
    color: #3d5a3d;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 20px;
}

.schedule-date {
    font-size: 18px;
    color: #2d3e2d;
    margin-bottom: 40px;
}

.schedule-flowers {
    width: 120px;
    height: 200px;
    background: rgba(232, 168, 124, 0.3);
    border-radius: 10px;
}

.schedule-right {
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
}

.schedule-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    padding: 12px 0;
    border-top: 1px solid #8b7355;
    align-items: center;
}

.schedule-item:last-child {
    border-bottom: 1px solid #8b7355;
}

.time {
    font-size: 16px;
    color: #8b7355;
    font-weight: normal;
}

.event {
    font-size: 14px;
    color: #2d3e2d;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.schedule-flowers-right {
    position: absolute;
    width: 200px;
    height: 275px;
    object-position: top right; 
}

.schedule-flowers-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact {
    background: #f5e6d3;
    padding: 50px 40px;
    margin: 40px 0;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-title {
    font-size: 56px;
    color: #3d5a3d;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 40px;
}

.contact-person {
    margin-bottom: 30px;
}

.contact-name {
    font-size: 24px;
    color: #3d5a3d;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 5px;
    letter-spacing: 2px;
}

.contact-phone,
.contact-info {
    font-size: 16px;
    color: #5a5a5a;
}

.contact-cats {
    width: 100%;
    height: 300px;
    background: rgba(232, 168, 124, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faqs {
    background: #3d5a3d;
    color: #fef9f3;
    padding: 50px 40px;
    margin: 40px 0;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.faqs h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 8px;
    color: #f5e6d3;
}

.faq-item {
    margin-bottom: 30px;
}

.faq-title {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 10px;
    color: #f5e6d3;
    text-align: center;
}

.faq-content {
    font-size: 15px;
    line-height: 1.6;
    text-align: center;
    color: #e5d5c5;
}

@media (max-width: 768px) {
    .header-top {
        margin-bottom: -20px;
    }

    .cats-decoration {
        width: 150px;
    }

    .names {
        font-size: 34px;
        margin-left: 10px;
    }

    .separator {
        display: none;
    }

    .venues {
        flex-direction: column;
        align-items: center;
    }

    .schedule {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .schedule-title {
        font-size: 42px;
    }

    .contact {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-title {
        font-size: 42px;
    }
}