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

/* Body styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f0f2f5;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23003366' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Main container */
.flyer {
    background: white;
    max-width: 800px;
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    overflow: hidden;
    position: relative;
}

/* Header section */
.header {
    background: #003366;
    color: white;
    padding: 40px 30px;
    text-align: center;
    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;
}

/* Problem-Solution section */
.problem-solution {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.problem, .solution {
    padding: 25px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.problem {
    background: #8c1c13;
    color: white;
}

.solution {
    background: #1b4965;
    color: white;
}

.problem h3, .solution h3 {
    font-size: 1.4em;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* List styles */
.custom-list {
    list-style: none;
    padding: 0;
}

.custom-list li {
    margin-bottom: 5px;
}

/* Benefits section */
.benefits {
    margin-bottom: 40px;
}

/* Testimonial styles */
.testimonial {
    display: flex;
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    align-items: center;
}

.testimonial-image {
    flex: 0 0 150px;
    overflow: hidden;
}

.executive-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    min-height: 200px;
}

.testimonial-content {
    flex: 1;
    padding: 25px;
}

.testimonial-text {
    font-style: italic;
    color: #333;
    font-size: 1.1em;
    margin-bottom: 15px;
    position: relative;
}

.testimonial-text::before {
    content: '\201C';
    font-size: 3em;
    color: #003366;
    opacity: 0.2;
    position: absolute;
    left: -15px;
    top: -20px;
}

.testimonial-author {
    font-weight: bold;
    color: #003366;
    text-align: right;
}

.benefits h2 {
    color: #2c3e50;
    font-size: 2em;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.benefits h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #003366;
    border-radius: 2px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.benefit-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 15px;
    border-left: 5px solid #003366;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,51,102,0.05);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-card h4 {
    color: #2c3e50;
    font-size: 1.2em;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.benefit-card p, .benefit-card ul {
    color: #555;
    position: relative;
    z-index: 1;
}

/* 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 {
    background: #001a33;
    color: white;
    padding: 30px;
    text-align: center;
    position: relative;
}

.contact-image-container {
    width: 100%;
    max-height: 200px;
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 5px;
}

.contact-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.contact-image:hover {
    opacity: 1;
}

.contact-info h3 {
    margin-bottom: 15px;
    font-size: 1.4em;
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1em;
}

.contact-item a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #cae9ff;
    text-decoration: underline;
}

.icon {
    font-size: 1.5em;
}

/* Responsive styles */
@media (max-width: 768px) {
    .problem-solution {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-details {
        flex-direction: column;
        gap: 15px;
    }
    
    .header h1 {
        font-size: 2em;
    }
    
    .header p {
        font-size: 1em;
    }
    
    .testimonial {
        flex-direction: column;
    }
    
    .testimonial-image {
        flex: 0 0 auto;
        width: 100%;
    }
    
    .cta {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-content {
        padding-right: 0;
        margin-bottom: 20px;
    }
}
