<?php
/**
 * Template Name: Автобилборды - без стилей
 */

// Отключаем стили темы
add_filter('wp_enqueue_scripts', function() {
    wp_dequeue_style('theme-style');
    wp_dequeue_style('parent-style');
}, 100);

get_header();
?>

<style>
/* Сброс всех стилей */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: white !important;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Ваши стили для контента */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-button {
    background: #ff6b6b;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    cursor: pointer;
}
</style>

<div class="container">
    <!-- Ваш контент здесь -->
    <div class="hero-section">
        <h1>Заказать рекламу на автобилбордах в Москве и области</h1>
        <p>Эффективный способ донести ваш бренд до тысяч людей каждый день</p>
        <button class="cta-button">ПОЛУЧИТЬ РАСЧЁТ СТОИМОСТИ</button>
    </div>
    
    <!-- Остальной ваш контент -->
</div>

<?php get_footer(); ?>