* {
    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: #f5f5f5;
}

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

/* Header & Navigation */
header {
    background: linear-gradient(135deg, #2c1654 0%, #4a1d7e 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo h1 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
    padding: 0.5rem 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: #d4af37;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #3d1f66 0%, #5a2d8f 100%);
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

/* Buttons */
.btn, .btn-secondary {
    display: inline-block;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
    font-weight: 500;
}

.btn {
    background-color: #d4af37;
    color: #2c1654;
}

.btn:hover {
    background-color: #e5c158;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid #d4af37;
    color: #d4af37;
    margin-top: 2rem;
}

.btn-secondary:hover {
    background-color: #d4af37;
    color: #2c1654;
}

/* Sections */
section {
    padding: 4rem 0;
    background-color: #fff;
}

section:nth-child(even) {
    background-color: #f9f9f9;
}

section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c1654;
}

section > .container > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #555;
    font-size: 1.1rem;
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.feature-card h3 {
    color: #4a1d7e;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

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

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.service-item {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #d4af37;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.service-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-left-width: 6px;
}

.service-item h3 {
    color: #2c1654;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.service-item p {
    color: #666;
    font-size: 0.95rem;
}

/* Medyum Cards */
.medyum-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.medyum-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s;
}

.medyum-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.medyum-card h3 {
    color: #2c1654;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.medyum-card .specialty {
    color: #d4af37;
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.medyum-card p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.medyum-card .experience {
    color: #4a1d7e;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Contact Form */
.contact-info {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 3rem;
}

.contact-info h3 {
    color: #2c1654;
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 1rem;
    color: #555;
}

.contact-info a {
    color: #4a1d7e;
    text-decoration: none;
}

.contact-info a:hover {
    color: #d4af37;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c1654;
    font-weight: 500;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a1d7e;
}

/* Footer */
footer {
    background: #2c1654;
    color: #fff;
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
}

footer p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero h2 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    nav .container {
        flex-direction: column;
        gap: 1rem;
    }
}