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

body {
    font-family: 'Roboto', serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #faf8f5;
}

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

/* Header */
header {
    background: linear-gradient(135deg, #f5f3ef 0%, #e8f5f1 100%);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

header::before {
    content: "🧭";
    position: absolute;
    font-size: 200px;
    opacity: 0.05;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

h1 {
    font-size: 3em;
    color: #2c5f5d;
    margin-bottom: 20px;
    font-weight: 300;
}

.tagline {
    font-size: 1.5em;
    color: #5a7d7c;
    margin-bottom: 30px;
    font-style: italic;
}

.subtitle {
    font-size: 1.2em;
    color: #6b8e8e;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

/* Sections */
section {
    padding: 80px 20px;
}

.section-light {
    background: #ffffff;
}

.section-accent {
    background: linear-gradient(135deg, #f5f3ef 0%, #e8f5f1 100%);
}

h2 {
    font-size: 2.5em;
    color: #2c5f5d;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 300;
}

h3 {
    font-size: 1.8em;
    color: #3d6a68;
    margin-bottom: 20px;
    font-weight: 400;
}

/* Metaphor Section */
.metaphor-box {
    background: linear-gradient(135deg, #d4e9e7 0%, #f0f5f4 100%);
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.metaphor-icon {
    font-size: 80px;
    margin-bottom: 30px;
}

.metaphor-text {
    font-size: 1.4em;
    color: #2c5f5d;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    font-style: italic;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

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

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

.card-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.card h3 {
    color: #2c5f5d;
    font-size: 1.5em;
    margin-bottom: 15px;
    text-align: left;
}

.card p, .card ul {
    color: #5a7d7c;
    line-height: 1.8;
    text-align: left;
}

.card ul {
    list-style: none;
    padding-left: 0;
}

.card ul li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.card ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #7fb5b3;
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 40px auto;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.step-number {
    font-size: 3em;
    color: #7fb5b3;
    font-weight: bold;
    min-width: 80px;
    text-align: center;
}

.step-content h3 {
    color: #2c5f5d;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.step-content p {
    color: #5a7d7c;
    line-height: 1.8;
}

/* Packages */
.packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.package {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.package-highlight {
    background: linear-gradient(135deg, #d4e9e7 0%, #f0f5f4 100%);
    border: 3px solid #7fb5b3;
}

.package-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.package-name {
    font-size: 2em;
    color: #2c5f5d;
    margin-bottom: 15px;
    font-weight: 300;
}

.package-price {
    font-size: 2.5em;
    color: #3d6a68;
    margin: 20px 0;
    font-weight: bold;
}

.package-details {
    color: #5a7d7c;
    margin-bottom: 30px;
    line-height: 1.8;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
}

.package-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #5a7d7c;
}

.package-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #7fb5b3;
    font-weight: bold;
    font-size: 1.2em;
}

/* Button */
.btn {
    display: inline-block;
    background: linear-gradient(135deg, #5a9e9b 0%, #3d6a68 100%);
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.1em;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(61, 106, 104, 0.3);
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.about-text {
    color: #5a7d7c;
    line-height: 1.9;
}

.about-text p {
    margin-bottom: 20px;
}

.credentials {
    background: #f5f3ef;
    padding: 30px;
    border-radius: 15px;
    margin-top: 30px;
}

.credentials h4 {
    color: #2c5f5d;
    margin-bottom: 15px;
}

.credentials ul {
    list-style: none;
    padding: 0;
}

.credentials li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #5a7d7c;
}

.credentials li::before {
    content: "🎓";
    position: absolute;
    left: 0;
}

/* Testimonials */
.testimonial {
    background: white;
    padding: 40px;
    border-radius: 15px;
    margin: 30px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: relative;
}

.testimonial::before {
    content: "";
    font-size: 80px;
    color: #d4e9e7;
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: Georgia, serif;
}

.testimonial-text {
    color: #5a7d7c;
    line-height: 1.8;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    color: #3d6a68;
    font-weight: bold;
    text-align: right;
}

/* Form Section */
.form-intro {
    max-width: 700px;
    margin: 0 auto 40px;
    text-align: center;
    color: #5a7d7c;
    line-height: 1.8;
}

.optional-note {
    background: #f0f5f4;
    padding: 20px;
    border-radius: 10px;
    margin: 30px auto;
    max-width: 700px;
    text-align: center;
    color: #5a7d7c;
    font-style: italic;
}

/* Footer */
footer {
    background: #2c5f5d;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

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

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2em;
    }
    
    .tagline {
        font-size: 1.2em;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        min-width: auto;
    }
}
