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

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

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

.header {
    text-align: center;
    padding: 60px 0 40px;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 40px;
}

.logo h1 {
    font-size: 3.5rem;
    color: #000;
    margin-bottom: 0;
    font-weight: 700;
    display: inline;
}

.tagline {
    font-size: 3.5rem;
    color: #dc2626;
    font-weight: 700;
    margin-left: 15px;
}

.main-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 80px;
}

.welcome-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.welcome-description {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: #dc2626;
    color: white;
}

.btn-primary:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
}

.btn-secondary {
    background: white;
    color: #dc2626;
    border: 2px solid #dc2626;
}

.btn-secondary:hover {
    background: #dc2626;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
}

/* Horizontal Layout */
.features {
    display: flex;
    flex-direction: row;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: space-between;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e8e8e8;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    flex: 1;
}

.feature-card:nth-child(1) {
    animation: slideInLeft 0.8s ease-out;
}

.feature-card:nth-child(2) {
    animation: slideInLeft 0.8s ease-out 0.2s both;
}

.feature-card:nth-child(3) {
    animation: slideInLeft 0.8s ease-out 0.4s both;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #dc2626, #000);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.feature-card h3 {
    font-size: 1.5rem;
    color: #000;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
}

.footer {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid #e0e0e0;
    color: #7f8c8d;
    margin-top: 60px;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo h1 {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 2.5rem;
    }

    .features {
        flex-direction: column;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }
}