p {
  margin-bottom: 14px;
}
p:first-of-type,
p:last-of-type {
    margin-bottom: 0;
}

        .seo-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .seo-header h1 {
            font-size: 2.5rem;
            color: #1a1a1a;
            margin-bottom: 15px;
            font-weight: 700;
            line-height: 1.2;
        }

        .seo-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        .seo-card {
            padding: 25px;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .seo-card:hover {
            border-color: #e28234;
            box-shadow: 0 4px 12px rgba(255, 107, 53, 0.15);
            transform: translateY(-2px);
        }

        .seo-card-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #e2a954, #e28234);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 24px;
            color: white;
        }

        .seo-card h3 {
            font-size: 1.3rem;
            color: #1a1a1a;
            margin-bottom: 12px;
            font-weight: 600;
        }

        .seo-text {
            margin-top: 40px;
            padding-top: 40px;
            border-top: 1px solid #e0e0e0;
        }

        .seo-text h2 {
            font-size: 1.8rem;
            color: #1a1a1a;
            margin-bottom: 20px;
            margin-top: 35px;
            font-weight: 600;
        }

        .seo-text h3 {
            font-size: 1.4rem;
            color: #e28234;
            margin-bottom: 15px;
            margin-top: 25px;
            font-weight: 600;
        }

        .seo-text ul {
            list-style: none;
            padding-left: 0;
            margin: 25px 0;
        }

        .seo-text ul li {
            padding: 12px 0 12px 30px;
            position: relative;
            color: #555;
            line-height: 1.7;
        }

        .seo-text ul li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #e28234;
            font-weight: bold;
            font-size: 1.2rem;
        }

        .seo-text ol {
            margin: 20px 0;
            padding-left: 25px;
        }

        .seo-text ol li {
            color: #555;
            line-height: 1.8;
            margin-bottom: 10px;
        }

        .highlight-box {
            background: linear-gradient(135deg, #FFF5F2 0%, #FFE8E0 100%);
            border-left: 4px solid #e28234;
            padding: 25px;
            border-radius: 8px;
            margin: 30px 0;
        }

        .highlight-box h3 {
            color: #e28234;
            font-size: 1.3rem;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .warning-box {
            background: #FFF3CD;
            border-left: 4px solid #FFC107;
            padding: 20px 25px;
            border-radius: 8px;
            margin: 25px 0;
        }

        .warning-box h4 {
            color: #856404;
            font-size: 1.2rem;
            margin-bottom: 12px;
            font-weight: 600;
        }

        .warning-box ul {
            margin: 0;
        }

        .warning-box ul li {
            color: #856404;
        }

        .warning-box ul li:before {
            color: #FFC107;
        }

        .method-card {
            background: #f9f9f9;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            padding: 25px;
            margin: 20px 0;
        }

        .method-card h4 {
            color: #1a1a1a;
            font-size: 1.2rem;
            margin-bottom: 15px;
            font-weight: 600;
            display: flex;
            align-items: center;
        }

        .method-card h4:before {
            content: "🔸";
            margin-right: 10px;
        }

        .seo-cta {
            text-align: center;
            margin-top: 40px;
            padding-top: 40px;
            border-top: 1px solid #e0e0e0;
        }

        .seo-cta h3 {
            font-size: 1.5rem;
            color: #1a1a1a;
            margin-bottom: 20px;
        }

        .btn-primary {
            display: inline-block;
            padding: 15px 40px;
            background: linear-gradient(135deg, #e2a954, #e28234);
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
        }

        /* Адаптивність */
        @media (max-width: 768px) {

            .seo-header h1 {
                font-size: 1.8rem;
            }

            .seo-content {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .seo-text h2 {
                font-size: 1.5rem;
            }

            .seo-text h3 {
                font-size: 1.3rem;
            }

            .seo-cta h3 {
                font-size: 1.3rem;
            }

            .highlight-box,
            .warning-box,
            .method-card {
                padding: 20px;
            }
        }

        @media (max-width: 480px) {

            .seo-header h1 {
                font-size: 1.5rem;
            }

            .seo-card {
                padding: 20px;
            }

            .btn-primary {
                padding: 12px 30px;
                font-size: 0.95rem;
            }
        }