﻿body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: url("wsbg4.png") repeat center top;
    background-size: cover;
    min-height: 100vh;
}

* {
    box-sizing: border-box;
    max-width: 100%;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    background-color: rgba(255, 255, 255, 0.8);
    position: absolute;
    width: 100%;
    top: 0;
}

.logo-section {
    display: flex;
    align-items: center;
}

.logo {
    height: 60px;
    margin-right: 10px;
}

.title h1 {
    margin: 0;
    font-size: 20px;
    color: #002366;
}

.title h2 {
    margin: 0;
    font-size: 14px;
    font-weight: normal;
    color: #002366;
}

.title p {
    margin: 0;
    font-size: 12px;
    color: red;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 30px; /* even spacing */
    margin: 0;
    padding: 0;
    align-items: center; /* aligns menu vertically with logo */
}

nav li {
    display: flex;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: black;
    font-weight: bold;
}

    nav a:hover {
        color: #007BFF;
    }

.product-detail {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    max-width: 1000px;
    padding: 20px;
    border: 2px solid #ccc;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.product-details li {
    margin-bottom: 8px;
}

.product-image img {
    width: 400px;
    height: auto;
    border: 2px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.product-info {
    flex: 1;
}

.product-name {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}

.price {
    font-size: 22px;
    color: #e63946;
    margin-bottom: 15px;
}

.description {
    font-size: 16px;
    color: #333;
    margin-bottom: 25px;
}

.appoint-btn {
    display: inline-block;
    background: #ff5722;
    color: white;
    padding: 12px 20px;
    font-size: 18px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.3s;
}

    .appoint-btn:hover {
        background: #e64a19;
    }

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px;
    margin-top: 100px;
}

.extra-description {
    max-width: 900px;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

    .extra-description h3 {
        margin-top: 0;
        font-size: 22px;
        color: #002366;
    }

    .extra-description h4 {
        margin-top: 20px;
        font-size: 18px;
        color: #333;
    }

    .extra-description p {
        font-size: 16px;
        line-height: 1.6;
        color: #444;
    }

    .extra-description ul {
        margin: 15px 0 0 20px;
    }

    .extra-description li {
        margin-bottom: 8px;
    }