/* StickerPen page styles */
.stickerpenPage h1 {
    line-height: 1.4em;
}
.stickerpenPage .infoBlock h2 {
    color: #333;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
}

.stickerpenPage .infoBlock p {
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

.cta-block .centerLink p {
    color: #fff;
}

.stickerpenPage .infoBlock ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.stickerpenPage .infoBlock li {
    margin-bottom: 8px;
    line-height: 1.5;
    color: #555;
}

.infoBlock .imgSp {
    max-width: 70%;
    height: auto;
    margin: 0 auto 0 auto;
    display: block;
    border: 1px solid #ccc;
    padding: 15px;
}

.cta-block {
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 50px 30px;
    border-radius: 15px;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="60" cy="30" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.5;
}

.cta-block .centerLink {
    max-width: none;
    position: relative;
    z-index: 1;
    margin: 0;
}

.cta-block .startBtn {
    background: white;
    color: white;
    background: transparent;
    border: 2px solid white;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    letter-spacing: 1px;
}

.cta-block .startBtn:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.cta-block p {
    margin: 0;
    font-size: 18px;
    opacity: 0.95;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .mainPage .infoBlock h2 {
        font-size: 20px;
    }

    .cta-block {
        padding: 30px 15px;
    }

    .cta-block .startBtn {
        padding: 12px 25px;
        font-size: 16px;
    }
}