/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Navigation */
header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ff6b6b;
    font-family: 'Georgia', serif;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    margin-left: 2rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ff6b6b;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(255, 107, 107, 0.7), rgba(255, 107, 107, 0.7)),
                url('https://images.unsplash.com/photo-1513519245088-0e12902e5a38?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 0 1rem;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    color: white;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-family: 'Georgia', serif;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.cta-button {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    background-color: white;
    color: #ff6b6b;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
}

.cta-button:hover {
    background-color: #ff6b6b;
    color: white;
    transform: translateY(-2px);
}

/* Cards Section */
.services {
    padding: 5rem 1rem;
    background-color: #fff5f5;
}

.services h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #ff6b6b;
    font-family: 'Georgia', serif;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    color: #ff6b6b;
    margin-bottom: 1rem;
    font-family: 'Georgia', serif;
}

/* Publishing Section */
.publishing {
    padding: 5rem 1rem;
    background-color: white;
    text-align: center;
}

.publishing h2 {
    color: #ff6b6b;
    margin-bottom: 1.5rem;
    font-family: 'Georgia', serif;
}

.publishing-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto;
}

.feature {
    padding: 2rem;
    background: #fff5f5;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature h3 {
    color: #ff6b6b;
    margin-bottom: 1rem;
    font-family: 'Georgia', serif;
}

/* About Section */
.about {
    padding: 5rem 1rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about h2 {
    color: #ff6b6b;
    margin-bottom: 2rem;
    font-family: 'Georgia', serif;
}

/* Contact Section */
.contact {
    padding: 5rem 1rem;
    background-color: #fff5f5;
    text-align: center;
}

.contact h2 {
    color: #ff6b6b;
    margin-bottom: 2rem;
    font-family: 'Georgia', serif;
}

.contact-info {
    max-width: 500px;
    margin: 2rem auto;
}

.contact-info p {
    margin: 1rem 0;
    font-size: 1.2rem;
}

/* Footer */
footer {
    background-color: #ff6b6b;
    color: white;
    text-align: center;
    padding: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .service-grid, .publishing-features {
        grid-template-columns: 1fr;
    }
}
