/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

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

/* Header styles */
.header {
    padding: 20px 0;
    background-color: transparent;
    position: absolute;
    width: 100%;
    z-index: 10;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 700;
    font-size: 18px;
    color: #fff;
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-item a {
    color: #fff;
    font-size: 16px;
    transition: opacity 0.3s;
}

.main-header a {
    color: black;
}

.main-header .logo {
    color: black;
}

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

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

.main-section h2 {
    text-align: center;
}

html {
    scroll-behavior: smooth;
}

.nav-item a:hover {
    opacity: 0.8;
}

.nav-contact {
    background-color: #fff;
    color: #333 !important;
    padding: 8px 16px;
    border-radius: 4px;
}

/* Hero section */
.hero {
    background-image: url('./assets/hero-bg.png');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 150px 0 100px;
    text-align: center;
}

.hero-container {
    max-width: 800px;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
}

.hero-text {
    font-size: 18px;
    margin-bottom: 40px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-primary {
    background-color: #fff;
    color: #333;
}

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

/* Services section */
.services {
    padding: 80px 0;
}

.section-title {
    font-size: 32px;
    text-align: center;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-item {
    background-color: #f5f5f5;
    padding: 30px;
    border-radius: 8px;
}

.service-title {
    font-size: 24px;
    margin-bottom: 15px;
}

.service-text {
    font-size: 16px;
}

/* Thinking tools section */
.thinking-tools {
    background-color: #4a5568;
    color: #fff;
    padding: 80px 0;
}

.thinking-tools-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.thinking-tools-text {
    flex: 1;
}

.thinking-tools-text p {
    margin-bottom: 15px;
}

.thinking-tools-image {
    flex: 1;
}

.thinking-tools-image img {
    border-radius: 8px;
    width: 100%;
}

/* Value section */
.value {
    padding: 80px 0;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.value-item {
    background-color: #f5f5f5;
    padding: 30px;
    border-radius: 8px;
}

.value-title {
    font-size: 20px;
    margin-bottom: 15px;
}

.value-text {
    font-size: 16px;
}

/* Contact form */
.contact-form-container {
    max-width: 400px;
    margin: 0 auto;
    background-color: #4a5568;
    padding: 30px;
    border-radius: 8px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

label {
    font-size: 16px;
    color: #fff;
}

input {
    padding: 12px;
    border: none;
    border-radius: 4px;
    font-family: inherit;
    font-size: 16px;
}

.btn-submit {
    background-color: #000;
    color: #fff;
    border: none;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #333;
}

/* Upcoming sessions */
.upcoming {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.upcoming-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.upcoming-item {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.upcoming-image {
    height: 200px;
    overflow: hidden;
}

.upcoming-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.upcoming-title, .upcoming-date, .upcoming-text {
    padding: 0 20px;
}

.upcoming-title {
    font-size: 20px;
    margin-top: 20px;
}

.upcoming-date {
    font-weight: 600;
    margin-bottom: 10px;
}

.upcoming-text {
    padding-bottom: 20px;
}

/* Footer */
.footer {
    padding: 30px 0;
    background-color: #fff;
    border-top: 1px solid #eee;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    font-size: 14px;
    color: #333;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Cookie popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    display: none;
}

.cookie-popup.visible {
    display: block;
}

.cookie-content {
    padding: 30px;
}

.cookie-content h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.cookie-content p {
    margin-bottom: 20px;
}

.cookie-content p a {
    text-decoration: underline;
}

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

.btn-cookie {
    background-color: #4a5568;
    color: #fff;
    border: none;
    text-align: center;
}

.btn-cookie-secondary {
    background-color: transparent;
    color: #333;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
}

.btn-cookie:hover {
    background-color: #2d3748;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 36px;
    }
    
    .services-grid, .value-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .upcoming-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-list {
        gap: 15px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .services-grid, .value-grid, .upcoming-grid {
        grid-template-columns: 1fr;
    }
    
    .thinking-tools-content {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-list {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero {
        padding: 180px 0 80px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .cookie-popup {
        left: 10px;
        right: 10px;
        max-width: calc(100% - 20px);
    }
}