.gmd-wrapper {
    font-family: var(--e-global-typography-text-font-family), sans-serif;
    color: #333;
}
.gmd-section {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 80px 20px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
.gmd-alt {
    background: #f9f9f9;
    padding: 80px;
    border-radius: 20px;
    margin: 40px auto;
}
.gmd-col {
    flex: 1 1 400px;
}
.gmd-full {
    flex: 1 1 100%;
}
.gmd-center {
    text-align: center;
}
.gmd-placeholder {
    background: #e2e8f0;
    border: 2px dashed #94a3b8;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    color: #475569;
    font-weight: 600;
    text-align: center;
    padding: 20px;
    transition: all 0.3s ease;
}
.gmd-placeholder:hover {
    background: #cbd5e1;
    border-color: #2E3A73;
    color: #2E3A73;
}
.gmd-image-wrap img {
    border-radius: 12px;
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
h1, h2, h3, h4 {
    color: #2E3A73;
    margin-bottom: 20px;
}
h1 { font-size: 3rem; }
h3 { font-size: 2rem; }
ul.gmd-features, ul.gmd-stats {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}
ul.gmd-features li, ul.gmd-stats li {
    margin-bottom: 10px;
    color: #555;
    font-weight: 500;
}
.gmd-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}
.gmd-buttons.gmd-center {
    justify-content: center;
}
.gmd-btn {
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}
.gmd-btn-primary {
    background: #2E3A73;
    color: #fff;
}
.gmd-btn-primary:hover {
    background: #D4A017;
}
.gmd-btn-secondary {
    background: transparent;
    border: 2px solid #2E3A73;
    color: #2E3A73;
}
.gmd-btn-secondary:hover {
    background: #2E3A73;
    color: #fff;
}
.gmd-grid {
    display: grid;
    gap: 30px;
    width: 100%;
}
.gmd-grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.gmd-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gmd-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.gmd-card .gmd-placeholder {
    min-height: 200px;
    margin-bottom: 20px;
}
.gmd-card ul {
    list-style: none;
    padding: 0;
}
.gmd-cta {
    background: linear-gradient(135deg, #2E3A73, #1a234a);
    color: #fff;
    text-align: center;
    padding: 80px 20px;
    border-radius: 20px;
    margin: 40px auto;
    max-width: 1200px;
}
.gmd-cta h2 {
    color: #fff;
}
.gmd-cta p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    color: #e2e8f0;
}
