* {
    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, #1a2332 0%, #2c4563 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, #1a2332 0%, #2c4563 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    border-bottom: 3px solid #d4af37;
}

/* Financial Planning - Elegant Border Pattern */
.hero::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent,
        rgba(212, 175, 55, 0.5) 20%,
        rgba(212, 175, 55, 0.8) 50%,
        rgba(212, 175, 55, 0.5) 80%,
        transparent
    );
}

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

.hero h1 {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    font-weight: 300;
    position: relative;
}

.hero h1::before,
.hero h1::after {
    content: '◆';
    color: #d4af37;
    margin: 0 1rem;
    font-size: 0.6em;
}

.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;
}

/* Financial Planning - Elegant Notice Style */
.disclaimer-box {
    background: #faf8f5;
    border-top: 3px solid #d4af37;
    border-bottom: 3px solid #d4af37;
    border-radius: 6px;
    padding: 2rem 2.5rem;
    margin: 2rem auto;
    max-width: 850px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.1);
    position: relative;
}

.disclaimer-box::before {
    content: '◆';
    position: absolute;
    left: 1rem;
    top: 2rem;
    font-size: 1.2rem;
    color: #d4af37;
}

.disclaimer-box p {
    margin: 0 0 0.5rem 0;
    font-size: 0.97rem;
    color: #4a4a4a;
    font-family: Georgia, serif;
    line-height: 1.7;
}

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

.disclaimer-box ul {
    margin-left: 2rem;
    margin-top: 0.5rem;
    color: #4a4a4a;
    font-family: Georgia, serif;
}

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: #d4af37;
}

h3 {
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
}

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

/* Financial Planning - Elegant Text Styles */
section:not(.hero) p {
    line-height: 1.85;
    font-size: 1.05rem;
    color: #3a3a3a;
    font-weight: 400;
}

section:not(.hero) strong {
    font-weight: 600;
    color: #d4af37;
    font-style: italic;
}

section:not(.hero) .subtitle {
    font-size: 1.35rem;
    color: #1a2332;
    font-weight: 500;
    letter-spacing: 1.5px;
    font-family: Georgia, serif;
}

.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;
}

/* Financial Planning - Unique Layout: Elegant Vertical Stack */
.services-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 2rem;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    border-left: 4px solid #d4af37;
    padding-left: 2rem;
    position: relative;
}

.service-card::before {
    content: '◆';
    position: absolute;
    left: -12px;
    top: 0;
    color: #d4af37;
    font-size: 1.2rem;
}

/* Financial Planning - Elegant Card with Border Frame */
.service-card {
    background: #fafafa;
    padding: 3rem 2.5rem;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.12);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #e5e5e5;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 6px;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.2);
    background: white;
}

.service-card h3 {
    color: #d4af37;
    margin-bottom: 1rem;
    font-family: Georgia, serif;
    font-weight: 600;
    font-size: 1.5rem;
}

.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;
}

/* Financial Planning - Pricing: Featured Center Layout */
.pricing-grid {
    display: flex;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: flex-end;
    justify-content: center;
    flex-wrap: wrap;
}

.pricing-card.featured {
    order: 0;
    flex: 1 1 350px;
    border: 2px solid #d4af37;
}

.pricing-card:not(.featured) {
    flex: 1 1 280px;
}

/* Financial Planning - Elegant Pricing Card */
.pricing-card {
    background: linear-gradient(135deg, #ffffff 0%, #faf8f5 100%);
    padding: 3rem 2.5rem;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.15);
    border: 2px solid rgba(212, 175, 55, 0.3);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.pricing-card::before {
    content: '◆';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #d4af37;
    font-size: 1.5rem;
}

.pricing-card h3 {
    color: #1a2332;
    margin-bottom: 1rem;
    margin-top: 1rem;
    font-family: Georgia, serif;
    font-weight: 500;
    font-size: 1.7rem;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(212, 175, 55, 0.25);
    border-color: #d4af37;
}

.pricing-card.featured {
    border: 3px solid #d4af37;
    transform: scale(1.05);
    background: linear-gradient(135deg, #fffdf7 0%, #faf8f5 100%);
}

.pricing-card.featured::after {
    content: '★ РЕКОМЕНДУЕМ ★';
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #d4af37;
    font-size: 0.85rem;
    letter-spacing: 2px;
    font-weight: 600;
}

.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, #1a2332 0%, #d4af37 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;
}

/* Financial Planning - Elegant Navy Footer with Gold Accents */
footer {
    background: linear-gradient(135deg, #1a2332 0%, #0f1419 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
    border-top: 3px solid #d4af37;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

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

footer a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

footer a:hover {
    color: #f4cf6d;
    border-bottom-color: #d4af37;
}

/* 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;
}

/* Financial Planning - Classic Form Inputs with Gold Border */
form input:not([type="submit"]),
form textarea,
form select {
    border: 2px solid #d4af37;
    border-radius: 4px;
    padding: 0.875rem;
    transition: all 0.3s ease;
    background: #fafafa;
    font-family: Georgia, serif;
}

form input:not([type="submit"]):focus,
form textarea:focus,
form select:focus {
    outline: none;
    border-color: #b8941f;
    background: white;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.2);
}

.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, #1a2332 0%, #d4af37 100%);
    color: white;
}

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

.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;
}

/* Financial Planning - Detailed Sections Elegant */
.service-detailed, .ai-tool-detailed {
    margin-bottom: 3rem;
    padding: 3rem 2.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #faf8f5 100%);
    border-radius: 10px;
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.12);
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: all 0.4s ease;
    position: relative;
}

.service-detailed::before, .ai-tool-detailed::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    pointer-events: none;
}

