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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

a {
    color: #0066cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

ul {
    list-style: none;
}

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

/* Header and Navigation */
.header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #0066cc;
    text-decoration: none;
}

.logo:hover {
    text-decoration: none;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: 0.3s;
}

.nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.nav-menu.active {
    display: flex;
}

.nav-menu li {
    margin: 10px 0;
}

.nav-menu a {
    color: #333;
    font-size: 16px;
    display: block;
    padding: 8px 0;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #0066cc;
    text-decoration: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0066cc 0%, #004d99 100%);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.hero-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.page-hero {
    background-color: #f5f8fa;
    padding: 60px 20px;
    text-align: center;
}

.page-hero h1 {
    font-size: 36px;
    color: #0066cc;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 18px;
    color: #666;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid transparent;
    cursor: pointer;
}

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

.btn-primary:hover {
    background-color: #00b359;
    text-decoration: none;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #fff;
    color: #0066cc;
    border-color: #0066cc;
}

.btn-secondary:hover {
    background-color: #0066cc;
    color: #fff;
    text-decoration: none;
}

.btn-outline {
    background-color: transparent;
    color: #0066cc;
    border-color: #0066cc;
}

.btn-outline:hover {
    background-color: #0066cc;
    color: #fff;
    text-decoration: none;
}

.btn-small {
    padding: 8px 20px;
    font-size: 14px;
}

/* Sections */
section {
    padding: 60px 20px;
}

section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #0066cc;
    text-align: center;
}

section h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
}

/* Intro Section */
.intro-section {
    background-color: #f9fafb;
}

.intro-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.intro-text {
    max-width: 700px;
}

.intro-text h2 {
    text-align: left;
    margin-bottom: 20px;
}

.intro-text p {
    margin-bottom: 15px;
    color: #555;
}

.intro-visual svg {
    max-width: 400px;
    width: 100%;
}

/* Services Highlight */
.services-highlight {
    background-color: #fff;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.service-card {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    padding: 30px;
    background-color: #f9fafb;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    font-size: 15px;
}

/* Philosophy Section */
.philosophy-section {
    background-color: #e8f4f8;
}

.philosophy-content h2 {
    text-align: left;
    max-width: 800px;
    margin: 0 auto 20px;
}

.philosophy-content > p {
    max-width: 800px;
    margin: 0 auto 30px;
    color: #555;
    font-size: 17px;
}

