/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    background-color: #fff;
}

/* Main container */
.container {
    background: white;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

/* Header section */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 20px;
    background-color: #0a2540;
    color: white;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255,255,255,0.05) 25%,
        transparent 50%
    );
    animation: shimmer 20s linear infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.header h1 {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.header p {
    font-size: 1.2em;
    opacity: 0.95;
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

/* Header image */
.header-image {
    margin-top: 30px;
    position: relative;
    z-index: 1;
    max-width: 100%;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.team-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.team-image:hover {
    transform: scale(1.02);
}

/* Content section */
.content {
    padding: 40px 30px;
}

/* Main Content Styles */
.main-content {
    padding: 20px;
}

.problem-solution {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.problem, .solution {
    flex: 1;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.problem {
    margin-right: 15px;
}

.solution {
    margin-left: 15px;
    background-color: #e6f7ff;
}

.problem h2, .solution h2 {
    color: #0a2540;
    margin-top: 0;
}

.problem-list, .solution-list {
    list-style-type: none;
    padding-left: 0;
}

.problem-list li, .solution-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.problem-list li:before {
    content: '❌';
    position: absolute;
    left: 0;
}

.solution-list li:before {
    content: '✅';
    position: absolute;
    left: 0;
}

.custom-list {
    list-style-type: none;
    padding-left: 0;
}

.custom-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    color: #4a5568;
}

.custom-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0a2540;
}

/* Comparison Table Styles */
.comparison-section {
    margin: 50px 0;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.comparison-section h2 {
    text-align: center;
    color: #0a2540;
    margin-bottom: 30px;
}

.comparison-table-container {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background-color: white;
}

.comparison-table th {
    background-color: #0a2540;
    color: white;
    text-align: left;
    padding: 15px;
}

.comparison-table th:first-child {
    width: 25%;
}

.comparison-table th:not(:first-child) {
    width: 37.5%;
}

.comparison-table td {
    padding: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table .highlight {
    color: #d00;
    font-weight: 600;
}

.comparison-cta {
    text-align: center;
    margin-top: 30px;
}

/* Case Studies Section */
.case-studies-section {
    margin: 50px 0;
}

.case-studies-section h2 {
    text-align: center;
    color: #0a2540;
    margin-bottom: 30px;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.case-study-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.case-study-image {
    height: 200px;
    overflow: hidden;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.case-study-card:hover .case-study-image img {
    transform: scale(1.05);
}

.case-study-content {
    padding: 20px;
}

.case-study-content h3 {
    color: #0a2540;
    margin-top: 0;
    margin-bottom: 10px;
}

.case-study-content p {
    margin-top: 0;
    margin-bottom: 15px;
    color: #4a5568;
}

.case-highlights {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.case-highlights li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
}

.case-highlights li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: #d00;
}

.download-link {
    display: inline-block;
    color: #d00;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.download-link:hover {
    color: #aa0000;
    text-decoration: underline;
}

/* FAQ Section */
.faq-section {
    margin: 50px 0;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.faq-section h2 {
    text-align: center;
    color: #0a2540;
    margin-bottom: 30px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: white;
    overflow: hidden;
}

.faq-question {
    padding: 15px 20px;
    background-color: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #0a2540;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #d00;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #f9f9f9;
}

.faq-answer p {
    margin: 15px 0;
}

/* Benefits Section */
.benefits {
    margin-bottom: 40px;
}

.benefits {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    color: #0a2540;
    text-align: center;
    margin: 0 auto 30px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #0a2540;
}

.benefits-grid {
    margin-top: 30px;
}

.benefit-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.benefit-card {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    flex: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.benefit-card h4 {
    color: #0a2540;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.benefit-card .custom-list {
    text-align: left;
}

.benefit-card .custom-list li {
    font-size: 0.9rem;
}

/* Testimonial */
.testimonial {
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border: 1px solid #e0e0e0;
}

.testimonial-image {
    flex: 0 0 120px;
    margin-right: 30px;
}

.executive-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    flex: 1;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 10px;
    color: #4a5568;
    font-size: 1.1rem;
}

.testimonial-author {
    font-weight: bold;
    color: #0a2540;
}

.testimonial-text::before {
    content: '\201C';
    font-size: 3em;
    color: #0a2540;
    opacity: 0.2;
    position: absolute;
    left: -15px;
    top: -20px;
}

/* Call to action section */
.cta {
    background: #003366;
    color: white;
    padding: 40px;
    border-radius: 15px;
    margin: 30px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.cta-content {
    flex: 1;
    min-width: 300px;
    text-align: left;
    padding-right: 30px;
}

.cta-image {
    flex: 0 0 300px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    margin: 0 auto;
}

.server-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.server-image:hover {
    transform: scale(1.05);
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shine 5s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.cta h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.cta p {
    font-size: 1.1em;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.cta-list {
    list-style: none;
    padding: 0;
    margin: 10px 0;
    color: white;
}

/* Contact information section */
.contact-info {
    text-align: center;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.contact-image-container {
    max-width: 500px;
    margin: 0 auto 20px;
}

.contact-image {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
    color: #0a2540;
    margin-bottom: 20px;
}

.contact-details {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 20px;
}

.contact-method {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-method p:first-child {
    font-weight: bold;
    margin-bottom: 5px;
    color: #4a5568;
}

.contact-method a {
    color: #0a2540;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-method a:hover {
    color: #d00;
}

.response-promise {
    background-color: #e6f7ff;
    color: #0a2540;
    padding: 10px 15px;
    border-radius: 4px;
    margin: 15px auto;
    max-width: 400px;
    font-weight: 600;
}

.contact-cta {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

/* Header Styles */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 30px;
}

.header-content {
    flex: 1;
    text-align: left;
    padding-right: 20px;
    color: white;
}

.header h1 {
    color: #0a2540;
    margin-bottom: 15px;
    font-size: 2.5rem;
}

.header p {
    color: #4a5568;
    max-width: 600px;
    margin: 0 0 30px;
    font-size: 1.1rem;
}

.header-cta {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.primary-cta {
    background-color: #d00;
    color: white;
}

.secondary-cta {
    background-color: #0a2540;
    color: white;
}

.video-container {
    flex: 1;
    max-width: 500px;
}

.video-placeholder {
    position: relative;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    background-color: #f0f0f0;
    aspect-ratio: 16/9;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.3s ease;
    object-fit: cover;
}

.video-placeholder:hover .video-thumbnail {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
}

.play-button span {
    font-size: 30px;
    color: #d00;
}

.play-button p {
    font-size: 12px;
    margin-top: 5px;
    color: #333;
    text-align: center;
}

.video-placeholder:hover .play-button {
    background-color: rgba(255, 255, 255, 0.9);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .header {
        flex-direction: column;
        text-align: center;
    }
    
    .header-content {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .header-cta {
        justify-content: center;
    }
    
    .video-container {
        max-width: 100%;
    }
    
    .comparison-table th, .comparison-table td {
        padding: 10px;
    }
}

@media (max-width: 768px) {
    .problem-solution {
        flex-direction: column;
    }
    
    .problem, .solution {
        margin: 0 0 20px 0;
    }
    
    .testimonial {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-image {
        margin: 0 0 20px 0;
    }
    
    .cta {
        flex-direction: column;
    }
    
    .cta-image {
        margin: 30px 0 0 0;
        width: 100%;
    }
    
    .contact-details {
        flex-direction: column;
        gap: 15px;
    }
    
    .case-studies-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .comparison-table th, .comparison-table td {
        padding: 8px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}
