.modal-content {
    margin: 10% auto;
    padding: 30px 20px;
}/* Reset and Base Styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

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

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

/* Cookie Banner */
.cookie-banner {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: #2d5436;
color: white;
z-index: 1000;
padding: 20px;
transform: translateY(100%);
transition: transform 0.3s ease;
}

.cookie-banner.show {
transform: translateY(0);
}

.cookie-content {
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
gap: 20px;
}

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

.cookie-btn {
padding: 8px 16px;
border: 1px solid white;
background: transparent;
color: white;
cursor: pointer;
font-size: 14px;
transition: all 0.3s ease;
}

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

.cookie-btn.accept {
background: white;
color: #2d5436;
}

/* Header */
.header {
background: white;
padding: 20px 0;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
position: sticky;
top: 0;
z-index: 100;
}

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

.logo h1 {
font-size: 24px;
font-weight: 600;
color: #2d5436;
}

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

.nav a {
text-decoration: none;
color: #666;
font-weight: 500;
transition: color 0.3s ease;
}

.nav a:hover {
color: #2d5436;
}

/* Hero Section */
.hero {
padding: 80px 0;
background: #f8f9fa;
}

.hero-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
}

.hero-text h2 {
font-size: 48px;
font-weight: 700;
color: #2d5436;
margin-bottom: 30px;
line-height: 1.2;
}

.hero-text p {
font-size: 18px;
color: #666;
line-height: 1.7;
}

.hero-image img {
width: 100%;
height: 400px;
object-fit: cover;
border-radius: 10px;
}

/* Organization Section */
.organization-section {
padding: 80px 0;
background: #2d5436;
color: white;
}

.organization-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
}

.organization-image img {
width: 100%;
height: 400px;
object-fit: cover;
border-radius: 10px;
}

.organization-text h2 {
font-size: 36px;
font-weight: 600;
margin-bottom: 30px;
line-height: 1.3;
}

.organization-text p {
font-size: 16px;
margin-bottom: 30px;
opacity: 0.9;
}

.question-cards {
display: flex;
flex-direction: column;
gap: 15px;
}

.question-card {
padding: 20px;
background: rgba(255,255,255,0.1);
border-radius: 8px;
font-size: 14px;
transition: all 0.3s ease;
cursor: pointer;
}

.question-card.active {
background: #4a7c5b;
}

.question-card:hover {
background: rgba(255,255,255,0.2);
}

/* Industries Section */
.industries {
padding: 80px 0;
}

.industries h2 {
font-size: 36px;
font-weight: 600;
color: #2d5436;
margin-bottom: 20px;
text-align: left;
}

.industries p {
font-size: 16px;
color: #666;
margin-bottom: 40px;
}

.industries-subtitle {
font-size: 16px;
color: #2d5436;
margin-bottom: 40px;
}

.industries-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
}

.industry-card {
text-align: left;
padding: 30px 20px;
border-left: 3px solid #f0b90b;
}

.industry-card:nth-child(2) {
border-left-color: #4a7c5b;
}

.industry-card:nth-child(3) {
border-left-color: #2d5436;
}

.industry-card:nth-child(4) {
border-left-color: #85aa94;
}

.industry-icon {
width: 50px;
height: 50px;
margin-bottom: 20px;
}

.industry-icon img {
width: 100%;
height: 100%;
}

.industry-card h3 {
font-size: 18px;
font-weight: 600;
color: #333;
}

/* Methods Section */
.methods {
padding: 80px 0;
background: #f8f9fa;
}

.methods h2 {
font-size: 36px;
font-weight: 600;
color: #2d5436;
margin-bottom: 20px;
}

.methods p {
font-size: 16px;
color: #666;
margin-bottom: 50px;
}

.methods-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
}

