/* Base Styles */
:root {
    --primary-color: #4CAF7D;
    --secondary-color: #24215A;
    --text-color: #333;
    --light-text: #fff;
    --light-bg: #f5f5f5;
    --dark-bg: #24215A;
    --border-color: #e0e0e0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    font-size: 16px;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

ul, ol {
    list-style-position: inside;
    margin-bottom: 1rem;
}

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

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 14px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.btn-primary:hover {
    background-color: #3d9c6a;
}

.btn-secondary {
    background-color: var(--light-bg);
    color: var(--text-color);
}

.btn-secondary:hover {
    background-color: #e5e5e5;
}

.btn-tertiary {
    background-color: transparent;
    color: var(--text-color);
}

.btn-tertiary:hover {
    background-color: #f0f0f0;
}

/* Header Styles */
header {
    padding: 20px 0;
    background-color: #f5f5f5;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header .logo {
    font-weight: 600;
    color: var(--text-color);
    font-size: 18px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
    width: 90%;
    max-width: 400px;
    overflow: hidden;
    display: none;
}

.cookie-banner.active {
    display: block;
}

.cookie-content {
    padding: 20px;
}

.cookie-icon {
    margin-bottom: 10px;
}

.cookie-icon img {
    width: 40px;
    height: 40px;
}

.cookie-banner h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.cookie-banner p {
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-cookie {
    width: 100%;
}

/* Hero Section */
.hero {
    padding: 50px 0;
    background-color: var(--light-bg);
}

.logo-container {
    text-align: center;
    margin-bottom: 40px;
}

.logo-img {
    max-width: 300px;
}

.hero-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.hero-video {
    flex: 1;
    min-width: 300px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.video-thumbnail {
    width: 100%;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.play-button img {
    width: 30px;
    height: 30px;
}

.hero-text {
    flex: 1;
    min-width: 300px;
}

.hero-text h1 {
    color: var(--secondary-color);
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text h2 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.benefits {
    margin: 30px 0;
}

.benefit {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.benefit-icon {
    background-color: var(--secondary-color);
    width: 50px;
    height: 50px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.benefit-icon img {
    width: 25px;
    height: 25px;
}

/* Personal Guidance Section */
.personal-guidance {
    padding: 50px 0;
    background-color: var(--dark-bg);
    color: var(--light-text);
}

.guidance-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.guidance-text {
    flex: 1;
    min-width: 300px;
}

.guidance-text h2 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.guidance-features {
    flex: 1;
    min-width: 300px;
}

.feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: white;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.feature-icon img {
    width: 25px;
    height: 25px;
}

.feature-text h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Three Steps Section */
.three-steps {
    padding: 70px 0;
    background-color: var(--primary-color);
    color: var(--light-text);
    text-align: center;
}

.three-steps h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.steps-subtitle {
    margin-bottom: 50px;
}

.steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.step {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.step-icon img {
    width: 40px;
    height: 40px;
}

.step h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.step p {
    font-size: 0.9rem;
}

/* Testimonials Section */
.testimonials {
    padding: 70px 0;
    background-color: white;
    text-align: center;
}

.testimonials h2 {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 10px;
}

.testimonials-subtitle {
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-quotes {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.testimonial-quotes blockquote {
    font-style: italic;
    font-size: 1.1rem;
}

.testimonial-cta {
    margin-bottom: 40px;
    border-left: 4px solid var(--primary-color);
    padding-left: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.testimonial-cta p {
    font-size: 1.2rem;
    font-weight: 500;
}

.testimonial-video {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    max-width: 500px;
    margin: 0 auto;
}

/* Opportunities Section */
.opportunities {
    padding: 50px 0;
    background-color: var(--dark-bg);
    color: var(--light-text);
}

.opportunities h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.opportunities p {
    max-width: 800px;
    margin-bottom: 30px;
}

.opportunities-list {
    list-style-type: none;
    margin-bottom: 0;
}

.opportunities-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.opportunities-list li::before {
    content: "•";
    color: var(--primary-color);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

/* Contact Section */
.contact {
    padding: 70px 0;
    background-color: var(--light-bg);
}

.contact .container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-form-container {
    flex: 1;
    min-width: 300px;
}

form {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

input, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-info {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.company-info h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.company-info p {
    margin-bottom: 10px;
}

.company-info a {
    color: var(--text-color);
}

/* Footer */
footer {
    padding: 40px 0;
    background-color: var(--dark-bg);
    color: var(--light-text);
    text-align: center;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 200px;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: var(--light-text);
    margin: 0 10px;
    font-size: 0.9rem;
}

.footer-copyright {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-content, .guidance-content, .contact .container {
        flex-direction: column;
    }
    
    .hero-text h1, .guidance-text h2, .three-steps h2, .testimonials h2, .opportunities h2 {
        font-size: 1.5rem;
    }
    
    .cookie-banner {
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
    }
}

@media (min-width: 768px) {
    .cookie-buttons {
        flex-direction: row;
    }
    
    .testimonial-quotes {
        flex-direction: row;
    }
    
    .testimonial-quotes blockquote {
        flex: 1;
    }
}

.main-section {
    padding: 50px 0;
}

.thank-section {
    padding: 150px 0;
}