* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #060f18, #416085);
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 50px auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.header {
    background: #112530;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.header .subtitle {
    font-size: 1.2em;
    opacity: 0.9;
}

.profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid white;
    margin: -75px auto 20px;
    display: block;
    position: relative;
    z-index: 1;
}

.content {
    padding: 40px;
}

.section {
    margin-bottom: 40px;
}

.section h2 {
    color: #ff7e5f;
    font-size: 1.8em;
    margin-bottom: 20px;
    border-bottom: 2px solid #ff7e5f;
    display: inline-block;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.product-card {
    background: #aeaeae;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-info {
    padding: 15px;
}

.product-info h3 {
    font-size: 1.2em;
    color: #333;
    margin-bottom: 10px;
}

.product-info p {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 10px;
}

.price {
    font-size: 1.1em;
    color: #ff7e5f;
    font-weight: bold;
}

.contact-info {
    background: #fef9f5;
    padding: 20px;
    border-radius: 10px;
}

.contact-info p {
    margin: 10px 0;
}

.contact-info a {
    color: #ff7e5f;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.footer {
    text-align: center;
    padding: 20px;
    background: #112530;
    color: white;
    font-size: 0.9em;
}

@media (max-width: 600px) {
    .container {
        margin: 20px;
    }
    .header h1 {
        font-size: 2em;
    }
    .profile-pic {
        width: 100px;
        height: 100px;
        margin: -50px auto 15px;
    }
    .products-grid {
        grid-template-columns: 1fr;
    }
}