body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #000;
    border-bottom: 2px solid #fff;
}

.logo img {
    width: 150px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
}

.user-icon img {
    width: 40px;
    cursor: pointer;
}

main {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.reviews {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
}

.arrow {
    background: none;
    border: none;
    color: #fff;
    font-size: 36px;
    cursor: pointer;
}

.review-card {
    background-color: #222;
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    width: 300px;
    text-align: center;
    border: 2px solid #444;
}

.stars {
    color: gold;
    font-size: 24px;
    margin-bottom: 10px;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.reviewer img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.reviewer .name {
    font-weight: bold;
}

.reviewer .date {
    color: #777;
    font-size: 14px;
}

#story {
    text-align: center;
    margin-top: 20px;
}

#story h2 {
    font-size: 28px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

#story .details {
    list-style: none;
    padding: 0;
    text-align: left;
    display: inline-block;
}

#story .details li {
    font-size: 18px;
    margin-bottom: 10px;
}

#story p {
    font-size: 18px;
    line-height: 1.6;
    max-width: 800px;
    margin: 20px auto;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    justify-items: center;
    margin-top: 40px;
}

.portfolio-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #444;
}

#services {
    text-align: center;
}

#services h2 {
    font-size: 28px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

#services ul {
    list-style: none;
    padding: 0;
}

#services ul li {
    font-size: 18px;
    margin-bottom: 10px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 300px;
    color: #000;
    border-radius: 8px;
}

.close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close-modal:hover,
.close-modal:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
