/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #0f3460;
    --text-color: #eaeaea;
    --light-text: #ffffff;
    --dark-text: #333333;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-item a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-item a:hover,
.nav-item a.active {
    color: #667eea;
}

.nav-btn {
    background: var(--gradient-1);
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
}

/* Page Header */
.page-header {
    background: var(--gradient-1);
    color: white;
    padding: 150px 0 80px;
    text-align: center;
    margin-top: 60px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Simple Page Header */
.page-header-simple {
    background: white;
    color: var(--primary-color);
    padding: 100px 0 60px;
    text-align: center;
    margin-top: 60px;
}

.page-header-simple h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.page-header-simple p {
    font-size: 1.2rem;
    color: #666;
}

/* Section Title Simple */
.section-title-simple {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-weight: 600;
}

/* Alt Background */
.alt-bg {
    background-color: #f8f9fa;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

/* Simple Services */
.simple-services {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.simple-service-block {
    padding: 30px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}

.simple-service-block img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.simple-service-block h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.simple-service-block p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.learn-more-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.learn-more-link:hover {
    color: #764ba2;
    text-decoration: underline;
}

/* Additional Services */
.additional-services {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.additional-service-block {
    padding: 25px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}

.additional-service-block img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.additional-service-block h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.additional-service-block p {
    color: #666;
    line-height: 1.7;
}

/* Process Flow List */
.process-flow-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.process-flow-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.process-flow-item img {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.flow-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
}

.flow-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--primary-color);
    text-transform: uppercase;
}

.flow-content p {
    color: #666;
    line-height: 1.7;
}

/* Simple Contact Form */
.simple-contact-form {
    max-width: 500px;
    margin: 0 auto;
}

.simple-contact-form input {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.simple-contact-form input:focus {
    outline: none;
    border-color: #667eea;
}

/* Company Hours */
.company-hours {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
}

.company-hours h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.hours-info {
    text-align: left;
}

.hours-info p {
    color: #666;
    margin: 0.5rem 0;
}

/* AI Process List */
.ai-process-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.ai-process-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}

.ai-process-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.ai-process-item h3 {
    padding: 20px 30px 10px;
    font-size: 1.4rem;
    margin: 0;
    color: var(--primary-color);
    text-transform: uppercase;
}

.ai-process-item p {
    padding: 0 30px 30px;
    margin: 0;
    color: #666;
    line-height: 1.7;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--primary-color);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    color: var(--light-text);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
}

.hero-title:last-of-type {
    font-size: 2.5rem;
    opacity: 0.7;
    margin-top: -0.5rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.15s both;
}

.hero-subtitle:last-of-type {
    font-size: 1.2rem;
    opacity: 0.7;
    margin-top: -0.5rem;
    animation: fadeInUp 1s ease-out 0.45s both;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Styles */
.section {
    padding: 100px 0;
    transition: background-color 0.3s ease;
}

.section:nth-child(odd) {
    background-color: #ffffff;
}

.section:nth-child(even) {
    background-color: #f8f9fa;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gradient-1);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-content.reverse {
    direction: rtl;
}

.section-content.reverse .text-block {
    direction: ltr;
}

.text-block {
    padding: 20px;
}

.text-block p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

.image-block img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-block img:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.gallery-item h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    margin: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    font-size: 1.2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover h3 {
    transform: translateY(0);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.3rem;
    color: var(--primary-color);
}

.service-card p {
    padding: 0 20px 20px;
    color: #666;
    line-height: 1.6;
}

.service-link {
    display: inline-block;
    margin: 0 20px 20px;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #764ba2;
}

/* Services List */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.service-item {
    display: flex;
    gap: 30px;
    align-items: center;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.service-icon {
    flex-shrink: 0;
}

.service-icon img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-content p {
    color: #666;
    line-height: 1.7;
}

/* Technology Features */
.tech-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tech-feature.reverse {
    direction: rtl;
}

.tech-feature.reverse .tech-content {
    direction: ltr;
}

.tech-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.tech-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.tech-list {
    list-style: none;
    margin-top: 1.5rem;
}

.tech-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #555;
}

.tech-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

/* Platform Grid */
.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.platform-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.platform-card:hover {
    transform: translateY(-5px);
}

.platform-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.platform-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.platform-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Process Timeline */
.process-timeline {
    max-width: 900px;
    margin: 40px auto 0;
}

.process-step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.step-content p {
    color: #666;
    line-height: 1.7;
}

/* Support Steps */
.support-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.support-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.support-icon img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.support-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.support-card p {
    color: #666;
    line-height: 1.6;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.benefit-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
}

/* AI Process Steps */
.ai-process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.ai-step-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.ai-step-number {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
}

.ai-step-card h3 {
    margin-top: 10px;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.ai-step-card p {
    color: #666;
    line-height: 1.6;
}

/* AI Benefits */
.ai-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.ai-benefit-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.ai-benefit-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.ai-benefit-card h3 {
    padding: 20px;
    color: var(--primary-color);
}

.ai-benefit-card p {
    padding: 0 20px 20px;
    color: #666;
}

/* Partner Highlight */
.partner-highlight {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.partner-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

.partner-details h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.partner-subtitle {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.partner-description {
    color: #666;
    line-height: 1.8;
}

/* Collaboration Cards */
.collaboration-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.collab-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.collab-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.collab-card p {
    color: #666;
    line-height: 1.6;
}

/* Beliefs Section */
.beliefs-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.belief-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.belief-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Download Card */
.download-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.download-icon {
    font-size: 4rem;
}

.download-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.download-info p {
    color: #666;
}

.download-button {
    padding: 15px 40px;
    background: var(--gradient-1);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.download-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.4);
}

/* Main Process Steps */
.main-process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.process-step-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.step-badge {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
}

.process-step-card h3 {
    margin-top: 10px;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.process-step-card p {
    color: #666;
    line-height: 1.6;
}

/* Process Features */
.process-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.feature-box h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-box p {
    color: #666;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    background: var(--gradient-1);
    color: white;
}

.contact .section-title {
    color: white;
}

.contact .section-title::after {
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.contact-details {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.contact-details p {
    margin-bottom: 0.5rem;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

/* Contact Details Section */
.contact-details-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.address-card,
.email-card,
.hours-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 20px;
}

.address-icon,
.email-icon,
.hours-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.address-content h3,
.email-content h3,
.hours-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.address-content p,
.email-content p,
.hours-content p {
    color: #666;
    margin: 0.3rem 0;
}

.email-content a {
    color: #667eea;
    text-decoration: none;
}

.email-content a:hover {
    text-decoration: underline;
}

/* Contact Form Container */
.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-intro {
    text-align: center;
    margin-bottom: 30px;
}

.form-intro p {
    color: #666;
    line-height: 1.7;
}

.main-contact-form {
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Section for Process Page */
.contact-section {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.contact-info-side {
    background: var(--gradient-1);
    color: white;
    padding: 40px;
    border-radius: 15px;
}

.contact-info-side h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-info-side p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.company-details {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.company-details p {
    margin-bottom: 0.5rem;
}

.contact-form-side {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Map Container */
.map-container {
    margin-top: 40px;
}

.map-placeholder {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.map-info {
    margin-top: 20px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.map-info h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.map-info p {
    color: #666;
    line-height: 1.7;
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* CSR Pillars */
.csr-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pillar-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.pillar-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.pillar-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.pillar-list {
    list-style: none;
}

.pillar-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #666;
    line-height: 1.7;
}

.pillar-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #667eea;
    font-size: 1.5rem;
}

.pillar-list strong {
    color: var(--primary-color);
}

/* Initiatives Grid */
.initiatives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.initiative-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.initiative-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.initiative-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.4rem;
    color: var(--primary-color);
}

.initiative-card p {
    padding: 0 20px 20px;
    color: #666;
    line-height: 1.7;
}

.initiative-card p strong {
    color: var(--primary-color);
}

/* Get Involved Section */
.get-involved-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.involved-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.involved-list {
    list-style: none;
    margin-top: 20px;
}

.involved-list li {
    padding: 10px 0;
    font-size: 1.1rem;
    color: #555;
}

.involved-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* CTA Section */
.cta-section {
    background: var(--gradient-1);
    color: white;
    padding: 80px 0;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 15px 50px;
    background: white;
    color: #667eea;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--gradient-1);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.privacy-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #666;
    text-align: center;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer p {
    margin: 0;
    opacity: 0.8;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 20px 40px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 600px;
}

.cookie-banner p {
    flex: 1;
    font-size: 0.9rem;
    color: #333;
}

.accept-btn {
    padding: 10px 30px;
    background: var(--gradient-1);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.accept-btn:hover {
    transform: scale(1.05);
}

.cookie-banner.hidden {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-title:last-of-type {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-subtitle:last-of-type {
        font-size: 0.85rem;
    }

    /* Navigation */
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--primary-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 20px 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        padding: 15px 0;
    }

    /* Page Header */
    .page-header {
        padding: 120px 0 60px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    /* Section Content */
    .section-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-content.reverse {
        direction: ltr;
    }

    .section-title {
        font-size: 2rem;
    }

    /* Tech Features */
    .tech-feature,
    .tech-feature.reverse {
        grid-template-columns: 1fr;
        gap: 30px;
        direction: ltr;
    }

    .tech-image img {
        height: 300px;
    }

    /* Process Timeline */
    .process-step {
        gap: 15px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    /* Partner Highlight */
    .partner-highlight,
    .beliefs-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .partner-image img,
    .belief-image img {
        height: 300px;
    }

    /* Download Card */
    .download-card {
        flex-direction: column;
        text-align: center;
    }

    /* Contact Section */
    .contact-content {
        grid-template-columns: 1fr;
    }

    .contact-form-container {
        padding: 30px;
    }

    .contact-section {
        grid-template-columns: 1fr;
    }

    /* CTA Section */
    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 12px 40px;
        font-size: 1rem;
    }

    /* Get Involved */
    .get-involved-section {
        grid-template-columns: 1fr;
    }

    .involved-image img {
        height: 300px;
    }

    /* Image blocks */
    .image-block img {
        height: 300px;
    }

    /* Cookie Banner */
    .cookie-banner {
        flex-direction: column;
        left: 10px;
        right: 10px;
        transform: none;
    }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}
