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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #f4f4f4;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

h1 {
    text-align: center;
    margin-bottom: 40px;
    color: #2c3e50;
    font-size: 2.5em;
    font-weight: 400;
    font-family: 'Comic Neue', cursive;
}

.main-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.svg-banner {
    flex: 1;
    min-width: 300px;
    padding: 0;
}

.image-container {
    width: 100%;
    aspect-ratio: 3 / 2;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 3px solid white;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-section {
    flex: 1;
    min-width: 300px;
    padding: 0;
}

.product-title {
    color: #50596c;
    font-size: 1.8em;
    margin-bottom: 30px;
    font-family: 'Comic Neue', cursive;
    font-weight: 400;
}

.product-item {
    margin-bottom: 40px;
}

.product-item h3 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.2em;
}

.product-item p {
    color: #666;
    margin-bottom: 15px;
}

.product-item ul {
    list-style: none;
    padding-left: 0;
}

.product-item li {
    padding: 5px 0;
    color: #555;
    position: relative;
    padding-left: 20px;
}

.product-item li:before {
    content: "•";
    color: #3498db;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.product-links {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
}

.product-link {
    color: #666;
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.2s;
}

.product-link:hover {
    color: #3498db;
}

.link-separator {
    color: #999;
    margin: 0 4px;
}

@media (max-width: 768px) {
    .main-content {
        flex-direction: column;
    }
    
    h1 {
        font-size: 2em;
    }
    
    .container {
        padding: 20px 15px;
    }
}