/* Reset some default browser styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 3px;
}

header, footer {
    color: #fff;
    text-align: center;
    padding: 1rem;
}

#logo {
    max-width: 360px;
}

/* Hero Section */
.hero {
    background: url('hero-image.jpg') no-repeat center center/cover;
    color: #fff;
    height: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-sub {
    background: url('hero-image.jpg') no-repeat center center/cover;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 20px;
}

.hero-content {
    max-width: 1200px;
}

.hero h1, h3 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: black;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.rental  {
    color: black;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #ff4500;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.btn:hover {
    background-color: #e63e00;
}

/* Services Section */
.services {
    padding: 2rem;
    background: #f9f9f9;
    text-align: center;
}

.services h2 {
    margin-bottom: 1rem;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.card {
    background: #fff;
    border: 1px solid #ddd;
    padding: 1.5rem;
    width: 300px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card h3 {
    margin-bottom: 0.5rem;
    color: #ff4500;
}

/* Portfolio Section */
.portfolio {
    padding: 2rem;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 900px;
}

.portfolio h2 {
    margin-bottom: 1rem;
}

.gallery {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.gallery img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    display: inline-block;
    margin: 5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1rem;
    }
    
    .hero p {
        font-size: 1rem;
    }

    .gallery {
        flex-direction: column;
        align-items: center;
    }
}