:root {
    --bg-color: #ffead0;
    --text-color: #000000;
    --font-main: "EB Garamond", serif;
    --btn-bg: #000000;
    --btn-text: #ffffff;
    --input-border: #000000;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
    font-size: 18px;
    scroll-behavior: smooth;
}

/* Typography elements */
h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 500;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

p {
    margin-bottom: 1rem;
}

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

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

/* Buttons */
.btn {
    display: inline-block;
    background-color: var(--btn-bg);
    color: var(--btn-text);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, opacity 0.2s;
    font-family: var(--font-main);
    font-weight: 500;
}

.btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.btn-centered {
    margin-top: 1rem;
}

/* Header */
.header {
    padding: 20px 0;
}

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

.logo {
    font-size: 1.8rem;
    font-weight: normal;
}

.nav a {
    color: var(--text-color);
    text-decoration: none;
    margin-left: 20px;
    font-size: 1.1rem;
    transition: opacity 0.2s;
}

.nav a:hover {
    opacity: 0.7;
}

/* Main Sections Layouts */
section {
    padding: 60px 0;
}

/* Hero Section */
.hero-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

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

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
}

/* How It Works Grid */
.features-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 2rem;
}

.feature-item {
    flex: 1;
    text-align: center;
}

/* Form Section */
.form-container {
    max-width: 600px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 2rem;
}

.contact-form input {
    width: 100%;
    padding: 15px 25px;
    border: 1px solid var(--input-border);
    border-radius: 50px;
    background-color: transparent;
    font-family: var(--font-main);
    font-size: 1.1rem;
    color: var(--text-color);
    outline: none;
    transition: background-color 0.2s;
}

.contact-form input::placeholder {
    color: #333;
}

.contact-form input:focus {
    background-color: rgba(255, 255, 255, 0.3);
}

.btn-submit {
    width: 100%;
    padding: 15px 25px;
    font-size: 1.2rem;
}

/* Ideal Solution */
.solution-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.solution-content {
    flex: 1.2;
}

.solution-content ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.solution-content li {
    margin-bottom: 10px;
}

.solution-image {
    flex: 0.8;
    display: flex;
    justify-content: center;
}

.solution-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.pricing-card h3 {
    margin-bottom: 15px;
}

.pricing-card .price {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 15px;
}

/* Footer */
.footer {
    padding: 20px 0;
    border-top: 1px solid rgba(0,0,0,0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-container, .solution-container {
        flex-direction: column;
        text-align: center;
    }

    .solution-content ul {
        text-align: left;
        display: inline-block;
    }

    .features-grid {
        flex-direction: column;
        gap: 40px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    
    .header-container {
        flex-direction: column;
        gap: 15px;
    }
}