.philosophy-points {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.point {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
}

.point h4 {
    font-size: 20px;
    color: #0066cc;
    margin-bottom: 10px;
}

.point p {
    color: #555;
}

/* Stats Section */
.stats-section {
    background-color: #0066cc;
    color: #fff;
}

.stats-section h2 {
    color: #fff;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    min-width: 200px;
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    color: #00cc66;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

/* Process Section */
.process-section {
    background-color: #fff;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.step {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    padding: 20px;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #0066cc;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.step h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

.step p {
    color: #666;
    font-size: 15px;
}

/* Testimonials */
.testimonials-section {
    background-color: #f9fafb;
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.testimonial {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 30px;
    background-color: #fff;
    border-left: 4px solid #00cc66;
    border-radius: 5px;
}

.testimonial p {
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: #0066cc;
}

/* Industries Section */
.industries-section {
    background-color: #fff;
}

.industries-content {
    max-width: 900px;
    margin: 0 auto;
}

.industries-content > p {
    text-align: center;
    color: #555;
    margin-bottom: 30px;
}

.industries-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.industry-tag {
    padding: 10px 20px;
    background-color: #e8f4f8;
    color: #0066cc;
    border-radius: 20px;
    font-size: 14px;
}

/* Insights Section */
.insights-section {
    background-color: #f5f8fa;
}

.insights-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.insight-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 25px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.insight-card h3 {
    color: #0066cc;
    margin-bottom: 15px;
}

.insight-card p {
    color: #666;
    line-height: 1.7;
}

/* FAQ Section */
.faq-section {
    background-color: #fff;
}

.faq-list {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background-color: #f9fafb;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #e8f4f8;
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    color: #0066cc;
    transition: transform 0.3s;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 20px;
    color: #555;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #00cc66 0%, #00b359 100%);
    color: #fff;
    text-align: center;
}

.cta-content h2 {
    color: #fff;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 50px 20px 20px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #00cc66;
}

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #fff;
}

.footer-col p {
    color: #ccc;
    line-height: 1.6;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ccc;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #00cc66;
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #999;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    display: none;
}

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

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.cookie-content p {
    margin: 0;
    text-align: center;
}

.cookie-content a {
    color: #00cc66;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1002;
    padding: 20px;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    max-width: 500px;
    width: 100%;
}

.cookie-modal-content h3 {
    color: #0066cc;
    margin-bottom: 20px;
}

.cookie-option {
    margin-bottom: 20px;
}

.cookie-option label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    gap: 10px;
}

.cookie-option input[type="checkbox"] {
    margin-top: 3px;
}

.cookie-option span {
    font-weight: 500;
}

.cookie-option p {
    margin-top: 5px;
    margin-left: 30px;
    color: #666;
    font-size: 14px;
}

.cookie-modal-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

/* About Page Specific */
.story-section {
    background-color: #fff;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-content p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

.values-section {
    background-color: #f9fafb;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.value-card {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    padding: 25px;
    background-color: #fff;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.value-icon svg {
    width: 100%;
    height: 100%;
}

.value-card h3 {
    margin-bottom: 15px;
    color: #0066cc;
}

.value-card p {
    color: #666;
    line-height: 1.7;
}

.team-section {
    background-color: #fff;
}

.team-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
    color: #555;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.team-member {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    text-align: center;
}

.member-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
}

.member-avatar svg {
    width: 100%;
    height: 100%;
}

.team-member h3 {
    margin-bottom: 5px;
}

.member-role {
    color: #0066cc;
    font-size: 14px;
    margin-bottom: 10px;
}

.team-member p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.approach-section {
    background-color: #f5f8fa;
}

.approach-content {
    max-width: 900px;
    margin: 0 auto;
}

.approach-item {
    margin-bottom: 30px;
}

.approach-item h3 {
    color: #0066cc;
    margin-bottom: 10px;
}

.approach-item p {
    color: #555;
    line-height: 1.7;
}

.milestones-section {
    background-color: #fff;
}

.timeline {
    max-width: 800px;
    margin: 40px auto 0;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-year {
    font-size: 24px;
    font-weight: bold;
    color: #0066cc;
    min-width: 80px;
}

.timeline-content h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
}

.benefits-section {
    background-color: #f9fafb;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.benefit-item {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
}

.benefit-item h3 {
    color: #0066cc;
    margin-bottom: 10px;
}

.benefit-item p {
    color: #666;
    line-height: 1.7;
}

/* Services Page Specific */
.services-list-section {
    background-color: #fff;
}

.service-detail {
    max-width: 900px;
    margin: 0 auto 60px;
    padding-bottom: 60px;
    border-bottom: 2px solid #e0e0e0;
}

.service-detail:last-child {
    border-bottom: none;
}

.service-header {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.service-icon-large {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.service-icon-large svg {
    width: 100%;
    height: 100%;
}

.service-title h2 {
    text-align: left;
    margin-bottom: 5px;
    font-size: 28px;
}

.service-subtitle {
    color: #666;
    font-size: 16px;
}

.service-description {
    margin-bottom: 30px;
}

.service-description p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.service-packages {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.package-card {
    flex: 1;
    min-width: 250px;
    padding: 25px;
    background-color: #f9fafb;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    transition: border-color 0.3s;
}

.package-card:hover {
    border-color: #0066cc;
}

.package-card h3 {
    color: #0066cc;
    margin-bottom: 15px;
    font-size: 20px;
}

.package-desc {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    min-height: 60px;
}

.package-price {
    font-size: 24px;
    font-weight: bold;
    color: #00cc66;
}

.service-benefits-section {
    background-color: #f5f8fa;
}

.benefit-box {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    padding: 25px;
    background-color: #fff;
    border-radius: 8px;
}

.benefit-box h3 {
    color: #0066cc;
    margin-bottom: 15px;
}

.benefit-box p {
    color: #666;
    line-height: 1.6;
}

.process-comparison {
    background-color: #fff;
}

.comparison-content {
    max-width: 800px;
    margin: 0 auto;
}

.comparison-content > p {
    color: #555;
    margin-bottom: 30px;
}

.comparison-table {
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
}

.comparison-row {
    display: flex;
    flex-wrap: wrap;
}

.comparison-row:nth-child(odd) {
    background-color: #f9fafb;
}

.comparison-cell {
    flex: 1;
    min-width: 200px;
    padding: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.comparison-row:last-child .comparison-cell {
    border-bottom: none;
}

/* Contact Page Specific */
.contact-info-section {
    background-color: #f9fafb;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.contact-card {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.contact-icon svg {
    width: 100%;
    height: 100%;
}

.contact-card h3 {
    color: #0066cc;
    margin-bottom: 15px;
}

.contact-card p {
    color: #666;
    line-height: 1.7;
}

.about-location-section {
    background-color: #fff;
}

.location-content {
    max-width: 800px;
    margin: 0 auto;
}

.location-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.directions-section {
    background-color: #f9fafb;
}

.directions-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.direction-card {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    padding: 25px;
    background-color: #fff;
    border-radius: 8px;
}

.direction-card h3 {
    color: #0066cc;
    margin-bottom: 15px;
}

.direction-card p {
    color: #666;
    line-height: 1.7;
}

.company-info-section {
    background-color: #fff;
}

.company-details {
    max-width: 700px;
    margin: 0 auto 30px;
}

.detail-row {
    display: flex;
    flex-wrap: wrap;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 600;
    min-width: 180px;
    color: #0066cc;
}

.detail-value {
    color: #555;
}

.company-description {
    max-width: 700px;
    margin: 30px auto 0;
    color: #555;
    line-height: 1.7;
}

.contact-faq-section {
    background-color: #f9fafb;
}

/* Thank You Page */
.thank-you-section {
    background-color: #fff;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thank-you-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
}

.thank-you-icon svg {
    width: 100%;
    height: 100%;
}

.thank-you-content h1 {
    font-size: 36px;
    color: #0066cc;
    margin-bottom: 15px;
}

.thank-you-message {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.thank-you-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.next-steps-section {
    background-color: #f9fafb;
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.step-card {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
    padding: 25px;
    background-color: #fff;
    border-radius: 8px;
}

.step-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.step-icon svg {
    width: 100%;
    height: 100%;
}

.step-card h3 {
    color: #0066cc;
    margin-bottom: 10px;
}

.step-card p {
    color: #666;
}

/* Legal Pages */
.legal-content {
    background-color: #fff;
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
}

.legal-text h2 {
    text-align: left;
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-text h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #0066cc;
}

.legal-text h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.legal-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-text ul {
    list-style: disc;
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-text ul li {
    color: #555;
    line-height: 1.7;
    margin-bottom: 10px;
}

.legal-text a {
    color: #0066cc;
}

.legal-date {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    font-style: italic;
    color: #999;
}

/* Desktop Styles */
@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }

    .nav-menu {
        display: flex;
        flex-direction: row;
        position: static;
        box-shadow: none;
        padding: 0;
        gap: 30px;
    }

    .nav-menu li {
        margin: 0;
    }

    .nav-menu a {
        padding: 0;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .hero-content p {
        font-size: 20px;
    }

    .page-hero h1 {
        font-size: 42px;
    }

    .intro-grid {
        flex-direction: row;
        align-items: flex-start;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .cookie-content p {
        text-align: left;
    }

    .timeline-item {
        gap: 40px;
    }

    .comparison-cell:first-child {
        border-right: 1px solid #e0e0e0;
    }

    .detail-row {
        flex-wrap: nowrap;
    }
}

@media (min-width: 1024px) {
    section {
        padding: 80px 20px;
    }

    section h2 {
        font-size: 38px;
    }
}