/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: 60px 0;
}

h2 {
    margin-bottom: 30px;
    text-align: center;
}

/* Header styles */
header {
    padding: 20px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    margin-right: 20px;
}

.logo img {
    max-height: 60px;
}

header h1 {
    font-size: 1.8rem;
}

nav ul {
    display: flex;
}

nav li {
    margin-left: 20px;
}

/* Hero section */
.hero {
    text-align: center;
    padding: 100px 0;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.tagline {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Services section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    padding: 30px;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    margin-bottom: 15px;
}

/* About section */
.about p {
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact section */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.contact-item {
    text-align: center;
}

.contact-item h3 {
    margin-bottom: 10px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form h3 {
    margin-bottom: 20px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #ddd;
}

/* Footer styles */
footer {
    padding: 20px 0;
    text-align: center;
}

/* Responsive styles */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        text-align: center;
    }
    
    nav {
        margin-top: 20px;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    nav li {
        margin: 10px 0;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
}

/* Minimalist template styles */
.minimalist-template {
    font-family: 'Open Sans', sans-serif;
    background-color: white;
}

.minimalist-template header {
    padding: 30px 0;
}

.minimalist-template h1, .minimalist-template h2, .minimalist-template h3 {
    font-weight: 300;
}

.minimalist-template nav a {
    color: #000000;
    font-size: 0.9rem;
    font-weight: 400;
    transition: opacity 0.3s;
}

.minimalist-template nav a:hover {
    opacity: 0.7;
}

.minimalist-template .hero {
    background-color: #f8f8f8;
    padding: 150px 0;
}

.minimalist-template .hero h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 30px;
}

.minimalist-template .cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: #F44336;
    color: white;
    border: none;
    font-weight: 400;
    letter-spacing: 1px;
    transition: opacity 0.3s;
}

.minimalist-template .cta-button:hover {
    opacity: 0.9;
}

.minimalist-template section {
    padding: 100px 0;
}

.minimalist-template .service-card {
    background-color: white;
    padding: 40px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.minimalist-template .service-card h3 {
    font-weight: 400;
    margin-bottom: 20px;
}

.minimalist-template .contact-item {
    padding: 30px;
}

.minimalist-template .form-group input,
.minimalist-template .form-group textarea {
    border: none;
    background-color: #f8f8f8;
    padding: 15px;
}

.minimalist-template .submit-button {
    background-color: #000000;
    color: white;
    border: none;
    padding: 15px 40px;
    font-weight: 400;
    letter-spacing: 1px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.minimalist-template .submit-button:hover {
    opacity: 0.9;
}

.minimalist-template footer {
    padding: 50px 0;
    background-color: #000000;
    color: white;
}
