        .header_temp {
            background-color: #363630;
            color: #F8F8F8;
            text-align: center;
        }
        h1 {
            font-size: 2.5em;
            margin-bottom: 20px;
        }
        .intro-text {
            font-size: 1.2em;
            max-width: 800px;
            margin: 0 auto 40px;
        }
        .features {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            margin: 40px 0;
        }
        .feature-item {
            text-align: center;
            width: 200px;
            margin: 20px;
        }
        .feature-icon {
            background-color: #CC6633;
            color: #F8F8F8;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            font-size: 2em;
        }
        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }
        .gallery a {
            display: block;
            overflow: hidden;
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        .gallery img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: transform 0.3s;
        }
        .gallery img:hover {
            transform: scale(1.05);
        }
        .time-frame {
            background-color: #363630;
            color: #F8F8F8;
            padding: 40px;
            text-align: center;
            margin: 40px 0;
        }
        .cta {
            background-color: #CC6633;
            color: #F8F8F8;
            padding: 40px;
            text-align: center;
            border-radius: 5px;
        }
        .cta-button {
            display: inline-block;
            background-color: #363630;
            color: #F8F8F8;
            padding: 12px 30px;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            margin-top: 20px;
            transition: background-color 0.3s;
        }
        .cta-button:hover {
            background-color: #333333;
        }
        footer {
            background-color: #333333;
            color: #F8F8F8;
            text-align: center;
            padding: 20px;
            margin-top: 40px;
        }

            .requirements {
        padding: 60px 0;
        background-color: #F8F8F8;
        position: relative;
    }
    
    .requirements:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 10px;
        background: linear-gradient(90deg, #CC6633 0%, #363630 100%);
    }
    
    .section-subtitle {
        text-align: center;
        color: #CC6633;
        font-size: 1.2em;
        margin-bottom: 40px;
        font-weight: 300;
    }
    
    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }
    
    .feature-card {
        background: white;
        border-radius: 10px;
        padding: 30px 25px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        position: relative;
        overflow: hidden;
        transition: transform 0.3s, box-shadow 0.3s;
    }
    
    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }
    
    .feature-icon-wrapper {
        width: 60px;
        height: 60px;
        background-color: rgba(204,102,51,0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
    }
    
    .feature-icon {
        width: 32px;
        height: 32px;
        fill: #CC6633;
    }
    
    .feature-card h3 {
        color: #363630;
        margin-bottom: 15px;
        font-size: 1.3em;
    }
    
    .feature-details p {
        margin: 5px 0;
        color: #555;
    }
    
    .feature-details p strong {
        color: #333;
        font-weight: 600;
    }
    
    .feature-hint {
        font-size: 0.85em;
        color: #888;
        font-style: italic;
    }
    
    .feature-decoration {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, #CC6633 0%, #363630 100%);
        opacity: 0.7;
        transition: height 0.3s;
    }
    
    .feature-card:hover .feature-decoration {
        height: 6px;
    }
    
    @media (max-width: 768px) {
        .features-grid {
            grid-template-columns: 1fr;
        }
    }

        .seo-motivation {
        background: linear-gradient(to bottom, #FFFFFF 0%, #F8F8F8 100%);
        padding: 60px 0;
        border-top: 1px solid #EAEAEA;
        border-bottom: 1px solid #EAEAEA;
    }
    
    .seo-content {
    }
    
    .seo-text {
        font-size: 1.1em;
        line-height: 1.7;
        color: #333333;
    }
    
    .seo-text h3 {
        color: #CC6633;
        margin-top: 30px;
        font-size: 1.4em;
    }
    
    .benefits-list {
        background-color: rgba(204,102,51,0.05);
        padding: 20px;
        border-left: 3px solid #CC6633;
        margin: 20px 0;
    }
    
    .benefits-list li {
        margin-bottom: 10px;
        position: relative;
        padding-left: 25px;
        list-style: none;
    }
    
    .benefits-list li:before {
        content: "✓";
        color: #CC6633;
        position: absolute;
        left: 0;
        font-weight: bold;
    }
    
    .features-table {
        margin: 25px 0;
        border: 1px solid #EAEAEA;
        border-radius: 5px;
        overflow: hidden;
    }
    
    .feature-row {
        display: grid;
        grid-template-columns: 150px 1fr;
        border-bottom: 1px solid #EAEAEA;
    }
    
    .feature-row:last-child {
        border-bottom: none;
    }
    
    .feature-name {
        background-color: #363630;
        color: white;
        padding: 12px 15px;
        font-weight: 500;
    }
    
    .feature-desc {
        padding: 12px 15px;
        background-color: white;
    }
    
    .cta-block {
        background-color: #363630;
        color: white;
        padding: 25px;
        border-radius: 5px;
        margin-top: 40px;
    }
    
    .seo-button {
        background-color: #CC6633;
        color: white;
        border: none;
        padding: 12px 25px;
        font-size: 1.1em;
        border-radius: 5px;
        cursor: pointer;
        margin-top: 15px;
        transition: background-color 0.3s;
    }
    
    .seo-button:hover {
        background-color: #B3592E;
    }
    
    .seo-image {
        position: relative;
        border-radius: 5px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .seo-image img {
        width: 100%;
        height: auto;
        display: block;
    }
    
    .image-caption {
        background-color: rgba(0,0,0,0.7);
        color: white;
        padding: 8px 15px;
        font-size: 0.9em;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
    }
    
    @media (max-width: 768px) {
        .seo-content {
            grid-template-columns: 1fr;
        }
        
        .seo-image {
            order: -1;
        }
    }
    
    .visually-hidden {
        position: absolute;
        width: 1px;
        height: 1px;
        margin: -1px;
        padding: 0;
        overflow: hidden;
        clip: rect(0,0,0,0);
        border: 0;
    }