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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

/* Container and Grid System */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    color: #1a365d;
}

h2 {
    font-size: 2rem;
    color: #2d3748;
}

h3 {
    font-size: 1.5rem;
    color: #2d3748;
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: #3182ce;
    color: white;
}

.btn-primary:hover {
    background-color: #2c5aa0;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #ed8936;
    color: white;
}

.btn-secondary:hover {
    background-color: #dd6b20;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: #3182ce;
    border: 2px solid #3182ce;
}

.btn-outline:hover {
    background-color: #3182ce;
    color: white;
}

.btn-outline-white {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-white:hover {
    background-color: white;
    color: #3182ce;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.2rem;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
}

.section-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    color: #3182ce;
}

.section-icon.white {
    color: white;
}

.bg-light {
    background-color: #f7fafc;
}

.bg-primary {
    background-color: #3182ce;
    color: white;
}

.bg-primary h2,
.bg-primary h3 {
    color: white;
}

/* Header and Navigation */
.header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.brand-link:hover {
    opacity: 0.8;
}

.logo {
    height: 40px;
    width: auto;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a365d;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

.nav-menu a:hover {
    color: #3182ce;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2d3748;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
}

.hero-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Service Hero */
.service-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

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

.breadcrumb {
    margin-bottom: 20px;
    opacity: 0.8;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.service-icon-large {
    width: 80px;
    height: 80px;
    margin: 30px auto 0;
    color: white;
    opacity: 0.8;
}

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

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
}

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

.stat {
    text-align: center;
    padding: 20px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.stat h3 {
    font-size: 2.5rem;
    color: #3182ce;
    margin-bottom: 8px;
}

.stat p {
    color: #718096;
    margin: 0;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

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

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

.service-card h3 {
    margin-bottom: 15px;
    color: #1a365d;
}

.service-card p {
    color: #718096;
    margin-bottom: 25px;
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background-color: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

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

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #2d3748;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #3182ce;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, padding 0.3s ease;
    background-color: #f7fafc;
}

.faq-answer p {
    margin: 20px 0;
    color: #4a5568;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    padding: 20px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* Newsletter Section */
.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.newsletter-form {
    background-color: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 12px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3182ce;
    box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.newsletter-form .form-group {
    display: flex;
    gap: 12px;
}

.newsletter-form input {
    flex: 1;
}

.newsletter-form button {
    flex-shrink: 0;
}

.newsletter-form small {
    display: block;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    text-align: center;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

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

.contact-item h3 {
    color: #1a365d;
    margin-bottom: 10px;
}

.contact-item p {
    color: #4a5568;
    margin: 0;
}

.contact-item a {
    color: #3182ce;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-form {
    background-color: #f7fafc;
    padding: 40px;
    border-radius: 12px;
}

/* Footer */
.footer {
    background-color: #8bc2f7;
    color: white;
    padding: 60px 0 30px;
}

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

.footer-section h3 {
    color: white;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: #04090f;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-section p {
    color: #060b11;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: #2d3748;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: #3182ce;
}

.social-links svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: #060d16;
    margin: 0;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a202c;
    color: white;
    padding: 20px;
    z-index: 1001;
    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: 12px;
    flex-shrink: 0;
}

.cookie-buttons .btn {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* Legal Pages */
.legal-page {
    padding: 120px 0 80px;
}

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

.legal-content h1 {
    margin-bottom: 10px;
}

.last-updated {
    color: #718096;
    font-style: italic;
    margin-bottom: 40px;
}

.legal-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a365d;
}

.legal-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2d3748;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-content li {
    margin-bottom: 8px;
}

.contact-info {
    background-color: #f7fafc;
    padding: 30px;
    border-radius: 12px;
    margin-top: 30px;
}

/* Thank You Page */
.thank-you-section {
    padding: 120px 0 80px;
    text-align: center;
}

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

.thank-you-icon {
    margin-bottom: 30px;
}

.check-icon {
    width: 80px;
    height: 80px;
    color: #38a169;
}

.thank-you-content h1 {
    color: #1a365d;
    margin-bottom: 20px;
}

.next-steps {
    background-color: #f7fafc;
    padding: 30px;
    border-radius: 12px;
    margin: 40px 0;
    text-align: left;
}

.next-steps h2 {
    text-align: center;
    margin-bottom: 20px;
}

.next-steps ul {
    padding-left: 20px;
}

.next-steps li {
    margin-bottom: 10px;
}

.thank-you-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 40px 0;
}

.social-follow {
    margin-top: 40px;
}

.social-follow h3 {
    margin-bottom: 20px;
}

/* Service Pages - Additional Styles */
.service-overview {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.overview-content {
    font-size: 1.1rem;
}

.overview-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-card {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.stat-card h3 {
    font-size: 2rem;
    color: #3182ce;
    margin-bottom: 8px;
}

.stat-card p {
    color: #718096;
    margin: 0;
    font-size: 0.9rem;
}

/* Programs Grid */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.program-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.program-icon {
    width: 50px;
    height: 50px;
    color: #3182ce;
}

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

.program-card h3 {
    color: #1a365d;
    margin-bottom: 15px;
}

.program-card ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.program-card li {
    margin-bottom: 8px;
    color: #4a5568;
}

/* CRS Factors */
.crs-factors {
    max-width: 1000px;
    margin: 0 auto;
}

.factor-category {
    background-color: white;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.factor-category h3 {
    color: #1a365d;
    margin-bottom: 30px;
    text-align: center;
    font-size: 1.5rem;
}

.factor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.factor-item {
    background-color: #f7fafc;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.factor-item h4 {
    color: #2d3748;
    margin-bottom: 10px;
}

.factor-item p {
    color: #718096;
    font-size: 0.9rem;
    margin: 0;
}

/* Services List */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    gap: 20px;
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.service-item .service-icon {
    width: 50px;
    height: 50px;
    color: #3182ce;
    flex-shrink: 0;
}

.service-content h3 {
    color: #1a365d;
    margin-bottom: 10px;
}

.service-content p {
    color: #4a5568;
    margin: 0;
}

/* Timeline */
.timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 25px;
    top: 50px;
    width: 2px;
    height: calc(100% + 20px);
    background-color: #e2e8f0;
}

.timeline-marker {
    width: 50px;
    height: 50px;
    background-color: #3182ce;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.timeline-content {
    flex: 1;
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.timeline-content h3 {
    color: #1a365d;
    margin-bottom: 15px;
}

.timeline-content p {
    color: #4a5568;
    margin-bottom: 15px;
}

.timeline-content ul {
    padding-left: 20px;
}

.timeline-content li {
    margin-bottom: 8px;
    color: #4a5568;
}

/* Requirements Grid */
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.requirement-card {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.requirement-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    color: #3182ce;
}

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

.requirement-card h3 {
    color: #1a365d;
    margin-bottom: 15px;
}

.requirement-card p {
    color: #4a5568;
    margin: 0;
}

/* PNP Specific Styles */
.pnp-programs {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.pnp-card {
    background-color: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.pnp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.pnp-header h3 {
    color: #1a365d;
    margin: 0;
}

.province-flag {
    font-size: 2rem;
}

.pnp-streams h4,
.pnp-highlights {
    margin-top: 20px;
}

.pnp-streams ul {
    padding-left: 20px;
    margin-top: 10px;
}

.pnp-streams li {
    margin-bottom: 8px;
    color: #4a5568;
}

.pnp-highlights p {
    color: #4a5568;
    font-style: italic;
}

/* Process Comparison */
.process-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.process-type {
    background-color: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.process-type h3 {
    color: #1a365d;
    text-align: center;
    margin-bottom: 30px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.step-number {
    width: 30px;
    height: 30px;
    background-color: #3182ce;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.step-content h4 {
    color: #2d3748;
    margin-bottom: 5px;
    font-size: 1rem;
}

.step-content p {
    color: #4a5568;
    margin: 0;
    font-size: 0.9rem;
}

/* Family Categories */
.family-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.family-card {
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.family-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
    color: #3182ce;
}

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

.family-card h3 {
    color: #1a365d;
    margin-bottom: 15px;
}

.family-card p {
    color: #4a5568;
    margin-bottom: 15px;
}

.family-card ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.family-card li {
    margin-bottom: 8px;
    color: #4a5568;
}

.processing-time {
    background-color: #e6fffa;
    color: #234e52;
    padding: 10px 15px;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    font-size: 0.9rem;
}

/* Documents Categories */
.documents-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.document-category {
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.document-category h3 {
    color: #1a365d;
    margin-bottom: 20px;
    text-align: center;
}

.document-category ul {
    padding-left: 20px;
}

.document-category li {
    margin-bottom: 10px;
    color: #4a5568;
}

/* Tips Grid */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.tip-card {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.tip-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    color: #38a169;
}

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

.tip-card h3 {
    color: #1a365d;
    margin-bottom: 15px;
}

.tip-card p {
    color: #4a5568;
    margin: 0;
}

/* Business Immigration Specific */
.business-programs {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.program-card.featured {
    border: 2px solid #3182ce;
    position: relative;
}

.program-badge {
    background-color: #3182ce;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.program-requirements,
.program-investment,
.program-categories,
.program-benefits {
    margin-top: 20px;
}

.program-requirements h4,
.program-investment h4,
.program-categories h4,
.program-benefits h4 {
    color: #2d3748;
    margin-bottom: 10px;
    font-size: 1rem;
}

.program-requirements ul,
.program-investment ul,
.program-categories ul,
.program-benefits ul {
    padding-left: 20px;
}

.program-requirements li,
.program-investment li,
.program-categories li,
.program-benefits li {
    margin-bottom: 8px;
    color: #4a5568;
}

/* Provincial Programs */
.provincial-programs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.province-card {
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.province-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.province-header h3 {
    color: #1a365d;
    margin: 0;
    font-size: 1.2rem;
}

.province-content h4 {
    color: #2d3748;
    margin-bottom: 10px;
}

.province-content ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.province-content li {
    margin-bottom: 8px;
    color: #4a5568;
}

.province-content p {
    color: #4a5568;
    font-style: italic;
    margin: 0;
}

/* Startup Details */
.startup-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.organization-types {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.org-type {
    background-color: #f7fafc;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #3182ce;
}

.org-type h4 {
    color: #1a365d;
    margin-bottom: 5px;
}

.org-type p {
    margin: 0;
    color: #4a5568;
}

.org-type p:first-of-type {
    color: #3182ce;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Business Plan Sections */
.business-plan-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.plan-section {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.plan-section h3 {
    color: #1a365d;
    margin-bottom: 20px;
    text-align: center;
}

.plan-section ul {
    padding-left: 20px;
}

.plan-section li {
    margin-bottom: 10px;
    color: #4a5568;
}

/* Success Factors */
.success-factors {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.factor-card {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.factor-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    color: #3182ce;
}

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

.factor-card h3 {
    color: #1a365d;
    margin-bottom: 15px;
}

.factor-card p {
    color: #4a5568;
    margin: 0;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-item {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    color: #38a169;
}

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

.benefit-item h3 {
    color: #1a365d;
    margin-bottom: 15px;
}

.benefit-item p {
    color: #4a5568;
    margin: 0;
}

/* CTA Section */
.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    color: white;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Cookie Settings Modal */
.cookie-settings {
    background-color: #f7fafc;
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
    text-align: center;
}

.cookie-settings h3 {
    color: #1a365d;
    margin-bottom: 20px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-stats {
        flex-direction: row;
        justify-content: space-around;
    }
    
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .service-overview {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .process-comparison {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .startup-details {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        flex-direction: column;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 15px;
    }
    
    .timeline-item::after {
        display: none;
    }
}
