/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
    background-image: linear-gradient(to bottom, #000, #111, #0a0a0a);
}

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

header {
    text-align: center;
    padding: 30px 0;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 2px;
    background: linear-gradient(to right, transparent, #d71920, transparent);
}

.logos-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 30px;
}

.txone-logo {
    max-width: 250px;
    height: auto;
    margin-bottom: 10px;
}

.mindmash-logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 10px;
}

h1 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

h2 {
    font-size: 1.8rem;
    margin: 30px 0 15px;
    color: #d71920;
}

h3 {
    font-size: 1.4rem;
    margin: 20px 0 10px;
}

p {
    margin-bottom: 15px;
}

.accent {
    color: #d71920;
}

.section {
    background-color: rgba(17, 17, 17, 0.8);
    padding: 30px;
    margin-bottom: 40px;
    border-radius: 10px;
    border-left: 2px solid #d71920;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #d71920, transparent);
}

.section:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.solution-card {
    background-color: rgba(26, 26, 26, 0.9);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(215, 25, 32, 0.1);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.solution-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(215, 25, 32, 0.1), transparent 70%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    border-color: rgba(215, 25, 32, 0.3);
}

.solution-card:hover::after {
    opacity: 1;
}

.solution-card h3 {
    color: #d71920;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.5rem;
    text-shadow: 0 0 10px rgba(215, 25, 32, 0.3);
}

.cta-section {
    text-align: center;
    padding: 50px 0;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    width: 60%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(215, 25, 32, 0.5), transparent);
}

.cta-button {
    display: inline-block;
    background-color: #d71920;
    color: #fff;
    padding: 15px 40px;
    font-size: 1.3rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.4s ease;
    box-shadow: 0 6px 15px rgba(215, 25, 32, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
    letter-spacing: 0.5px;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.4s ease;
    z-index: -1;
}

.cta-button:hover {
    background-color: #f12b32;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(215, 25, 32, 0.4);
}

.cta-button:hover::before {
    left: 100%;
}

.highlights {
    font-weight: bold;
    font-size: 1.1em;
    background: linear-gradient(90deg, #d71920, #f12b32);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
    display: inline-block;
    margin: 5px 0;
}

ul {
    margin-left: 20px;
    margin-bottom: 20px;
    list-style-type: none;
}

li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
}

li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    background-color: #d71920;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(215, 25, 32, 0.5);
}

footer {
    text-align: center;
    padding: 30px 0;
    margin-top: 70px;
    font-size: 0.9rem;
    color: #999;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(to right, transparent, #333, transparent);
}

/* Animation styles */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.section, .solution-card {
    animation: fadeIn 0.8s ease-out forwards;
}

.section:nth-child(2) { animation-delay: 0.2s; }
.section:nth-child(3) { animation-delay: 0.4s; }
.section:nth-child(4) { animation-delay: 0.6s; }

.solution-card:nth-child(1) { animation-delay: 0.8s; }
.solution-card:nth-child(2) { animation-delay: 1s; }
.solution-card:nth-child(3) { animation-delay: 1.2s; }
.solution-card:nth-child(4) { animation-delay: 1.4s; }

.cta-button {
    animation: pulse 2s infinite;
}

/* Responsive styles */
@media (max-width: 768px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .logos-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .txone-logo, .mindmash-logo {
        max-width: 200px;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.6rem;
    }
    
    .container {
        padding: 15px;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 1.1rem;
    }
    
    .txone-logo {
        max-width: 180px;
    }
    
    .mindmash-logo {
        max-width: 150px;
    }
}
