@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --bg-color: oklch(1 0 0);
    --text-primary: #333333;
    --text-secondary: #666666;
    --accent-gold: #d4af37;
    --accent-champagne: #f7e7ce;
    --shadow-light: 8px 8px 16px #e6e6e6, -8px -8px 16px #ffffff;
    --shadow-inset: inset 4px 4px 8px #e6e6e6, inset -4px -4px 8px #ffffff;
    --radius: 20px;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
}

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

header {
    padding: 2rem 0;
    text-align: center;
}

h1, h2, h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
}

.accent-text {
    color: var(--accent-gold);
}

.neumorphic-card {
    background-color: var(--bg-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-light);
    padding: 2rem;
    margin-bottom: 2rem;
}

.neumorphic-button {
    display: inline-block;
    background-color: var(--bg-color);
    color: var(--accent-gold);
    border: none;
    border-radius: 50px;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: var(--shadow-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.neumorphic-button:hover {
    box-shadow: var(--shadow-inset);
}

.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.hero-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-light);
}

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

.service-card {
    text-align: center;
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-light);
}

.pricing-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.price-card {
    text-align: center;
    padding: 3rem 2rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin: 1.5rem 0;
}

.faq-section {
    margin-bottom: 4rem;
}

.faq-item {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
}

.faq-question {
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.faq-answer {
    display: block;
}

.contact-section {
    margin-bottom: 4rem;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 0.5rem;
    font-weight: 500;
}

input, textarea {
    background-color: var(--bg-color);
    border: none;
    border-radius: 10px;
    padding: 1rem;
    box-shadow: var(--shadow-inset);
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-primary);
    outline: none;
}

input:focus, textarea:focus {
    box-shadow: var(--shadow-light);
}

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

footer {
    text-align: center;
    padding: 3rem 0;
    margin-top: 4rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-links {
    margin-top: 1rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    margin: 0 1rem;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

@media (max-width: 768px) {
    .hero-section {
        grid-template-columns: 1fr;
    }
}
