/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #2E4053;
    background: #f8f9fa;
}

/* Navigation */
header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: #2E4053;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #E67E22;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger .line {
    width: 25px;
    height: 3px;
    background: #2E4053;
    margin: 5px;
    transition: 0.3s;
}

/* Sections */
section {
    padding: 4rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero {
    text-align: center;
    padding: 6rem 1rem;
    background: #fff;
}

/* Production/Import Items */
.production-item,
.import-item {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin: 2rem 0;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.reverse {
    flex-direction: row-reverse;
}

.text, .image {
    flex: 1;
}

.image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 6px;
    transition: transform 0.3s;
}

.image img:hover {
    transform: scale(1.02);
}

/* Contact Section */
.contact-wrapper {
    display: flex;
    gap: 3rem;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-info {
    flex: 1;
}

.item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.item i {
    color: #E67E22;
    font-size: 1.2rem;
    min-width: 30px;
}

.social {
    flex: 1;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
}

.social a {
    color: #2E4053;
    font-size: 2rem;
    transition: color 0.3s;
}

.social a:hover {
    color: #E67E22;
}

/* Footer */
footer {
    background: #2E4053;
    color: #fff;
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 70px;
        background: #fff;
        width: 100%;
        height: calc(100vh - 70px);
        flex-direction: column;
        align-items: center;
        padding: 2rem;
        transition: 0.3s;
    }

    .nav-links.active {
        right: 0;
    }

    .production-item,
    .import-item {
        flex-direction: column;
    }

    .contact-wrapper {
        flex-direction: column;
    }

    .image img {
        max-width: 100%;
    }
}