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

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fdfdfd;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.site-header {
    background-color: #f7f7f7;
    border-bottom: 2px solid #e0e0e0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.logo img {
    height: 60px;
}

.site-header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.site-header nav a {
    color: #555;
    font-weight: bold;
    transition: color 0.2s ease-in-out;
}

.site-header nav a.active,
.site-header nav a:hover {
    color: #333;
}

/* Hero section */
.hero {
    position: relative;
    background-image: url('images/AdobeStock_160878645.jpeg');
    background-size: cover;
    background-position: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Services */
.services {
    padding: 60px 0;
    background-color: #fafafa;
    text-align: center;
}

.services h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #333;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.service-item {
    background: #fff;
    border: 1px solid #eaeaea;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.service-item h3 {
    margin-bottom: 10px;
    font-size: 1.25rem;
    color: #555;
}

.service-item p {
    font-size: 0.95rem;
    color: #777;
}

/* About */
.about {
    padding: 60px 0;
}

.about-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.about-image img {
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    width: 200px;
    height: auto;
}

.about-text {
    max-width: 700px;
    text-align: left;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.about-text p {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.5;
}

/* Contact page specific */
.contact-about {
    background-color: #f7f7f7;
}

.contact-form-section {
    padding: 60px 0;
    background: #fafafa;
}

.contact-form-section h2 {
    margin-bottom: 10px;
    font-size: 2rem;
    color: #333;
}

.contact-form-section p {
    margin-bottom: 20px;
    color: #666;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.form-row label {
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

.form-row input,
.form-row textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

.form-row textarea {
    resize: vertical;
}

.form-row button {
    padding: 12px 20px;
    border: none;
    background: #666;
    color: white;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.form-row button:hover {
    background: #444;
}

/* Footer */
.site-footer {
    background: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.footer-inner p {
    font-size: 0.9rem;
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .about-inner {
        flex-direction: row;
        justify-content: space-between;
    }
    .about-image img {
        width: 250px;
    }
}