/* Basic Reset & Fonts */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    overflow: hidden;
    padding: 0 20px;
}

/* Header & Navigation */
.main-header {
    background: #fff;
    padding: 1rem 0;
    border-bottom: 1px solid #ddd;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 50px;
}

.main-nav ul {
    list-style: none;
}

.main-nav ul li {
    display: inline;
    margin-left: 20px;
}

.main-nav a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 80px 20px;
}

.hero-section h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.cta-button {
    display: inline-block;
    background: #e8491d;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
}

/* Services Section */
.services-section {
    padding: 40px 0;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.service-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    font-weight: bold;
}

/* About Owner Section */
.about-owner-section {
    display: flex;
    gap: 30px;
    align-items: center;
    padding: 60px 0;
    background: #fff;
    margin-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
}

.owner-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

/* Footer */
.main-footer {
    text-align: center;
    padding: 20px;
    margin-top: 20px;
    background: #333;
    color: #fff;
}

.main-footer a {
    color: #e8491d;
    text-decoration: none;
}