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

body {
    font-family: 'Helvetica Neue', sans-serif;
    color: #333;
    line-height: 1.6;
    background: #f9f5f0;
}

.logo {
    width: 50px;
    height: 50px;
    margin-right: 15px;
}

header {
    padding: 20px 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav a {
    text-decoration: none;
    color: #333;
    padding: 10px 15px;
    margin: 0 5px;
    transition: all 0.3s;
}

nav a.active, nav a:hover {
    background: rgba(106, 76, 147, 0.1);
    border-radius: 4px;
}

/* Hero Section Fix */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('../images/hero-bg.jpg') center/cover no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

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

.sailing h3, .governance h3 {
    text-align: center;
    margin-bottom: 2rem;
    color:#23265e;
    font-size: 2rem;
}

/* Fund Cards */
.fund-card {
    background: white;
    border: 2px solid #1a3e72;
    border-radius: 8px;
    padding: 25px;
    margin: 20px auto;
    max-width: 300px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.fund-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Calculator Section */
.calculator {
    padding: 50px 20px;
    text-align: center;
}

.calculator input {
    padding: 10px;
    margin: 10px;
    width: 200px;
}

.calculator button {
    padding: 10px 20px;
    background-color: #2e8b57;
    color: white;
    border: none;
    cursor: pointer;
}

.calculator button:hover {
    background-color: #1f6b42;
}

/* Audio Section */
.ocean-audio {
    width: 60%;
    margin-top: 15px;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px;
    background: #333;
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    header table {
        display: block;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}
