/* Base Styles */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

/* Top Bar */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.top-bar img.logo {
    max-height: 50px; /* Adjust based on actual logo size */
}
.menu {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px; /* Space between menu items */
}
.menu li {
    
    padding: 10px;
}
.menu a {
    text-align: right;
    font-weight: bold;
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
}
.menu a:hover {
    color: #ff5722; /* Change to match your theme */
}

/* Hero Section */
.hero-section {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('image/grow-coaching-business-with-ai.jpg');
    color: white;
    text-align: left;
    padding: 100px 20px;
    background-size: cover;
    background-position: center;
    height: 30vh;
    
}

/* Two Column Section */
.two-column-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px 5%;
}
.two-column-section .text, .two-column-section .image {
    flex: 1;
    min-width: 300px; /* Ensures content stacks under a certain size */
}
.two-column-section .image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px; /* Optional: Adds rounded corners to the image */
}

/* Video Section */
.video-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px 5%;
    gap: 20px;
}
.video-container {
    width: 100%;
    max-width: 500px; /* Adjust based on preference */
    padding: 10px;
}
.video-container iframe {
    width: 100%;
    height: 280px; /* Adjust height based on aspect ratio */
}

.language-dropdown select {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 200px;
    padding: 8px 16px;
    border: 1px solid #ccc; /* Light grey border */
    border-radius: 5px; /* Slightly rounded corners for a modern look */
    font-family: inherit; /* Matches the font of the rest of the site */
    font-size: 1rem; /* Matches the font size of the menu items */
    cursor: pointer;
    background-color: #f8f8f8; /* Light background color */
    color: #333; /* Text color */
    outline: none; /* Removes the default focus outline */
    appearance: none; /* Removes the default system appearance */
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2048 2048" fill="%23333"><path d="M2048 640v128h-2048v-128h2048zm0 512v128h-2048v-128h2048zm0 512v128h-2048v-128h2048z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #f0f0f0;
    color: #333;
    font-size: 0.9rem;
    border-top: 1px solid #e0e0e0;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    margin: 10px 0;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: large;
    color: white;
    background-color: #fd4112; /* Change to match your theme */
    transition: background-color 0.3s ease;
}
.button:hover {
    background-color: #4b4eff; /* Change to match your theme */
}

@media (max-width: 480px) {
    .hero-section {
        padding: 60px 10px;
    }
    .top-bar {
        flex-direction: column;
        padding: 20px;
    }
    .menu {
        padding-top: 20px;
        justify-content: center;
    }
    .video-container {
        max-width: 300px;
    }
}

