* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Header Section */
header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    max-height: 80px;
    width: auto;
    background: white;
    padding: 10px;
    border-radius: 8px;
}

.tagline {
    font-size: 1.1rem;
    font-weight: 300;
    opacity: 0.95;
}

/* Hero Section */
.hero {
    background: url('images/shutterstock_789177448.jpg') center/cover no-repeat;
    position: relative;
    padding: 120px 0;
    text-align: center;
    color: white;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(102, 126, 234, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #667eea;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px 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 10px 25px rgba(0,0,0,0.15);
}

.service-card h3 {
    color: #667eea;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-card p {
    color: #666;
    line-height: 1.8;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    color: #667eea;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-text p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* CTA Section */
.cta {
    background: url('images/shutterstock_1202653786.jpg') center/cover no-repeat;
    position: relative;
    padding: 80px 0;
    text-align: center;
    color: white;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(102, 126, 234, 0.85);
}

.cta .container {
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    background: white;
    color: #667eea;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 30px 0;
}

footer p {
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* Product feature pages */
.carelog-page .hero {
    background-image: url('images/carelog-hero.png');
}

.signin-page .hero {
    background-image: url('images/signin-hero.png');
}

.assets-page .hero {
    background-image: url('images/assets-hero.png');
}

.product-page .header-home-link {
    color: white;
    text-decoration: none;
}

.product-page .pillars {
    padding: 80px 0;
    background: #f8f9fa;
}

.product-page .pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.product-page .pillar {
    text-align: center;
    margin: 0;
}

.product-page .pillar h3 {
    color: #667eea;
    font-size: 1.4rem;
    margin: 12px 0 10px;
}

.product-page .pillar p {
    color: #666;
    margin: 0;
}

.product-page .callout-section {
    padding: 80px 0;
    background: white;
}

.product-page .callout-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 48px;
    align-items: center;
    background: #f4f6ff;
    border: 1px solid #d9def8;
    border-left: 6px solid #667eea;
    border-radius: 12px;
    padding: 40px;
}

.product-page .callout-kicker {
    display: inline-block;
    color: #667eea;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.product-page .callout-section h2 {
    color: #667eea;
    font-size: 2.1rem;
    margin-bottom: 16px;
    line-height: 1.25;
}

.product-page .callout-section p,
.product-page .callout-section li {
    color: #444;
    font-size: 1.05rem;
    line-height: 1.7;
}

.product-page .callout-section p {
    margin-bottom: 14px;
}

.product-page .callout-section a {
    color: #667eea;
    font-weight: 600;
}

.product-page .feature-highlight {
    padding: 80px 0;
    background: #fff;
}

.product-page .feature-highlight.alt {
    background: #f8f9fa;
}

.product-page .feature-highlight .about-content {
    align-items: center;
    gap: 40px;
}

.product-page .feature-highlight .about-image {
    width: 100%;
}

.product-page .about-image img,
.product-page .feature-highlight .about-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.product-page .feature-list {
    list-style: none;
    margin: 24px 0 0;
    padding: 0;
}

.product-page .feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 0 0 14px;
    padding: 0;
    color: #444;
    font-size: 1.05rem;
    line-height: 1.55;
}

.product-page .feature-tick {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #667eea;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1;
}

.product-page .modules {
    padding: 80px 0;
    background: white;
}

.product-page .module-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.product-page .module-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 28px;
    border-left: 4px solid #667eea;
}

.product-page .module-card h3 {
    color: #667eea;
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.product-page .module-card p {
    color: #666;
    font-size: 0.98rem;
    margin: 0;
}

@media (max-width: 900px) {
    .product-page .callout-panel,
    .product-page .feature-highlight .about-content,
    .product-page .module-grid {
        grid-template-columns: 1fr;
    }

    .product-page .callout-panel {
        padding: 28px;
    }
}
