/* email_flyer.css - Styles used for email newsletters

/* Reset for email compatibility */
.email-flyer body, .email-flyer table, .email-flyer td, .email-flyer div, .email-flyer p, .email-flyer a {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

.email-flyer body {
    font-family: Arial, sans-serif;
    line-height: 1.4;
    color: #333333;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

.email-flyer table {
    border-collapse: collapse;
}

.email-flyer img {
    border: 0;
    height: auto;
    line-height: 100%;
    outline: none;
    text-decoration: none;
    -ms-interpolation-mode: bicubic;
}

.email-flyer .container {
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
    background-color: #ffffff;
}

.email-flyer .header {
    background-color: white;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.email-flyer .logo {
    height: 50px;
    width: auto;
}

.email-flyer .hero {
    background: linear-gradient(135deg, #2a87ed 0%, #1a5bb5 100%);
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.email-flyer .hero h1 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.2;
}

.email-flyer .hero-subtitle {
    font-size: 16px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.email-flyer .section {
    padding: 30px 20px;
    border-bottom: 1px solid #e9ecef;
}

.email-flyer .section-title {
    font-size: 22px;
    font-weight: bold;
    color: #2a87ed;
    margin-bottom: 15px;
    text-align: center;
}

.email-flyer .service-grid {
    margin: 20px 0;
}

.email-flyer .service-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.email-flyer .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.email-flyer .service-title {
    font-size: 18px;
    font-weight: bold;
    color: #2d2d2d;
    margin-bottom: 10px;
}

.email-flyer .service-description {
    font-size: 14px;
    color: #666666;
    line-height: 1.5;
}

/* Flyer Button Styles */
.email-flyer .cta-button {
    display: inline-block;
    background-color: #2a87ed;
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    margin: 10px 5px;
    transition: background-color 0.3s ease;
}

.email-flyer .cta-button:hover {
    background-color: #1a5bb5;
}

.email-flyer .cta-secondary {
    display: inline-block;
    background-color: #6c757d;
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    margin: 10px 5px;
    transition: background-color 0.3s ease;
}

.email-flyer .cta-secondary:hover {
    background-color: #545b62;
}

.email-flyer .whatsapp-button {
    display: inline-block;
    background-color: #25D366;
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    margin: 10px 5px;
    transition: background-color 0.3s ease;
}

.email-flyer .whatsapp-button:hover {
    background-color: #075E54;
}

.email-flyer .telegram-button {
    display: inline-block;
    background-color: #0088cc;
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 3px;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    margin: 10px 5px;
    transition: background-color 0.3s ease;
}

.email-flyer .telegram-button:hover {
    background-color: #007dbb;
}

.email-flyer .hardware-list {
    list-style-type: none;
    padding: 0;
    margin: 15px 0;
}

.email-flyer .hardware-list li {
    background: url('https://mymotherboards.jp/images/1828640.png') no-repeat left top 2px;
    background-size: 16px 16px;
    padding-left: 25px;
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.4;
}

.email-flyer .footer {
    background-color: #2c3e50;
    color: white;
    padding: 30px 20px;
    text-align: center;
}

.email-flyer .footer-links {
    margin-bottom: 15px;
}

.email-flyer .footer-links a {
    color: #ecf0f1;
    text-decoration: none;
    margin: 0 10px;
    font-size: 14px;
}

.email-flyer .footer-contact {
    margin-bottom: 15px;
    font-size: 14px;
    color: #bdc3c7;
}

.email-flyer .footer-legal {
    font-size: 12px;
    color: #95a5a6;
}

.email-flyer .tracking-pixel {
    display: none;
    font-size: 0;
    line-height: 0;
}

.email-flyer .text-center {
    text-align: center;
}

.email-flyer .mb-20 {
    margin-bottom: 20px;
}

.email-flyer .mt-20 {
    margin-top: 20px;
}

/* Button styles for use in regular website */
.flyer-cta-button {
    display: inline-block;
    background-color: #2a87ed;
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-family: 'TildaSans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    margin: 10px 5px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.flyer-cta-button:hover {
    background-color: #1a5bb5;
}

.flyer-whatsapp-button {
    display: inline-block;
    background-color: #25D366;
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-family: 'TildaSans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    margin: 10px 5px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.flyer-whatsapp-button:hover {
    background-color: #075E54;
}

.flyer-telegram-button {
    display: inline-block;
    background-color: #0088cc;
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-family: 'TildaSans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    margin: 10px 5px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.flyer-telegram-button:hover {
    background-color: #007dbb;
}
