:root {
    --primary: #E32636;
    --secondary: #F19CBB;
    --dark: #003153;
    --light: #FAFAFA;
    --white: #FFFFFF;
    --text-main: #333333;
    --text-muted: #666666;
    --border-color: #DDDDDD;
    --font-family: 'Helvetica Neue', Arial, sans-serif;
    --transition: all 0.3s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family);
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: var(--dark);
    transition: var(--transition);
}

a:hover {
    color: var(--primary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

.flex-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.reverse {
    flex-direction: row-reverse;
}

.bg-light {
    background-color: var(--light);
}

.text-center {
    text-align: center;
}

.mt-2 { margin-top: 10px; }
.mt-3 { margin-top: 20px; }

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
}

.btn-primary:hover {
    background-color: #c4202e;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 10px 22px;
    border-radius: 4px;
    font-size: 16px;
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

.btn-link {
    background: none;
    color: var(--dark);
    text-decoration: underline;
    font-size: 16px;
    padding: 10px;
}

.site-header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo a {
    font-size: 28px;
    font-weight: bold;
    color: var(--dark);
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.hero-banner {
    background-color: var(--secondary);
    padding: 60px 0;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 42px;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 30px;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,49,83,0.15);
}

.block-image-text,
.block-accordions,
.block-table,
.block-cards,
.block-text-only,
.block-reviews-subscribe {
    padding: 80px 0;
}

.block-text, .block-img {
    flex: 1;
    min-width: 300px;
}

h2 {
    font-size: 32px;
    color: var(--dark);
    margin-bottom: 30px;
}

.block-text p {
    margin-bottom: 15px;
    font-size: 16px;
}

.styled-list {
    list-style: none;
    margin-top: 20px;
}

.styled-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.styled-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 10px;
}

.accordion-header {
    width: 100%;
    text-align: left;
    background: none;
    padding: 20px 0;
    font-size: 18px;
    font-weight: bold;
    color: var(--dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-content {
    padding-bottom: 20px;
    display: none;
    color: var(--text-muted);
}

.accordion-content.active {
    display: block;
}

.table-responsive {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-radius: 8px;
    overflow: hidden;
}

th, td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

th {
    background-color: var(--dark);
    color: var(--white);
}

tr:hover {
    background-color: var(--light);
}

.cards-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    text-align: center;
    border-top: 5px solid transparent;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-5px);
}

.card.popular {
    border-top-color: var(--primary);
    transform: scale(1.05);
}

.card.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.card h3 {
    margin-bottom: 15px;
    color: var(--dark);
}

.card .price {
    font-size: 32px;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 20px;
}

.reviews-section, .subscription-section {
    flex: 1;
    min-width: 300px;
}

.review-item {
    background-color: var(--white);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-left: 4px solid var(--secondary);
}

.review-item p {
    font-style: italic;
    margin-bottom: 10px;
}

.review-item span {
    font-weight: bold;
    color: var(--dark);
}

.subscription-form {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 15px;
}

.subscription-form input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 16px;
}

.subscription-form input:focus {
    outline: none;
    border-color: var(--primary);
}

.subscription-form button {
    width: 100%;
}

.page-content {
    padding: 60px 20px;
    min-height: 60vh;
}

.page-content h1 {
    color: var(--dark);
    margin-bottom: 30px;
}

.page-content h2 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.site-footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    margin-bottom: 40px;
}

.site-footer h3, .site-footer h4 {
    color: var(--secondary);
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: var(--light);
}

.footer-links a:hover {
    color: var(--secondary);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover img {
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    font-size: 14px;
    color: var(--light);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--dark);
    color: var(--white);
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-buttons .btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.cookie-buttons .btn-outline:hover {
    background-color: var(--white);
    color: var(--dark);
}

.cookie-buttons .btn-link {
    color: var(--secondary);
}

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-modal-content {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
}

.cookie-option {
    margin-bottom: 20px;
}

.cookie-option label {
    font-weight: bold;
    font-size: 16px;
    color: var(--dark);
}

.small-text {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 5px;
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
    }
    
    .card.popular {
        transform: scale(1);
    }
}