:root {
    --header-color: #FFFFFF;
    --slogan-color: #c9994b;
    --primary-color: #c9994b;
    --secondary-color: #ff8c00;
    --accent-color: #ffffff;
    --light-bg: #f8f8f8;
    --text-color: #333;
    --text-light: #777;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Roboto regular, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.header {
    background-color: var(--header-color);
    padding: 15px max(20px, 5vw);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    height: 50px;
    width: auto;
}

.header-slogan {
    font-family: 'Playfair Display', serif;
    color: var(--slogan-color);
    font-size: 1.2rem;
    font-weight: 500;
    text-align: left;
}

.hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                url('/etc/small.png') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    margin-bottom: 60px;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.buttons-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 20px;
    margin: 0 auto 60px;
    max-width: 1200px;
}

.product-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.08);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.card-image {
    height: 200px;
    width: 100%;
    background-size: cover;
    background-position: center;
    border-bottom: 3px solid var(--accent-color);
}

.card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    line-height: 1.3;
}

.card-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.card-benefits-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin: 15px 0 10px;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 5px;
}

.benefits {
    margin: 10px 0;
    flex-grow: 1;
}

.benefit-item {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: var(--text-color);
    line-height: 1.4;
    font-size: 0.9rem;
}

.benefit-item:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
    top: -2px;
}

.benefit-item strong {
    color: var(--primary-color);
    font-weight: 600;
}

.card-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: 20px;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: center;
}

.card-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

        footer {
            background-color: #333;
            color: #f2f2f2;
            padding: 30px 0 15px;
            margin-top: 40px;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            padding: 0 20px;
        }
        
        .footer-column {
            flex: 1;
            min-width: 250px;
            margin-bottom: 20px;
            padding: 0 15px;
        }
        
        .footer-column h4 {
            color: #c99a4f;
            margin-bottom: 15px;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 8px;
        }
        
        .footer-column ul li a {
            color: #f2f2f2;
            text-decoration: none;
        }
        
        .footer-column ul li a:hover {
            color: #c99a4f;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 15px;
            margin-left: -20px; 
        }
        
.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #444;
    border-radius: 50%;
    color: #f2f2f2;
    text-decoration: none;
}

.social-links a:last-child {
    margin-right: 0; /* Remove margin from last item */
}
        
        .social-links a:hover {
            background-color: #c99a4f;
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #555;
            margin-top: 20px;
            font-size: 0.9rem;
            color: #aaa;
        }
        
@media (max-width: 768px) {
    .header {
        flex-direction: row;
        align-items: center;
        padding: 10px 15px;
    }
    
    .logo {
        height: 40px;
        margin-top: 0;
        margin-left: 10px;
    }
    
    .header-slogan {
        font-size: 0.9rem;
        white-space: nowrap;
        flex: 1;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.5rem;
    }
    
    .buttons-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-card {
        margin-bottom: 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .card-benefits-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .header-slogan {
        font-size: 0.8rem;
        white-space: normal;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
}