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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: #ff6b6b;
    transition: color 0.3s ease;
}

a:hover {
    color: #fa5252;
}

/* Header styles */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    width: 180px;
}

.logo-svg {
    width: 100%;
    height: auto;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    font-weight: 500;
    padding: 5px 0;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ff6b6b;
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

/* Hero section */
.hero {
    background: linear-gradient(135deg, #ff6b6b 0%, #f06292 100%);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background-color: #fff;
    color: #ff6b6b;
    font-weight: bold;
    padding: 12px 30px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.cta-button:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    color: #ff6b6b;
}

/* Featured section */
.featured {
    padding: 80px 0;
    background-color: #fff;
}

.featured h2, .categories h2, .about h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    position: relative;
}

.featured h2::after, .categories h2::after, .about h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #ff6b6b;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.content-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.content-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.content-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #343a40;
}

.content-card p {
    color: #6c757d;
}

/* Categories section */
.categories {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.category-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 150px;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.category-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.category-item svg {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.category-item span {
    font-weight: 500;
    color: #343a40;
}

/* About section */
.about {
    padding: 80px 0;
    background-color: #fff;
}

.about p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #6c757d;
    font-size: 1.1rem;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.feature {
    text-align: center;
    padding: 20px;
}

.feature svg {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #343a40;
}

.feature p {
    font-size: 1rem;
    margin-bottom: 0;
}

.cta {
    text-align: center;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    margin-top: 30px;
}

.cta h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #343a40;
}

/* Footer styles */
footer {
    background-color: #343a40;
    color: #adb5bd;
    padding: 50px 0 20px;
}

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

.footer-logo {
    width: 150px;
    margin-bottom: 20px;
}

.logo-svg-small {
    width: 100%;
    height: auto;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.link-column h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.link-column ul {
    list-style: none;
}

.link-column ul li {
    margin-bottom: 10px;
}

.link-column ul li a {
    color: #adb5bd;
    transition: color 0.3s ease;
}

.link-column ul li a:hover {
    color: #fff;
}

.copyright {
    text-align: center;
    border-top: 1px solid #495057;
    padding-top: 20px;
    font-size: 0.9rem;
}

/* Responsive styles */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .content-grid, .features {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-links {
        gap: 30px;
        margin-top: 20px;
    }
    
    nav ul {
        display: none;
    }
    
    .logo {
        width: 150px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 60px 0;
    }
    
    .featured, .categories, .about {
        padding: 50px 0;
    }
    
    .featured h2, .categories h2, .about h2 {
        font-size: 1.8rem;
    }
    
    .category-list {
        justify-content: center;
    }
    
    .category-item {
        width: 130px;
    }
}
