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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #FDF2E8;
    min-height: 100vh;
    padding: 20px;
}

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

.logo-section {
    text-align: center;
    padding: 20px 0 40px;
    margin-bottom: 50px;
}

.logo-section img {
    max-width: 600px;
    height: auto;
    margin-bottom: 15px;
}

.logo-section h1 {
    font-size: 2.5em;
    color: #333;
    font-weight: 600;
    margin-bottom: 10px;
}

.logo-section p {
    font-size: 1.1em;
    color: #666;
}

.stylists-section {
    padding: 40px 20px;
    background: #d8d0bb;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin: 0 20px;
    text-align: center;
}

.section-title {
    text-align: center;
    font-size: 2em;
    color: #333;
    margin-bottom: 40px;
    font-weight: 600;
    width: 100%;
}

.stylists-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 0 20px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.stylist-card {
    background: #FDF2E8;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 0 1 calc(33.333% - 20px);
    min-width: 280px;
    max-width: 350px;
    padding-top: 10px;
}

.stylist-card:hover {
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.stylist-image {
    width: 100%;
    height: 280px;
    object-fit: contain;
    object-position: center;
    display: block;
    background: #FDF2E8;
}

.stylist-info {
    padding: 25px 20px;
    text-align: center;
    width: 100%;
}

.stylist-name {
    font-size: 1.8em;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
    width: 100%;
}

.stylist-bio {
    font-size: 0.9em;
    color: #555;
    line-height: 1.5;
    margin-bottom: 20px;
    text-align: center;
    width: 100%;
}

.book-now-btn {
    display: inline-block;
    padding: 12px 35px;
    background: #000;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1em;
    font-weight: 600;
    transition: background 0.3s ease;
}

.book-now-btn:hover {
    background: #333;
}

.footer {
    text-align: center;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #ddd;
    color: #666;
    font-size: 0.9em;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    .container {
        padding: 20px 10px;
    }

    .logo-section h1 {
        font-size: 2em;
    }

    .logo-section img {
        max-width: 90%;
    }

    .stylists-section {
        margin: 0;
        padding: 30px 20px;
        border-radius: 8px;
    }

    .section-title {
        font-size: 1.6em;
    }

    .stylists-grid {
        gap: 20px;
        padding: 0;
    }

    .stylist-card {
        flex: 0 1 auto;
        min-width: unset;
        max-width: 500px;
        width: 100%;
        margin: 0 auto;
    }

    .stylist-image {
        height: 250px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 5px;
    }

    .container {
        padding: 15px 5px;
    }

    .logo-section {
        margin-bottom: 30px;
    }

    .logo-section h1 {
        font-size: 1.6em;
    }

    .logo-section img {
        max-width: 95%;
    }

    .stylists-section {
        margin: 0;
        padding: 20px 15px;
        border-radius: 8px;
    }

    .section-title {
        font-size: 1.4em;
        margin-bottom: 25px;
    }

    .stylists-grid {
        gap: 20px;
        padding: 0;
    }

    .stylist-card {
        flex: 0 1 auto;
        min-width: unset;
        max-width: 450px;
        width: 100%;
        margin: 0 auto;
    }

    .stylist-info {
        padding: 20px 15px;
    }

    .stylist-name {
        font-size: 1.3em;
    }

    .stylist-bio {
        font-size: 0.85em;
    }

    .book-now-btn {
        padding: 10px 30px;
        font-size: 0.95em;
    }

    .stylist-image {
        height: 220px;
    }
}
