/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #336568;
    --accent-color: #86e579;
    --dark-gray: #333333;
    --light-gray: #F5F5F5;
    --white: #FFFFFF;
    --text-primary: #333333;
    --text-secondary: rgba(51, 51, 51, 0.8);
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #FFFFFF;
}

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

/* Header Styles */
.header {
    background-color: #ffffff;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.logo h1 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #86e579;
    transition: all 0.3s ease;
    position: relative;
}

.logo h1:hover {
    color: #336568;
    transform: scale(1.05);
}

/* Remove the decorative element as we now have a logo image */

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

.nav a {
    color: #336568;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.nav a:hover {
    color: #86e579;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, #86e579, #336568);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(51, 101, 104, 0.85) 0%, rgba(42, 83, 86, 0.85) 100%), url('../images/home-bg.jpg') center/cover no-repeat;
    color: #FFFFFF;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #86e579;
}

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

.cta-section {
    background: rgba(255, 255, 255, 0.15);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem auto;
    max-width: 800px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(245, 245, 245, 0.3);
    box-shadow: 0 8px 32px rgba(51, 51, 51, 0.1);
}

.cta-section h3 {
    color: #86e579;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

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

.cta-button {
    display: inline-block;
    background-color: #86e579;
    color: #336568;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #6bd461;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(134, 229, 121, 0.3);
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: #F5F5F5;
}

.about h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #336568;
    margin-bottom: 2rem;
}

.intro-text {
    text-align: center;
    font-size: 1.2rem;
    color: #333333;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.8;
}

.service-section {
    margin-bottom: 3rem;
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(51, 51, 51, 0.1);
    border: 1px solid rgba(134, 229, 121, 0.2);
}

.service-section h3 {
    color: #336568;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    border-bottom: 3px solid #86e579;
    padding-bottom: 0.5rem;
}

.service-section h4 {
    color: #336568;
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
}

.service-list,
.issues-list,
.guarantee-list {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.service-list li,
.issues-list li,
.guarantee-list li {
    margin-bottom: 0.8rem;
    position: relative;
}

.service-list li::before,
.issues-list li::before,
.guarantee-list li::before {
    content: "✓";
    color: #86e579;
    font-weight: bold;
    position: absolute;
    left: -1.5rem;
}

.highlight-box {
    background: linear-gradient(135deg, #336568, #2a5356);
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    border-left: 5px solid #86e579;
}

.highlight-box p {
    margin-bottom: 1rem;
}

.highlight-box strong {
    color: #86e579;
}

/* Service Images */
.service-header {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
}

.service-content {
    flex: 1;
}

.service-image {
    flex: 0 0 300px;
}

.wealth-img, .partner-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.partner-img {
    width: 10%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.wealth-img:hover, .partner-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #336568 0%, #333333 100%);
    color: #FFFFFF;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(51, 101, 104, 0.95) 0%, rgba(51, 51, 51, 0.95) 100%);
    z-index: 1;
}

.contact .container {
    position: relative;
    z-index: 2;
}

.contact h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #86e579;
    margin-bottom: 1rem;
}

.contact-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-info {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-details h3 {
    color: #86e579;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

.contact-details a {
    color: #86e579;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #6bd461;
}

/* Footer */
.footer {
    background-color: #333333;
    color: #FFFFFF;
    padding: 2rem 0;
    text-align: center;
}

.footer-content p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
    color: #F5F5F5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-wrapper {
        flex-direction: column;
        gap: 1rem;
    }
    

    
    .nav ul {
        gap: 1rem;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .cta-section {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .service-section {
        padding: 1.5rem;
    }
    
    .service-header {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .service-image {
        flex: none;
        order: -1;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .logo h1 {
        font-size: 1rem;
    }
    
    .about,
    .contact {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-section h3 {
        font-size: 1.5rem;
    }
    
    .about h2,
    .contact h2 {
        font-size: 1.8rem;
    }
    
    .service-section h3 {
        font-size: 1.5rem;
    }
    
    .logo {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .logo h1 {
        font-size: 0.9rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation for sections */
.service-section {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.service-section:nth-child(2) {
    animation-delay: 0.2s;
}

.service-section:nth-child(3) {
    animation-delay: 0.4s;
}

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