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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    color: #333;
}

header {
    background: rgba(255,255,255,0.95);
    padding: 1rem 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

header h1 {
    color: #764ba2;
}

nav a, nav button {
    margin-left: 1rem;
    text-decoration: none;
    color: #667eea;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

nav a:hover, nav button:hover {
    color: #764ba2;
}

main {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.hero {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.hero h2 {
    font-size: 2rem;
    color: #764ba2;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: transform 0.3s;
}

.btn:hover {
    transform: scale(1.05);
}

.zodiac-section, .services-section {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.zodiac-section h2, .services-section h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #764ba2;
}

.zodiac-grid, .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
}

.zodiac-card, .service-card {
    background: #f8f9ff;
    padding: 1rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
    border: 1px solid #e0e0e0;
}

.zodiac-card:hover, .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-color: #764ba2;
}

.zodiac-card a {
    text-decoration: none;
    color: #667eea;
    font-weight: bold;
}

.service-card {
    font-size: 1.2rem;
    font-weight: bold;
    color: #667eea;
}

footer {
    background: rgba(0,0,0,0.8);
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
}

.error {
    color: red;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.success {
    color: green;
    margin-top: 0.5rem;
}
