
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f9f5f0;
    color: #3a2c2a;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    line-height: 1.6;
}

.container {
    position: relative;
    max-width: 800px;
    padding: 40px;
}


.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #5e3a37;
}

.divider {
    width: 100px;
    height: 2px;
    background: #d4a373;
    margin: 0 auto 30px;
}


.brand-description {
    font-size: 1.1rem;
    margin-bottom: 40px;
    font-weight: 300;
}


.catalog-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #5e3a37;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1rem;
    transition: all 0.3s;
    border: 2px solid #5e3a37;
}

.catalog-btn:hover {
    background: transparent;
    color: #5e3a37;
}

.tea-leaf {
    position: absolute;
    width: 100px;
    height: 100px;
    opacity: 0.1;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M30,50 Q50,20 70,50 T90,50" fill="none" stroke="%235e3a37" stroke-width="2"/></svg>');
    background-repeat: no-repeat;
}

.tea-leaf.left {
    left: 0;
    top: 20%;
    transform: rotate(-15deg);
}

.tea-leaf.right {
    right: 0;
    bottom: 20%;
    transform: rotate(15deg);
}

@media (max-width: 768px) {
    .brand-name {
        font-size: 2.5rem;
    }
    .brand-description {
        font-size: 1rem;
    }
}