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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: Georgia, serif;
    color: #1a2e2e;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.2rem;
}

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

/* Header */
.header {
    background: linear-gradient(135deg, #1a2e2e 0%, #2a4a4a 100%);
    padding: 1rem 0;
}

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

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

.brand-name {
    font-family: Georgia, serif;
    font-size: 1.5rem;
    color: #fafafa;
    font-weight: bold;
}

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

.btn-primary {
    background-color: #b8860b;
    color: #fafafa;
    border-color: #b8860b;
}

.btn-primary:hover {
    background-color: #a0750a;
    border-color: #a0750a;
}

.btn-secondary {
    background-color: transparent;
    color: #1a2e2e;
    border-color: #1a2e2e;
}

.btn-secondary:hover {
    background-color: #1a2e2e;
    color: #fafafa;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a2e2e 0%, #2a4a4a 100%);
    padding: 6rem 0;
    color: #fafafa;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text {
    text-align: left;
}

.hero h1 {
    color: #fafafa;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: #e0e0e0;
    line-height: 1.5;
}

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

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    max-height: 400px;
    object-fit: cover;
}

.feature-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(26, 46, 46, 0.1);
    max-height: 350px;
    object-fit: cover;
}





/* Services Overview */
.services-overview {
    padding: 6rem 0;
    background-color: #fafafa;
    text-align: center;
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(26, 46, 46, 0.1);
    text-align: center;
}

.service-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: #1a2e2e;
}

/* Integration Process */
.integration-process {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

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

.process-step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background-color: #b8860b;
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 60px;
    margin-bottom: 1.5rem;
}

/* Why Choose Us */
.why-choose-us {
    padding: 6rem 0;
    background-color: white;
    text-align: center;
}

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

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    background-color: #b8860b;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.placeholder-image {
    background-color: #e9ecef;
    height: 400px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-style: italic;
    text-align: center;
    padding: 2rem;
}

/* Training Modules */
.training-modules {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a2e2e 0%, #2a4a4a 100%);
    text-align: center;
}

.training-modules h2 {
    color: #fafafa;
}

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

.module-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(184, 134, 11, 0.3);
}

.module-card h3 {
    color: #b8860b;
    margin-bottom: 1rem;
}

.module-card p {
    color: #e0e0e0;
}

/* Products */
.products {
    padding: 6rem 0;
    background-color: #fafafa;
    text-align: center;
}

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

.product-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(26, 46, 46, 0.1);
    text-align: center;
    position: relative;
    border: 2px solid transparent;
}

.product-card.featured {
    border-color: #b8860b;
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #b8860b;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.product-features ul {
    list-style: none;
    text-align: left;
    margin: 1.5rem 0;
}

.product-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.product-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #b8860b;
    font-weight: bold;
}

.product-pricing {
    margin: 2rem 0;
}

.price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #1a2e2e;
}

/* Testimonials */
.testimonials {
    padding: 6rem 0;
    background-color: white;
    text-align: center;
}

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

.testimonial-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #b8860b;
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    color: #1a2e2e;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-placeholder {
    width: 50px;
    height: 50px;
    background-color: #b8860b;
    border-radius: 50%;
    flex-shrink: 0;
}

.author-info h4 {
    margin-bottom: 0.25rem;
}

.author-info p {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Contacts */
.contacts {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a2e2e 0%, #2a4a4a 100%);
}

.contacts h2 {
    color: #fafafa;
    margin-bottom: 3rem;
}

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

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

.contact-icon {
    flex-shrink: 0;
}

.contact-details h3 {
    color: #b8860b;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #e0e0e0;
    margin-bottom: 0;
}

.contact-details a {
    color: #fafafa;
    text-decoration: none;
}

.contact-details a:hover {
    color: #b8860b;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    justify-items: center;
}

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #b8860b;
    background-color: rgba(184, 134, 11, 0.1);
}

.footer-copyright p {
    color: #999;
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .btn {
        min-width: 200px;
    }
    
    .content-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .brand-name {
        font-size: 1.2rem;
    }
    
    .services-grid,
    .products-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card.featured {
        transform: none;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}