body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f4f4f4;
}

header {
    background-color: #fee03b; /* Culoarea galbenă */
    color: white;
    text-align: center;
    padding: 1rem 0;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo {
    width: 100px;
}

.header-text {
    text-align: left;
}

.header-text h1 {
    font-size: 2rem;
    margin: 0;
}

.header-text p {
    font-size: 1rem;
    margin: 0;
}

.hero {
    background: url('hero-image.jpg') no-repeat center center/cover;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-content {
    text-align: center;
    color: white;
    animation: fadeIn 2s ease-in-out;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-button {
    background-color: #ff6f61;
    color: white;
    padding: 1rem 2rem;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #e65550;
}

.services {
    padding: 2rem;
    background-color: white;
    text-align: center;
}

.service-card {
    background-color: #f9f9f9;
    padding: 1rem;
    margin: 1rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: scale(1.05);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .header-text h1 {
        font-size: 1.5rem;
    }
    
    .header-text p {
        font-size: 0.875rem;
    }

    .logo {
        width: 80px;
    }
}

@media (max-width: 480px) {
    .header-text h1 {
        font-size: 1.2rem;
    }
    
    .header-text p {
        font-size: 0.75rem;
    }

    .logo {
        width: 60px;
    }
}
