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

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

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

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

h1 {
    font-size: 2.5rem;
}

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

h3 {
    font-size: 1.5rem;
    color: #00695c;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: #555;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a237e 0%, #00695c 100%);
    color: white;
    padding: 4rem 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.logo {
    width: 48px;
    height: 48px;
}

.brand-name {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button.primary {
    background-color: #ff7043;
    color: white;
}

.cta-button.primary:hover {
    background-color: #f4511e;
    transform: translateY(-2px);
}

.cta-button.secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background-color: white;
    color: #1a237e;
}

/* Section Styles */
section {
    padding: 4rem 0;
}

.section-subtitle {
    font-size: 1.125rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #666;
}

/* Platform Overview */
.platform-overview {
    background-color: #f8f9fa;
    text-align: center;
}

.platform-overview h2 {
    margin-bottom: 1rem;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.overview-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.icon-placeholder {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00695c, #004d40);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-weight: bold;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: block;
    transition: transform 0.3s ease;
}

.overview-item:hover .feature-icon,
.integration-item:hover .feature-icon {
    transform: scale(1.1);
}

/* AI Analysis */
.ai-analysis {
    background-color: white;
    text-align: center;
}

.content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-split.reverse {
    grid-template-columns: 1fr 1fr;
}

.content-split.reverse .content-text {
    order: 2;
}

.content-split.reverse .content-visual {
    order: 1;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00695c;
    font-weight: bold;
}

.image-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #e0f2f1, #b2dfdb);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00695c;
    font-weight: bold;
    border: 2px dashed #00695c;
}

.content-image, .insight-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid #e0e0e0;
}

.insight-image {
    height: 200px;
    margin-top: 1rem;
    border-radius: 12px;
}

/* Process Insights */
.process-insights {
    background-color: #f8f9fa;
    text-align: center;
}

.process-insights h2 {
    margin-bottom: 1rem;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.insight-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.insight-card .image-placeholder {
    height: 200px;
    margin-top: 1rem;
}

/* Training Modules */
.training-modules {
    background-color: white;
    text-align: center;
}

.training-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.training-feature {
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #ff7043;
}

.training-feature h4 {
    color: #1a237e;
    margin-bottom: 0.5rem;
}

/* Advisory Services */
.advisory-services {
    background-color: #f8f9fa;
    text-align: center;
}

.advisory-services h2 {
    margin-bottom: 1rem;
}

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

.advisory-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Services */
.services {
    background-color: white;
    text-align: center;
}

.services h2 {
    margin-bottom: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border: 2px solid #e0e0e0;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #00695c;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 105, 92, 0.15);
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a237e;
    margin: 1rem 0;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin: 1.5rem 0;
}

.feature-tag {
    background-color: #e0f2f1;
    color: #00695c;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.service-button {
    display: inline-block;
    background-color: #ff7043;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.service-button:hover {
    background-color: #f4511e;
    transform: translateY(-2px);
}

/* Resource Optimization */
.resource-optimization {
    background-color: #f8f9fa;
    text-align: center;
}

.optimization-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit {
    padding: 1.5rem;
    background-color: white;
    border-radius: 8px;
    border-left: 4px solid #00695c;
}

.benefit h4 {
    color: #1a237e;
    margin-bottom: 0.5rem;
}

/* Integration */
.integration {
    background-color: white;
    text-align: center;
}

.integration h2 {
    margin-bottom: 1rem;
}

.integration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.integration-item {
    text-align: center;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 12px;
}

/* Contact */
.contact {
    background: linear-gradient(135deg, #1a237e 0%, #00695c 100%);
    color: white;
    text-align: center;
}

.contact h2 {
    text-align: center;
    color: white;
    margin-bottom: 1rem;
}

.contact .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

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

.contact-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.contact-item h3 {
    color: white;
    margin-bottom: 1rem;
}

.contact-item a {
    color: #ff7043;
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    color: white;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    width: 32px;
    height: 32px;
}

.footer-brand-name {
    font-size: 1.25rem;
    font-weight: 600;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.footer-links a:hover {
    color: #ff7043;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .content-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .content-split.reverse .content-text {
        order: 1;
    }
    
    .content-split.reverse .content-visual {
        order: 2;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .cta-button {
        text-align: center;
        width: 100%;
        max-width: 300px;
    }
    
    .overview-grid,
    .insights-grid,
    .advisory-grid,
    .services-grid,
    .integration-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-links {
        justify-content: center;
        gap: 1rem;
    }
    
    section {
        padding: 2rem 0;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .service-price {
        font-size: 1.25rem;
    }
}