* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f5f5f5;
}

/* Navbar Stili */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo h1 {
    color: #2c3e50;
    font-size: 24px;
}

.contact-info {
    display: flex;
    gap: 30px;
    align-items: center;
}

.phone-number {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2c3e50;
}

.phone-number i {
    color: #3498db;
}

/* Hero Section */
.hero {
    padding: 100px 50px;
    text-align: center;
    background: linear-gradient(135deg, #3498db, #2c3e50);
    color: white;
    margin-top: 80px;
}

.hero h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

/* Forklift Grid */
.forklifts {
    padding: 80px 50px;
    background-color: white;
}

.forklifts h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #2c3e50;
}

.forklift-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
}

.forklift-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.forklift-card:hover {
    transform: translateY(-5px);
}

.forklift-card img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 20px;
}

.forklift-card h3 {
    color: #2c3e50;
    margin-bottom: 10px;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    padding: 40px 50px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-section h3 {
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: white;
    font-size: 24px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #3498db;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 20px;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero {
        padding: 100px 20px;
    }
    
    .forklifts {
        padding: 80px 20px;
    }
}
