/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

img {
    max-width: 100%;
    height: auto;
}

/* Header styles */
header {
    background-color: #222;
    color: #fff;
}

.top-bar {
    background-color: #111;
    padding: 10px 0;
    text-align: center;
}

.top-bar a {
    color: #e74c3c;
    font-weight: bold;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
}

.logo span {
    color: #e74c3c;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #fff;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #e74c3c;
}

/* Navigation */
nav {
    background-color: #333;
    padding: 15px 5%;
}

.nav-menu {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 30px;
}

.nav-menu li a {
    color: #fff;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #e74c3c;
}

.mobile-menu {
    display: none;
}

/* Hero section */
.hero {
    position: relative;
    background-image: url('https://public.youware.com/users-website-assets/prod/e0596aa2-3c43-45e6-9696-d7898fd1d0ae/a53808a3796941dc93f8225166dfb3e4.jpg');
    background-size: cover;
    background-position: center;
    height: 500px;
    display: flex;
    align-items: center;
    color: #fff;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero h1 span {
    color: #e74c3c;
}

/* Main content */
.main-content {
    padding: 60px 5%;
}

/* Welcome section */
.welcome {
    padding: 60px 5%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.welcome-text {
    flex: 1;
    min-width: 300px;
}

.welcome-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.welcome-text h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: #e74c3c;
}

.welcome-text p {
    margin-bottom: 20px;
}

.welcome-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

/* Page title */
.page-title {
    background-color: #333;
    color: #fff;
    padding: 40px 5%;
    text-align: center;
}

.page-title h1 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.page-title h1::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: #e74c3c;
    transform: translateX(-50%);
}

/* Why us section */
.why-us {
    background-color: #f5f5f5;
    padding: 60px 5%;
    text-align: center;
}

.why-us h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}

.why-us h2::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: #e74c3c;
}

.pricing-info {
    margin: 30px 0;
}

/* Services section */
.services {
    padding: 60px 5%;
}

.service {
    background-color: #333;
    color: #fff;
    padding: 40px;
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.service-image {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.service-text {
    flex: 2;
    min-width: 300px;
}

.service h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #e74c3c;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    overflow: hidden;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card-image {
    height: 200px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.service-card:hover .service-card-image img {
    transform: scale(1.1);
}

.service-card-content {
    padding: 20px;
}

.service-card-content h3 {
    color: #333;
    margin-bottom: 10px;
}

.service-card-content p {
    margin-bottom: 15px;
}

.btn {
    display: inline-block;
    background-color: #e74c3c;
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

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

/* Contact section */
.contact {
    padding: 60px 5%;
    text-align: center;
}

.contact h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}

.contact h2::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: #e74c3c;
}

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

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    text-align: left;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

.submit-btn {
    background-color: #e74c3c;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #c0392b;
}

/* Contact info */
.contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
}

.contact-info-item {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
    padding: 30px;
    background-color: #f5f5f5;
    border-radius: 5px;
}

.contact-info-item i {
    font-size: 2rem;
    color: #e74c3c;
    margin-bottom: 15px;
}

.contact-info-item h3 {
    margin-bottom: 10px;
}

/* Footer */
footer {
    background-color: #222;
    color: #fff;
    padding: 60px 5% 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #e74c3c;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li i {
    margin-right: 10px;
    color: #e74c3c;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
}

/* Media queries for responsive design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-menu {
        display: block;
        cursor: pointer;
        font-size: 1.5rem;
    }
    
    .nav-menu.active {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .hero {
        height: 400px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .service {
        flex-direction: column;
        padding: 30px;
    }
    
    .service-image {
        order: -1;
    }
}