* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #333;
    background-color: #fef9f7;
}

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

header {
    background: linear-gradient(135deg, #f8e7e2 0%, #e8d5d1 100%);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #8b4b6b;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 15px;
    flex-wrap: wrap;
}

.nav-menu li a {
    color: #8b4b6b;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-menu li a:hover {
    background-color: #8b4b6b;
    color: white;
}

main {
    padding: 40px 0;
    min-height: calc(100vh - 200px);
}

.hero {
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(135deg, #fef9f7 0%, #f5e8e4 100%);
    margin-bottom: 40px;
    border-radius: 15px;
}

.hero h1 {
    font-size: 3.5em;
    color: #8b4b6b;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.hero p {
    font-size: 1.3em;
    color: #666;
    max-width: 600px;
    margin: 0 auto 30px;
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, #8b4b6b 0%, #a56080 100%);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 75, 107, 0.3);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 75, 107, 0.4);
}

.page-title {
    text-align: center;
    font-size: 2.8em;
    color: #8b4b6b;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

.content-section {
    background: white;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.content-section h2 {
    color: #8b4b6b;
    font-size: 2.2em;
    margin-bottom: 20px;
    border-bottom: 3px solid #f8e7e2;
    padding-bottom: 10px;
}

.content-section h3 {
    color: #a56080;
    font-size: 1.6em;
    margin: 25px 0 15px 0;
}

.content-section p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #444;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h3 {
    color: #8b4b6b;
    font-size: 1.4em;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

.highlight-box {
    background: linear-gradient(135deg, #f8e7e2 0%, #e8d5d1 100%);
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    border-left: 5px solid #8b4b6b;
}

.highlight-box h3 {
    color: #8b4b6b;
    margin-bottom: 15px;
}

footer {
    background: #8b4b6b;
    color: white;
    text-align: center;
    padding: 30px 0;
}

footer p {
    margin-bottom: 10px;
}

footer a {
    color: #f8e7e2;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
    }
    
    .hero h1 {
        font-size: 2.5em;
    }
    
    .hero p {
        font-size: 1.1em;
    }
    
    .page-title {
        font-size: 2.2em;
    }
    
    .content-section {
        padding: 25px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .hero h1 {
        font-size: 2em;
    }
    
    .content-section {
        padding: 20px;
    }
}