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

html {
    overflow-x: hidden;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
    overflow-x: hidden;
}

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

header {
    background: linear-gradient(135deg, #1a7f5a 0%, #2d9b6e 100%);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1000;
}

nav {
    background: transparent;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo img {
    height: 40px;
    width: auto;
}

.logo a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.nav-menu a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.nav-menu a:hover {
    opacity: 0.8;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle:hover {
    opacity: 0.8;
}

.hero {
    background: linear-gradient(135deg, #1a7f5a 0%, #2d9b6e 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
}

/* Investment Portfolio - Diagonal Stripe Pattern */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 50px,
        rgba(255, 255, 255, 0.03) 50px,
        rgba(255, 255, 255, 0.03) 100px
    );
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    display: inline-block;
}

.hero h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Keep hero typography legible on colorful backgrounds */
.hero,
.hero h1,
.hero h2,
.hero h3,
.hero p,
.hero li,
.hero span,
.hero strong {
    color: #fff;
}

.hero .subtitle {
    color: rgba(255, 255, 255, 0.92);
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Investment Portfolio - Info Panel Style */
.disclaimer-box {
    background: #e8f5f0;
    border: 2px solid #2d9b6e;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    margin: 2rem auto;
    max-width: 850px;
    box-shadow: 0 3px 12px rgba(45, 155, 110, 0.1);
}

.disclaimer-box::before {
    content: 'ℹ️';
    font-size: 1.3rem;
    margin-right: 0.5rem;
}

.disclaimer-box p {
    margin: 0 0 0.5rem 0;
    font-size: 0.96rem;
    color: #0d5940;
    line-height: 1.6;
}

.disclaimer-box strong {
    color: #1a7f5a;
    font-weight: 600;
}

.disclaimer-box ul {
    margin-left: 2rem;
    margin-top: 0.5rem;
    color: #0d5940;
}

section {
    padding: 4rem 0;
}

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

section .container {
    text-align: center;
}

section .container > h2,
section .container > p:not(.disclaimer-box p),
section .container > .intro-content,
section .container > .intro-text {
    text-align: center;
}

section .container ul,
section .container ol,
section .container .about-text,
section .container .service-item,
section .container .about-content {
    text-align: left;
}

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

h3 {
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
}

p:last-child {
    margin-bottom: 0;
}

/* Investment Portfolio - Professional Text Styles */
section:not(.hero) p {
    line-height: 1.8;
    font-size: 1.05rem;
    color: #2c3e50;
    font-weight: 400;
}

section:not(.hero) strong {
    font-weight: 700;
    color: #1a7f5a;
}

section:not(.hero) .subtitle {
    font-size: 1.25rem;
    color: #1a7f5a;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Investment Portfolio - Unique Layout: 3-Column Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 2rem;
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Investment - Card with Top Accent Bar */
.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(26, 127, 90, 0.1);
    transition: all 0.3s ease;
    border-top: 5px solid #2d9b6e;
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #1a7f5a, #2d9b6e);
    transition: width 0.4s ease;
}

.service-card:hover::after {
    width: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(26, 127, 90, 0.2);
    border-top-width: 7px;
}

.service-card h3 {
    color: #1a7f5a;
    margin-bottom: 1rem;
    font-weight: 600;
}

.ai-tools {
    background-color: #f9f9f9;
}

.ai-content {
    max-width: 1000px;
    margin: 0 auto;
}

.ai-content > p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    text-align: center;
}

.ai-tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.ai-tool-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.ai-tool-card h3 {
    color: #764ba2;
    margin-bottom: 1rem;
}

/* Investment Portfolio - Pricing: Horizontal Slider Layout */
.pricing-grid {
    display: flex;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    justify-content: center;
    flex-wrap: wrap;
}

.pricing-card {
    flex: 1 1 300px;
    max-width: 350px;
}

/* Investment - Pricing Card with Header */
.pricing-card {
    background: white;
    padding: 0;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(26, 127, 90, 0.12);
    text-align: center;
    transition: all 0.3s;
    overflow: visible;
}

.pricing-card h3 {
    background: linear-gradient(135deg, #1a7f5a, #2d9b6e);
    color: white;
    padding: 1.5rem;
    margin: 0 0 2rem 0;
    font-size: 1.6rem;
    font-weight: 600;
}

.pricing-card > div,
.pricing-card > ul,
.pricing-card > .price,
.pricing-card > p,
.pricing-card > button {
    padding: 0 2.5rem;
}

.pricing-card > ul {
    padding: 0 2.5rem 2rem 2.5rem;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(26, 127, 90, 0.2);
}

.pricing-card.featured {
    border: 3px solid #2d9b6e;
    transform: scale(1.03);
}

.pricing-card.featured h3 {
    background: linear-gradient(135deg, #2d9b6e, #1a7f5a);
    font-size: 1.8rem;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #764ba2;
    margin: 1rem 0;
}

.pricing-card ul {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.pricing-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.pricing-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.btn-order {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: opacity 0.3s;
    width: 100%;
}

.btn-order:hover {
    opacity: 0.9;
}

.contact {
    text-align: center;
}

.contact p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Investment Portfolio - Professional Green Footer */
footer {
    background: linear-gradient(135deg, #1a7f5a 0%, #0d5940 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
    border-top: 3px solid #2d9b6e;
    box-shadow: 0 -5px 20px rgba(29, 155, 110, 0.2);
}

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

footer a {
    color: #7de3a6;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

footer a:hover {
    color: white;
    text-shadow: 0 0 10px rgba(125, 227, 166, 0.5);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 10px;
    max-width: 500px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
}

.close:hover {
    color: #333;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

form label {
    font-weight: bold;
    margin-top: 0.5rem;
}

form input,
form textarea {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

form textarea {
    resize: vertical;
}

/* Investment Portfolio - Rounded Pill-Style Form Inputs */
form input:not([type="submit"]),
form textarea,
form select {
    border: 2px solid #2d9b6e;
    border-radius: 25px;
    padding: 0.875rem 1.25rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

form textarea {
    border-radius: 15px;
}

form input:not([type="submit"]):focus,
form textarea:focus,
form select:focus {
    outline: none;
    border-color: #1a7f5a;
    background: white;
    box-shadow: 0 4px 12px rgba(29, 155, 110, 0.15);
}

.form-disclaimer {
    background: #fff3cd;
    padding: 1rem;
    border-radius: 5px;
    margin: 1rem 0;
}

.btn-submit {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1rem;
    font-size: 1.1rem;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 1rem;
}

.btn-submit:hover {
    opacity: 0.9;
}

.intro {
    padding: 4rem 0;
    background-color: white;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.services-list {
    margin-bottom: 3rem;
    text-align: left;
}

.service-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f9f9f9;
    border-radius: 10px;
}

.service-item:last-child {
    margin-bottom: 0;
}

.service-item h3 {
    color: #667eea;
    margin-bottom: 1rem;
}

.service-item p {
    margin-bottom: 0;
}

.cta-buttons {
    margin-top: 2.5rem;
}

.btn-primary,
.btn-secondary {
    margin-bottom: 1rem;
}

.btn-primary:last-child,
.btn-secondary:last-child {
    margin-bottom: 1rem;
}

section .container > p:not(.disclaimer-box p) {
    margin-bottom: 2rem;
}

section .container > .btn-primary,
section .container > .btn-secondary {
    margin-top: 2rem;
}

.intro-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #667eea;
}

.intro-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: opacity 0.3s;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #1a7f5a 0%, #2d9b6e 100%);
    color: white;
}

.btn-secondary {
    background: white;
    color: #1a7f5a;
    border: 2px solid #1a7f5a;
}

.btn-primary:hover, .btn-secondary:hover {
    opacity: 0.9;
}

.about-detailed, .services-detailed, .ai-tools-detailed, .pricing-detailed, .contact-detailed {
    padding: 4rem 0;
}

.about-detailed {
    background-color: white;
}

.about-detailed .container {
    text-align: center;
}

.about-detailed .about-content {
    text-align: left;
}

.about-detailed h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.about-detailed h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #764ba2;
}

.about-detailed p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-detailed ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-detailed ul li {
    margin-bottom: 0.5rem;
}

.terms-detailed {
    padding: 4rem 0;
    background-color: white;
}

.terms-detailed .container {
    text-align: center;
}

.terms-detailed .about-content {
    text-align: left;
    max-width: 900px;
}

.terms-detailed h2 {
    text-align: left;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #667eea;
}

.terms-detailed h2:first-child {
    margin-top: 0;
}

.terms-detailed p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.terms-detailed ul {
    margin-left: 2rem;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.terms-detailed ul li {
    margin-bottom: 0.5rem;
}

.terms-detailed .disclaimer-box {
    text-align: left;
}

.terms-detailed .disclaimer-box ul {
    margin-left: 1.5rem;
    margin-top: 0.5rem;
}

.terms-detailed .btn-order {
    margin-top: 2rem;
}

.services-detailed, .ai-tools-detailed {
    background-color: #f9f9f9;
}

.pricing-detailed, .contact-detailed {
    background-color: white;
}

/* Investment - Detailed Sections with Side Accent */
.service-detailed, .ai-tool-detailed {
    margin-bottom: 3rem;
    padding: 2.5rem 2.5rem 2.5rem 3rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(26, 127, 90, 0.1);
    border-left: 6px solid #2d9b6e;
    transition: all 0.3s ease;
}

.service-detailed:hover, .ai-tool-detailed:hover {
    border-left-width: 8px;
    box-shadow: 0 7px 28px rgba(26, 127, 90, 0.15);
}

.service-detailed h2, .ai-tool-detailed h2 {
    color: #1a7f5a;
    margin-bottom: 1.5rem;
    font-size: 1.9rem;
    font-weight: 600;
}

.service-detailed h3, .ai-tool-detailed h3 {
    color: #2d9b6e;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-detailed ul, .ai-tool-detailed ul {
    margin-left: 2rem;
    margin-top: 1rem;
    line-height: 1.9;
}

.service-detailed ul li, .ai-tool-detailed ul li {
    margin-bottom: 0.7rem;
}

.service-detailed ul li::marker, .ai-tool-detailed ul li::marker {
    color: #2d9b6e;
    font-weight: bold;
}

.intro-text {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.pricing-details {
    text-align: left;
    margin: 2rem 0;
}

.pricing-details h4 {
    color: #667eea;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.pricing-details ul {
    list-style: none;
    margin-left: 0;
}

.pricing-details ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.pricing-details ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.duration {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1rem;
}

.savings {
    color: #28a745;
    font-weight: bold;
    margin-bottom: 1rem;
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #ffd700;
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.pricing-card {
    position: relative;
}

.payment-info, .faq-section {
    margin-top: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Investment - FAQ Card Style */
.faq-item {
    margin-bottom: 2rem;
    padding: 2rem 2.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 18px rgba(26, 127, 90, 0.1);
    border-top: 4px solid #2d9b6e;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(26, 127, 90, 0.15);
    border-top-width: 6px;
}

.faq-item h3 {
    color: #1a7f5a;
    margin-bottom: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.faq-item h3::before {
    content: '?';
    width: 28px;
    height: 28px;
    background: #2d9b6e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.faq-item p {
    line-height: 1.8;
    color: #2c3e50;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-method {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f9f9f9;
    border-radius: 10px;
}

.contact-method h3 {
    color: #667eea;
    margin-bottom: 0.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

.contact-form textarea {
    resize: vertical;
}

.response-time, .consultation-process {
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.consultation-process ol {
    margin-left: 2rem;
    line-height: 1.8;
}

.consultation-process ol li {
    margin-bottom: 1rem;
}

.cta-section {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, #1a7f5a 0%, #2d9b6e 100%);
    color: white;
    border-radius: 10px;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: white !important;
}

.cta-section .btn-primary {
    background: white;
    color: #1a7f5a;
    margin-right: 1rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.cta-section .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    display: inline-block;
    margin-bottom: 1rem;
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.hero-image-container {
    max-width: 400px;
    margin: 0 auto 2rem;
    text-align: center;
}

.person-image {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 0 auto;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.person-portrait {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 0 auto 2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

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

/* Investment - Feature Card with Side Accent */
.feature-card {
    background: white;
    padding: 2.5rem 2.5rem 2.5rem 3rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(26, 127, 90, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    border-left: 6px solid #2d9b6e;
    position: relative;
}

.feature-card::before {
    content: '✓';
    position: absolute;
    left: 10px;
    top: 20px;
    width: 24px;
    height: 24px;
    background: #2d9b6e;
    border-radius: 50%;
    color: white;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.feature-card:hover {
    transform: translateX(5px);
    box-shadow: -5px 5px 20px rgba(26, 127, 90, 0.2);
    border-left-width: 8px;
}

.feature-card h3 {
    color: #1a7f5a;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 12px rgba(26, 127, 90, 0.15);
    border: 2px solid #e8f5f0;
}

.about-image {
    text-align: center;
    margin-bottom: 2rem;
}

.about-image img {
    max-width: 100%;
    height: auto;
}

.intro-image, .service-image-intro {
    text-align: center;
    margin-bottom: 2rem;
}

.content-image {
    max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 0 auto;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .content-image {
        max-width: 100%;
    }
    
    .modal-content {
        margin: 2% auto;
        padding: 1.5rem;
        max-width: 95%;
        max-height: 95vh;
    }
}

@media (max-width: 1200px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #1a7f5a 0%, #2d9b6e 100%);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
        padding: 0;
    }

    .nav-menu a {
        display: block;
        padding: 1rem 2rem;
        width: 100%;
    }

    nav .container {
        position: relative;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-section .btn-primary,
    .cta-section .btn-secondary {
        display: block;
        margin: 0.5rem 0;
    }

    .hero-image-container {
        max-width: 100%;
        padding: 0 1rem;
    }

    .person-image {
        max-width: 250px;
    }

    .person-portrait {
        max-width: 100%;
    }

    .feature-card img {
        max-width: 100%;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .map-wrapper {
        margin-top: 1rem;
    }

    .map-wrapper iframe {
        width: 100%;
        height: 300px;
    }

    h2 {
        font-size: 1.5rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .logo img {
        height: 30px;
    }
}

.map-wrapper {
    margin-top: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.map-wrapper iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

.map-placeholder {
    background: #f5f5f5;
    padding: 3rem;
    text-align: center;
    border-radius: 10px;
    border: 2px dashed #ccc;
}

.contact-info-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.contact-form-main {
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .contact-info-main {
        grid-template-columns: 1fr;
    }

    .contact-form-main {
        max-width: 100%;
    }
}

.map-container {
    margin-top: 3rem;
}

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

/* Investment - AI Feature with Top Badge */
.ai-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.ai-feature {
    background: linear-gradient(to right, #f0f9f6 0%, white 100%);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(26, 127, 90, 0.1);
    border-left: 6px solid #2d9b6e;
    position: relative;
}

.ai-feature::before {
    content: 'AI';
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #1a7f5a, #2d9b6e);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.ai-feature h3 {
    color: #1a7f5a;
    margin-bottom: 1rem;
    font-weight: 600;
}

.services-preview, .ai-preview, .pricing-preview, .pricing-highlight, .about-preview, .disclaimer-section, .contact-section {
    padding: 4rem 0;
}

.pricing-highlight {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    text-align: center;
}

/* Investment Portfolio - Unique Slide-in Animations */
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

h1 {
    animation: slideInFromLeft 0.8s ease-out;
}

/* Testimonial Section - Investment Portfolio */
.testimonials-section {
    background: linear-gradient(135deg, #f0f9f6 0%, #e8f5f0 100%);
    padding: 4rem 0;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    overflow-x: auto;
    padding-bottom: 1rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(26, 127, 90, 0.1);
    min-width: 350px;
    transition: all 0.3s ease;
    border: 2px solid #2d9b6e;
    animation: slideInFromLeft 0.8s ease-out;
    animation-fill-mode: both;
}

.testimonial-card:nth-child(even) {
    animation: slideInFromRight 0.8s ease-out;
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }

.testimonial-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(26, 127, 90, 0.2);
    border-color: #1a7f5a;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a7f5a 0%, #2d9b6e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.4rem;
}

.testimonial-info h4 {
    margin: 0;
    color: #1a7f5a;
    font-weight: 600;
}

.testimonial-rating {
    color: #2d9b6e;
    font-size: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    line-height: 1.7;
    border-left: 3px solid #2d9b6e;
    padding-left: 1rem;
}

.service-card,
.pricing-card,
.feature-card {
    animation: scaleIn 0.6s ease-out;
    transition: all 0.3s ease;
}

.service-card:hover,
.pricing-card:hover,
.feature-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(26, 127, 90, 0.3);
}

.service-card:nth-child(odd) {
    animation: slideInFromLeft 0.8s ease-out;
}

.service-card:nth-child(even) {
    animation: slideInFromRight 0.8s ease-out;
}

.btn-primary {
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 127, 90, 0.4);
}