.service-detailed:hover, .ai-tool-detailed:hover {
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
    border-color: #d4af37;
}

.service-detailed h2, .ai-tool-detailed h2 {
    color: #1a2332;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-family: Georgia, serif;
    font-weight: 500;
    text-align: center;
}

.service-detailed h2::before, .ai-tool-detailed h2::before {
    content: '◆ ';
    color: #d4af37;
}

.service-detailed h2::after, .ai-tool-detailed h2::after {
    content: ' ◆';
    color: #d4af37;
}

.service-detailed h3, .ai-tool-detailed h3 {
    color: #d4af37;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-family: Georgia, serif;
    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: #d4af37;
}

.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;
}

/* Financial Planning - FAQ Elegant List Style */
.faq-item {
    margin-bottom: 2.5rem;
    padding: 2.5rem 3rem;
    background: linear-gradient(135deg, #ffffff 0%, #faf8f5 100%);
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.1);
    border-top: 3px solid #d4af37;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s ease;
    position: relative;
}

.faq-item::before {
    content: '◆';
    position: absolute;
    left: 1rem;
    top: 2.5rem;
    color: #d4af37;
    font-size: 1.2rem;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(212, 175, 55, 0.2);
    border-top-width: 5px;
}

.faq-item h3 {
    color: #1a2332;
    margin-bottom: 1rem;
    font-family: Georgia, serif;
    font-weight: 600;
    font-size: 1.3rem;
}

.faq-item p {
    line-height: 1.9;
    color: #4a4a4a;
    font-family: Georgia, serif;
}

.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, #1a2332 0%, #2c4563 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: #1a2332;
    margin-right: 1rem;
    display: inline-block;
    margin-bottom: 1rem;
    vertical-align: middle;
}

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

/* 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;
}

/* Financial Planning - Feature Card with Decorative Corners */
.feature-card {
    background: linear-gradient(135deg, #ffffff 0%, #faf8f5 100%);
    padding: 3rem 2.5rem;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.12);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    border: 2px solid rgba(212, 175, 55, 0.2);
    position: relative;
}

.feature-card::before,
.feature-card::after {
    content: '◆';
    position: absolute;
    color: #d4af37;
    font-size: 1.2rem;
}

.feature-card::before {
    top: 15px;
    left: 15px;
}

.feature-card::after {
    bottom: 15px;
    right: 15px;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.25);
    border-color: #d4af37;
}

.feature-card h3 {
    color: #1a2332;
    margin-bottom: 1rem;
    font-family: Georgia, serif;
    font-weight: 500;
    font-size: 1.4rem;
}

.feature-card img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
    border: 3px solid #d4af37;
}

.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, #1a2332 0%, #2c4563 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;
}

/* Financial Planning - AI Feature Elegant Card */
.ai-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.ai-feature {
    background: #fafafa;
    padding: 3rem 2.5rem;
    border-radius: 8px;
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.12);
    border: 2px solid rgba(212, 175, 55, 0.3);
    position: relative;
}

.ai-feature::before,
.ai-feature::after {
    content: '◆';
    position: absolute;
    color: #d4af37;
    font-size: 1.2rem;
}

.ai-feature::before {
    top: 15px;
    left: 15px;
}

.ai-feature::after {
    bottom: 15px;
    right: 15px;
}

.ai-feature h3 {
    color: #1a2332;
    margin-bottom: 1rem;
    font-family: Georgia, serif;
    font-weight: 600;
    font-size: 1.4rem;
}

.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;
}

/* Financial Planning - Elegant Sophisticated Animations */
@keyframes elegantFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
        letter-spacing: 10px;
    }
    to {
        opacity: 1;
        transform: translateY(0);
        letter-spacing: 3px;
    }
}

@keyframes goldShimmer {
    0% {
        background-position: -100% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes floatUp {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

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

@keyframes softGlow {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(212, 175, 55, 0.1);
    }
    50% {
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    }
}

h1 {
    animation: elegantFadeIn 1.2s ease-out;
}

/* Testimonial Section - Financial Planning (Elegant) */
.testimonials-section {
    background: linear-gradient(135deg, #f8f5f0 0%, #faf8f5 100%);
    padding: 5rem 0;
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent,
        rgba(212, 175, 55, 0.3) 20%,
        rgba(212, 175, 55, 0.6) 50%,
        rgba(212, 175, 55, 0.3) 80%,
        transparent
    );
}

.testimonials-section h2 {
    font-family: Georgia, serif;
    color: #1a2332;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.1);
    border-top: 4px solid #d4af37;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: elegantFadeIn 1s ease-out;
    animation-fill-mode: both;
    position: relative;
}

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

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #d4af37;
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.25);
    border-top-width: 6px;
}

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

.testimonial-avatar {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a2332 0%, #d4af37 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 500;
    font-size: 1.5rem;
    font-family: Georgia, serif;
    border: 2px solid #d4af37;
}

.testimonial-info h4 {
    margin: 0;
    color: #1a2332;
    font-weight: 600;
    font-family: Georgia, serif;
}

.testimonial-rating {
    color: #d4af37;
    font-size: 1.1rem;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    line-height: 1.8;
    font-family: Georgia, serif;
}

@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.service-card,
.pricing-card,
.feature-card {
    animation: fadeInUp 1s ease-out;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover,
.pricing-card:hover,
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.25);
    border-top-width: 6px;
}

.pricing-card.featured {
    animation: floatUp 3s ease-in-out infinite;
}

.btn-primary {
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-2px);
    animation: softGlow 2s ease-in-out infinite;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    animation: goldShimmer 3s infinite;
}