.method-card {
background: white;
padding: 30px;
border-radius: 10px;
text-align: left;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.method-icon {
width: 50px;
height: 50px;
margin-bottom: 20px;
}

.method-icon img {
width: 100%;
height: 100%;
}

.method-card h3 {
font-size: 18px;
font-weight: 600;
color: #333;
}

/* Case Studies Section */
.case-studies {
padding: 80px 0;
}

.case-studies h2 {
font-size: 36px;
font-weight: 600;
color: #2d5436;
margin-bottom: 20px;
}

.case-studies p {
font-size: 16px;
color: #666;
margin-bottom: 50px;
}

.cases {
display: flex;
flex-direction: column;
gap: 30px;
}

.case {
display: grid;
grid-template-columns: 2fr 1fr;
gap: 30px;
padding: 30px;
border-left: 4px solid #e9ecef;
background: #f8f9fa;
align-items: center;
}

.case.highlight {
border-left-color: #f0b90b;
background: #fffdf0;
}

.case h3 {
font-size: 20px;
font-weight: 600;
color: #333;
margin-bottom: 10px;
}

.case-target {
font-size: 14px;
color: #666;
font-weight: 500;
}

.case-quote {
font-style: italic;
color: #2d5436;
font-size: 16px;
background: #e8f0ea;
padding: 20px;
border-radius: 8px;
text-align: right;
}

/* Team Section */
.team-section {
padding: 80px 0;
background: #f8f9fa;
}

.team-section h2 {
font-size: 36px;
font-weight: 600;
color: #2d5436;
margin-bottom: 20px;
}

.team-section p {
font-size: 16px;
color: #666;
margin-bottom: 50px;
}

.roles-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
}

.role-card {
background: white;
padding: 30px;
border-radius: 10px;
text-align: left;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.role-card h3 {
font-size: 18px;
font-weight: 600;
color: #2d5436;
margin-bottom: 15px;
}

.role-card p {
font-size: 14px;
color: #666;
margin: 0;
}

/* Formats Section */
.formats {
padding: 80px 0;
}

.formats h2 {
font-size: 36px;
font-weight: 600;
color: #2d5436;
margin-bottom: 20px;
}

.formats p {
font-size: 16px;
color: #666;
margin-bottom: 50px;
}

.formats-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
}

.format-card {
padding: 30px;
border: 1px solid #e9ecef;
border-radius: 10px;
text-align: left;
transition: all 0.3s ease;
cursor: pointer;
}

.format-card.highlight {
background: #fffdf0;
border-color: #f0b90b;
}

.format-card:hover {
border-color: #2d5436;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.format-card h3 {
font-size: 18px;
font-weight: 600;
color: #2d5436;
margin-bottom: 15px;
}

.format-card p {
font-size: 14px;
color: #666;
margin: 0;
}

/* Blog Section */
.blog {
padding: 80px 0;
background: #f8f9fa;
}

.blog h2 {
font-size: 36px;
font-weight: 600;
color: #2d5436;
margin-bottom: 20px;
}

.blog p {
font-size: 16px;
color: #666;
margin-bottom: 50px;
}

.blog-posts {
display: flex;
flex-direction: column;
gap: 30px;
}

.blog-post {
display: grid;
grid-template-columns: 2fr 1fr;
gap: 30px;
padding: 30px;
background: white;
border-radius: 10px;
border-left: 4px solid #e9ecef;
align-items: center;
}

.blog-post.highlight {
border-left-color: #f0b90b;
}

.post-content p {
font-size: 16px;
color: #666;
line-height: 1.6;
margin: 0;
}

.post-meta {
text-align: right;
}

.post-meta h3 {
font-size: 18px;
font-weight: 600;
color: #2d5436;
margin-bottom: 10px;
}

.post-date {
font-size: 14px;
color: #999;
}

/* Contact Section */
.contact-section {
padding: 80px 0;
background: #2d5436;
color: white;
}

.contact-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
margin-bottom: 50px;
}

.contact-text h2 {
font-size: 36px;
font-weight: 600;
margin-bottom: 30px;
line-height: 1.3;
}

