.cms-banner {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    color: white;
    text-align: center;
    padding: 120px 0 80px;
}

.cms-banner h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.cms-banner .subtitle {
    font-size: 24px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cms-banner .description {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
    opacity: 0.8;
}

.cms-banner .buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cms-btn {
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s;
}

.cms-btn-primary {
    background: white;
    color: #2563eb;
}

.cms-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.cms-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cms-btn-secondary:hover {
    background: white;
    color: #2563eb;
}

.cms-features {
    padding: 80px 0;
    background: #f8fafc;
}

.cms-section-title {
    text-align: center;
    margin-bottom: 60px;
}

.cms-section-title h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
}

.cms-section-title p {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.cms-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.cms-feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.cms-feature-card:hover {
    transform: translateY(-5px);
}

.cms-feature-icon {
    width: 60px;
    height: 60px;
    background: #dbeafe;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 28px;
}

.cms-feature-card h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
}

.cms-feature-card p {
    color: #666;
    line-height: 1.6;
}

.cms-advantages {
    padding: 80px 0;
    background: white;
}

.cms-advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.cms-advantage {
    text-align: center;
    padding: 30px 20px;
}

.cms-advantage-icon {
    width: 80px;
    height: 80px;
    background: #dbeafe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
}

.cms-advantage h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
}

.cms-advantage p {
    color: #666;
    line-height: 1.6;
}

.cms-workflow {
    padding: 80px 0;
    background: #f8fafc;
}

.cms-workflow-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 50px;
    position: relative;
}

.cms-workflow-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: #2563eb;
    z-index: 1;
}

.cms-step {
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

.cms-step-number {
    width: 80px;
    height: 80px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
    margin: 0 auto 20px;
    border: 5px solid #f8fafc;
}

.cms-step h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
}

.cms-step p {
    color: #666;
    line-height: 1.6;
    padding: 0 15px;
}

.cms-integration {
    padding: 80px 0;
    background: white;
}

.cms-integration-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.cms-integration-text {
    flex: 1;
}

.cms-integration-text h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 25px;
}

.cms-integration-text p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
}

.cms-integration-list {
    list-style: none;
}

.cms-integration-list li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
    color: #666;
}

.cms-integration-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

.cms-integration-image {
    flex: 1;
    text-align: center;
}

.cms-integration-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.cms-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #1e40af, #2563eb);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    font-weight: bold;
}