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

body {
    font-family: Arial, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    background-color: rgb(255, 250, 235);
    color: rgb(31, 31, 31);
    line-height: 1.6;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: rgba(255, 250, 235, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: rgb(31, 31, 31);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: rgb(31, 31, 31);
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: rgb(255, 87, 34);
}

.nav-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn.primary {
    background-color: rgb(255, 87, 34);
    color: white;
}

.nav-btn.secondary {
    background-color: transparent;
    color: rgb(31, 31, 31);
    border: 1px solid rgb(31, 31, 31);
}

.nav-btn:hover {
    transform: translateY(-2px);
}

.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

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

.hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-title {
    font-size: 90px;
    font-weight: 400;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-search {
    display: flex;
    max-width: 500px;
    margin: 0 auto 2rem;
    background: white;
    border-radius: 8px;
    overflow: hidden;
}

.hero-input {
    flex: 1;
    padding: 1rem;
    border: none;
    font-size: 1rem;
    outline: none;
    color: rgb(31, 31, 31);
}

.hero-search-btn {
    padding: 1rem;
    background: rgb(255, 87, 34);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.hero-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-btn.primary {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.hero-btn.secondary {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.hero-btn:hover {
    background-color: white;
    color: rgb(31, 31, 31);
}

.companies-section {
    padding: 4rem 0;
    background-color: rgb(255, 250, 235);
}

.companies-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 2rem;
}

.company-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: rgb(31, 31, 31);
    opacity: 0.7;
}

.features-section {
    padding: 6rem 0;
    background-color: rgb(255, 250, 235);
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 0 2rem;
}

.feature-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-title {
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: rgb(31, 31, 31);
}

.feature-icon {
    font-size: 2rem;
}

.feature-right {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.feature-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: rgb(31, 31, 31);
}

.feature-item p {
    font-size: 1rem;
    color: rgb(31, 31, 31);
    opacity: 0.8;
}

.value-section {
    padding: 6rem 0;
    background-color: rgb(255, 250, 235);
}

.value-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 0 2rem;
}

.value-title {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: rgb(31, 31, 31);
}

.value-subtitle {
    font-size: 1.125rem;
    color: rgb(31, 31, 31);
    opacity: 0.8;
}

.news-section {
    padding: 6rem 0;
    background-color: rgb(255, 250, 235);
}

.news-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.news-title {
    font-size: 3rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 4rem;
    color: rgb(31, 31, 31);
}

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

.news-left h3 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: rgb(31, 31, 31);
}

.news-left p {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: rgb(31, 31, 31);
    opacity: 0.8;
}

.news-btn {
    padding: 0.75rem 1.5rem;
    background-color: rgb(31, 31, 31);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.news-btn:hover {
    background-color: rgb(255, 87, 34);
}

.news-demo {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.demo-interface {
    margin-bottom: 1.5rem;
}

.demo-header {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: rgb(31, 31, 31);
}

.demo-tools {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.tool-item {
    padding: 0.5rem;
    background: rgb(248, 248, 248);
    border-radius: 6px;
    font-size: 0.875rem;
    color: rgb(31, 31, 31);
}

.demo-results h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: rgb(31, 31, 31);
}

.demo-results p {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    color: rgb(31, 31, 31);
    opacity: 0.8;
}

.footer {
    background-color: rgb(31, 31, 31);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.footer-section a {
    display: block;
    color: white;
    text-decoration: none;
    margin-bottom: 0.5rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .features-container,
    .news-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