.contact-text p {
font-size: 16px;
margin-bottom: 30px;
opacity: 0.9;
}

.contact-text blockquote {
background: rgba(255,255,255,0.1);
padding: 25px;
border-left: 4px solid #4a7c5b;
font-style: italic;
font-size: 16px;
margin: 0;
}

.contact-image img {
width: 100%;
height: 400px;
object-fit: cover;
border-radius: 10px;
}

.contact-form-section {
text-align: center;
}

.contact-btn {
background: #4a7c5b;
color: white;
border: none;
padding: 15px 40px;
font-size: 16px;
font-weight: 600;
border-radius: 8px;
text-decoration: none;
display: inline-block;
transition: all 0.3s ease;
}

.contact-btn:hover {
background: #5a8c6b;
transform: translateY(-2px);
color: white;
}



/* Footer */
.footer {
background: #2d5436;
color: white;
padding: 60px 0 20px 0;
}

.footer-content {
display: grid;
grid-template-columns: 1fr 1fr 2fr 1fr;
gap: 40px;
margin-bottom: 40px;
}

.footer-brand h3 {
font-size: 20px;
font-weight: 600;
}

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

.footer-column a {
color: rgba(255,255,255,0.8);
text-decoration: none;
transition: color 0.3s ease;
}

.footer-column a:hover {
color: white;
}

.footer-contact p {
margin-bottom: 8px;
font-size: 14px;
color: rgba(255,255,255,0.8);
}

.footer-legal h4 {
margin-bottom: 15px;
font-size: 16px;
}

.footer-legal a {
display: block;
color: rgba(255,255,255,0.8);
text-decoration: none;
margin-bottom: 8px;
transition: color 0.3s ease;
}

.footer-legal a:hover {
color: white;
}

.footer-bottom {
border-top: 1px solid rgba(255,255,255,0.2);
padding-top: 20px;
text-align: center;
}

.footer-bottom p {
color: rgba(255,255,255,0.8);
font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
.container {
    padding: 0 15px;
}

.header-content {
    flex-direction: column;
    gap: 20px;
}

.nav {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-content,
.organization-content,
.contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
}

.hero-text h2 {
    font-size: 32px;
}

.organization-text h2,
.industries h2,
.methods h2,
.case-studies h2,
.team-section h2,
.formats h2,
.blog h2,
.contact-text h2 {
    font-size: 28px;
}

.industries-grid,
.methods-grid,
.roles-grid,
.formats-grid {
    grid-template-columns: 1fr;
}

.case,
.blog-post {
    grid-template-columns: 1fr;
    text-align: left;
}

.case-quote,
.post-meta {
    text-align: left;
    margin-top: 20px;
}

.footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: left;
}

.cookie-content {
    flex-direction: column;
    text-align: center;
}

.modal-content {
    margin: 10% auto;
    padding: 30px 20px;
}
}

@media (max-width: 480px) {
.hero-text h2 {
    font-size: 28px;
}

.organization-text h2,
.industries h2,
.methods h2,
.case-studies h2,
.team-section h2,
.formats h2,
.blog h2,
.contact-text h2 {
    font-size: 24px;
}

.hero,
.organization-section,
.industries,
.methods,
.case-studies,
.team-section,
.formats,
.blog,
.contact-section {
    padding: 50px 0;
}
}

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

/* Button Effects */
button {
font-family: inherit;
}

.contact-btn,
.submit-btn,
.cookie-btn {
font-family: 'Inter', sans-serif;
}

/* Additional Animations */
.industry-card,
.method-card,
.role-card,
.format-card {
transition: transform 0.3s ease;
}

.industry-card:hover,
.method-card:hover,
.role-card:hover {
transform: translateY(-5px);
}

/* Focus States for Accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus {
outline: 2px solid #2d5436;
outline-offset: 2px;
}
.mobile-menu-toggle{
    display: none;
}