/* Updated Home Page Styles */

body {
    background-color: #f5f5f5;
}

.home-container {
    font-family: 'Arial', sans-serif;
    color: #333;
    text-align: center;
    padding: 20px;
    background-color: #f5f5f5;
}

.hero-section {
    display: flex;
    align-items: center;
    padding: 50px;
}

.hero-content h1 {
    font-size: 2.5rem;
    color: #333;
}

.hero-content p {
    font-size: 1.2rem;
    color: #666;
}

.cta-button {
    background-color: #28a745;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

.clients-section {
    text-align: center;
    padding: 50px;
}

.clients-section h2 {
    font-size: 2rem;
    color: #333;
}

.clients-section p {
    font-size: 1rem;
    color: #666;
}

.client-logos {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.client-logos img {
    width: 50px;
    height: 50px;
}

.puzzle-section {
    padding: 50px;
}

.puzzle-section h2 {
    text-align: center;
    font-size: 2rem;
    color: #333;
}

.puzzle-section p {
    text-align: center;
    font-size: 1rem;
    color: #666;
}

.puzzle-grid {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
}

.puzzle-item img {
    width: 100px;
    height: 100px;
}

.puzzle-item h3 {
    font-size: 1.2rem;
    color: #333;
}

.home-footer {
    text-align: center;
    padding: 20px;
    font-size: 1rem;
    color: #555;
}