:root {
--plum: #4A154B;
--deep-plum: #2D0A2E;
--light-plum: #6B2E6F;
--rose-gold: #B76E79;
--pearl-white: #F5F5F0;
--cream: #FBF8F3;
--gold-accent: #D4AF37;
--shadow: rgba(42, 20, 43, 0.15);
--shadow-heavy: rgba(42, 20, 43, 0.3);
}

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

body {
font-family: 'Georgia', 'Garamond', serif;
color: var(--deep-plum);
background: linear-gradient(135deg, var(--pearl-white) 0%, var(--cream) 100%);
line-height: 1.7;
overflow-x: hidden;
}

.container-fluid {
max-width: 1400px;
margin: 0 auto;
padding: 0 30px;
}

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

.container-narrow {
max-width: 900px;
margin: 0 auto;
padding: 0 30px;
}

.main-header {
background: linear-gradient(to right, var(--deep-plum), var(--plum));
padding: 20px 0;
position: sticky;
top: 0;
z-index: 1000;
box-shadow: 0 4px 20px var(--shadow);
}

.navbar {
display: flex;
justify-content: space-between;
align-items: center;
position: relative;
}

.logo-wrapper img {
height: 60px;
width: auto;
filter: brightness(1.1);
}

.nav-menu {
display: flex;
list-style: none;
gap: 35px;
align-items: center;
}

.nav-menu a {
color: var(--pearl-white);
text-decoration: none;
font-size: 16px;
font-weight: 500;
letter-spacing: 0.5px;
transition: all 0.3s ease;
padding: 8px 0;
position: relative;
}

.nav-menu a::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 2px;
background: var(--rose-gold);
transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
width: 100%;
}

.nav-toggle {
display: none;
flex-direction: column;
background: transparent;
border: none;
cursor: pointer;
padding: 5px;
}

.nav-toggle span {
width: 28px;
height: 3px;
background: var(--pearl-white);
margin: 4px 0;
border-radius: 2px;
transition: 0.3s;
}

.lang-switcher {
margin-left: 20px;
}

.lang-btn {
background: var(--rose-gold);
color: var(--pearl-white);
border: none;
padding: 8px 18px;
border-radius: 20px;
cursor: pointer;
font-size: 14px;
font-weight: 600;
transition: all 0.3s ease;
}

.lang-btn:hover {
background: var(--gold-accent);
transform: translateY(-2px);
}

.hero-section {
position: relative;
height: 85vh;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}

.hero-image {
position: absolute;
width: 100%;
height: 100%;
object-fit: cover;
z-index: 1;
}

.hero-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, rgba(42, 20, 43, 0.7), rgba(74, 21, 75, 0.6));
z-index: 2;
}

.hero-content {
position: relative;
z-index: 3;
text-align: center;
color: var(--pearl-white);
max-width: 800px;
padding: 40px;
}

.hero-title {
font-size: 62px;
font-weight: 700;
margin-bottom: 20px;
letter-spacing: 2px;
text-shadow: 2px 4px 8px var(--shadow-heavy);
line-height: 1.2;
}

.hero-subtitle {
font-size: 24px;
font-weight: 300;
margin-bottom: 40px;
letter-spacing: 1px;
font-style: italic;
}

.cta-button {
display: inline-block;
background: var(--rose-gold);
color: var(--pearl-white);
padding: 16px 45px;
text-decoration: none;
font-size: 18px;
font-weight: 600;
border-radius: 30px;
transition: all 0.3s ease;
box-shadow: 0 6px 20px rgba(183, 110, 121, 0.4);
letter-spacing: 0.5px;
}

.cta-button:hover {
background: var(--gold-accent);
transform: translateY(-3px);
box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.intro-section {
padding: 100px 0;
}

.section-header {
text-align: center;
margin-bottom: 60px;
}

.section-header h2 {
font-size: 42px;
color: var(--plum);
margin-bottom: 20px;
font-weight: 700;
letter-spacing: 1px;
}

.divider-ornament {
width: 120px;
height: 3px;
background: linear-gradient(to right, transparent, var(--rose-gold), transparent);
margin: 0 auto;
position: relative;
}

.divider-ornament::before,
.divider-ornament::after {
content: '◆';
position: absolute;
top: -10px;
color: var(--rose-gold);
font-size: 14px;
}

.divider-ornament::before {
left: -20px;
}

.divider-ornament::after {
right: -20px;
}

.intro-text {
font-size: 20px;
line-height: 1.9;
text-align: center;
color: var(--deep-plum);
margin-bottom: 30px;
}

.features-section {
padding: 80px 0;
background: var(--cream);
}

.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 50px;
}

.feature-card {
background: white;
border-radius: 15px;
overflow: hidden;
box-shadow: 0 10px 40px var(--shadow);
transition: all 0.4s ease;
position: relative;
}

.feature-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 50px var(--shadow-heavy);
}

.feature-icon {
position: absolute;
top: 20px;
right: 20px;
font-size: 40px;
color: var(--rose-gold);
z-index: 10;
text-shadow: 2px 2px 4px var(--shadow);
}

.feature-card img {
width: 100%;
height: 280px;
object-fit: cover;
}

.feature-card h3 {
font-size: 26px;
color: var(--plum);
margin: 25px 30px 15px;
font-weight: 700;
}

.feature-card p {
font-size: 16px;
line-height: 1.8;
color: var(--deep-plum);
margin: 0 30px 30px;
}

.comparison-section {
padding: 100px 0;
background: linear-gradient(135deg, var(--pearl-white) 0%, white 100%);
}

.comparison-table-wrapper {
overflow-x: auto;
margin-top: 40px;
}

.comparison-table {
width: 100%;
border-collapse: separate;
border-spacing: 0;
box-shadow: 0 10px 40px var(--shadow);
border-radius: 15px;
overflow: hidden;
}

.comparison-table thead {
background: linear-gradient(to right, var(--plum), var(--light-plum));
}

.comparison-table th {
padding: 20px;
text-align: left;
color: var(--pearl-white);
font-size: 18px;
font-weight: 700;
letter-spacing: 0.5px;
}

.comparison-table td {
padding: 18px 20px;
border-bottom: 1px solid #e0e0e0;
font-size: 16px;
background: white;
}

.comparison-table tbody tr:hover {
background: var(--cream);
}

.comparison-table tbody tr:nth-child(even) {
background: #fafafa;
}

.comparison-table tbody tr:nth-child(even):hover {
background: var(--cream);
}

.testimonials-section {
padding: 100px 0;
background: var(--cream);
}

.testimonials-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 40px;
margin-top: 50px;
}

.testimonial-card {
background: white;
padding: 40px;
border-radius: 15px;
box-shadow: 0 8px 30px var(--shadow);
position: relative;
transition: all 0.3s ease;
}

.testimonial-card:hover {
transform: translateY(-5px);
box-shadow: 0 12px 40px var(--shadow-heavy);
}

.quote-mark {
font-size: 80px;
color: var(--rose-gold);
position: absolute;
top: -10px;
left: 20px;
opacity: 0.3;
line-height: 1;
}

.testimonial-card p {
font-size: 17px;
line-height: 1.8;
margin-bottom: 25px;
position: relative;
font-style: italic;
color: var(--deep-plum);
}

.testimonial-author {
display: flex;
flex-direction: column;
gap: 5px;
}

.testimonial-author strong {
color: var(--plum);
font-size: 18px;
}

.testimonial-author span {
color: var(--rose-gold);
font-size: 14px;
}

.cta-section {
padding: 100px 0;
background: linear-gradient(135deg, var(--plum), var(--deep-plum));
text-align: center;
}

.cta-content h2 {
font-size: 46px;
color: var(--pearl-white);
margin-bottom: 20px;
font-weight: 700;
}

.cta-content p {
font-size: 20px;
color: var(--pearl-white);
margin-bottom: 40px;
font-style: italic;
}

.cta-button-secondary {
display: inline-block;
background: transparent;
color: var(--pearl-white);
padding: 16px 45px;
text-decoration: none;
font-size: 18px;
font-weight: 600;
border: 2px solid var(--rose-gold);
border-radius: 30px;
transition: all 0.3s ease;
}

.cta-button-secondary:hover {
background: var(--rose-gold);
transform: translateY(-3px);
box-shadow: 0 8px 25px rgba(183, 110, 121, 0.5);
}

.main-footer {
background: linear-gradient(to bottom, var(--deep-plum), #1a0a1b);
color: var(--pearl-white);
padding: 80px 0 30px;
}

.footer-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 50px;
margin-bottom: 50px;
}

.footer-column h4 {
font-size: 20px;
margin-bottom: 25px;
color: var(--rose-gold);
font-weight: 700;
letter-spacing: 0.5px;
}

.footer-logo {
margin-bottom: 20px;
filter: brightness(1.2);
}

.footer-description {
font-size: 15px;
line-height: 1.7;
margin-bottom: 15px;
color: #d0d0d0;
}

.registration-number {
font-size: 13px;
color: #a0a0a0;
font-style: italic;
}

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

.footer-links li {
margin-bottom: 12px;
}

.footer-links a {
color: var(--pearl-white);
text-decoration: none;
font-size: 15px;
transition: all 0.3s ease;
display: inline-block;
}

.footer-links a:hover {
color: var(--rose-gold);
transform: translateX(5px);
}

.footer-contact {
list-style: none;
}

.footer-contact li {
margin-bottom: 15px;
font-size: 15px;
line-height: 1.7;
color: #d0d0d0;
}

.footer-contact a {
color: var(--pearl-white);
text-decoration: none;
transition: color 0.3s ease;
}

.footer-contact a:hover {
color: var(--rose-gold);
}

.footer-bottom {
text-align: center;
padding-top: 30px;
border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
font-size: 14px;
color: #a0a0a0;
}

.cookie-banner {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: linear-gradient(to top, var(--deep-plum), var(--plum));
color: var(--pearl-white);
padding: 30px;
box-shadow: 0 -4px 20px var(--shadow-heavy);
z-index: 10000;
display: none;
}

.cookie-banner.active {
display: block;
animation: slideUp 0.4s ease;
}

@keyframes slideUp {
from {
transform: translateY(100%);
}
to {
transform: translateY(0);
}
}

.cookie-content {
max-width: 1200px;
margin: 0 auto;
}

.cookie-content h3 {
font-size: 24px;
margin-bottom: 15px;
color: var(--rose-gold);
}

.cookie-content p {
font-size: 15px;
line-height: 1.7;
margin-bottom: 20px;
}

.cookie-actions {
display: flex;
gap: 15px;
flex-wrap: wrap;
margin-bottom: 15px;
}

.cookie-actions button {
padding: 12px 30px;
border: none;
border-radius: 25px;
font-size: 15px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
}

.btn-accept {
background: var(--rose-gold);
color: var(--pearl-white);
}

.btn-accept:hover {
background: var(--gold-accent);
transform: translateY(-2px);
}

.btn-customize {
background: transparent;
color: var(--pearl-white);
border: 2px solid var(--pearl-white);
}

.btn-customize:hover {
background: var(--pearl-white);
color: var(--plum);
}

.btn-decline {
background: transparent;
color: var(--pearl-white);
border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-decline:hover {
border-color: var(--pearl-white);
}

.cookie-link {
color: var(--rose-gold);
text-decoration: underline;
font-size: 14px;
}

.cookie-link:hover {
color: var(--gold-accent);
}

.page-hero {
position: relative;
height: 50vh;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}

.page-hero .hero-content h1 {
font-size: 52px;
}

.page-hero .hero-content p {
font-size: 20px;
}

.story-section {
padding: 80px 0;
}

.story-text {
font-size: 18px;
line-height: 1.9;
margin-bottom: 25px;
color: var(--deep-plum);
text-align: justify;
}

.team-section {
padding: 100px 0;
background: var(--cream);
}

.team-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 50px;
margin-top: 50px;
}

.team-member {
background: white;
border-radius: 15px;
overflow: hidden;
box-shadow: 0 10px 40px var(--shadow);
transition: all 0.3s ease;
text-align: center;
}

.team-member:hover {
transform: translateY(-8px);
box-shadow: 0 15px 50px var(--shadow-heavy);
}

.team-member img {
width: 100%;
height: 400px;
object-fit: cover;
}

.team-member h3 {
font-size: 24px;
color: var(--plum);
margin: 25px 20px 10px;
font-weight: 700;
}

.member-position {
font-size: 16px;
color: var(--rose-gold);
margin: 0 20px 15px;
font-weight: 600;
font-style: italic;
}

.member-bio {
font-size: 15px;
line-height: 1.7;
color: var(--deep-plum);
margin: 0 25px 30px;
}

.values-section {
padding: 100px 0;
}

.values-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 40px;
margin-top: 50px;
}

.value-card {
background: white;
padding: 40px 30px;
border-radius: 15px;
box-shadow: 0 8px 30px var(--shadow);
transition: all 0.3s ease;
}

.value-card:hover {
transform: translateY(-5px);
box-shadow: 0 12px 40px var(--shadow-heavy);
}

.value-card h3 {
font-size: 24px;
color: var(--plum);
margin-bottom: 15px;
font-weight: 700;
}

.value-card p {
font-size: 16px;
line-height: 1.8;
color: var(--deep-plum);
}

.blog-listing {
padding: 80px 0;
}

.blog-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 50px;
margin-top: 50px;
}

.blog-card {
background: white;
border-radius: 15px;
overflow: hidden;
box-shadow: 0 10px 40px var(--shadow);
transition: all 0.4s ease;
}

.blog-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 50px var(--shadow-heavy);
}

.blog-card a {
text-decoration: none;
color: inherit;
display: block;
}

.blog-card img {
width: 100%;
height: 250px;
object-fit: cover;
}

.blog-card-content {
padding: 30px;
}

.blog-category {
display: inline-block;
background: var(--rose-gold);
color: var(--pearl-white);
padding: 6px 16px;
border-radius: 20px;
font-size: 13px;
font-weight: 600;
margin-bottom: 15px;
letter-spacing: 0.5px;
}

.blog-card h3 {
font-size: 22px;
color: var(--plum);
margin-bottom: 15px;
font-weight: 700;
line-height: 1.4;
}

.blog-excerpt {
font-size: 15px;
line-height: 1.7;
color: var(--deep-plum);
margin-bottom: 20px;
}

.blog-meta {
font-size: 13px;
color: var(--rose-gold);
display: flex;
gap: 15px;
flex-wrap: wrap;
}

.contact-section {
padding: 80px 0;
}

.contact-wrapper {
display: grid;
grid-template-columns: 1fr 1.2fr;
gap: 60px;
margin-top: 50px;
}

.contact-info-side {
}

.contact-intro {
font-size: 17px;
line-height: 1.8;
margin-bottom: 40px;
color: var(--deep-plum);
}

.contact-details {
display: flex;
flex-direction: column;
gap: 30px;
margin-bottom: 40px;
}

.contact-item {
display: flex;
gap: 20px;
align-items: flex-start;
}

.contact-icon {
font-size: 28px;
color: var(--rose-gold);
min-width: 40px;
}

.contact-text h4 {
font-size: 18px;
color: var(--plum);
margin-bottom: 8px;
font-weight: 700;
}

.contact-text p {
font-size: 15px;
line-height: 1.7;
color: var(--deep-plum);
}

.contact-text a {
color: var(--deep-plum);
text-decoration: none;
transition: color 0.3s ease;
}

.contact-text a:hover {
color: var(--rose-gold);
}

.map-container {
border-radius: 15px;
overflow: hidden;
box-shadow: 0 8px 30px var(--shadow);
}

.contact-form-side {
background: white;
padding: 50px;
border-radius: 15px;
box-shadow: 0 10px 40px var(--shadow);
}

.contact-form {
display: flex;
flex-direction: column;
gap: 25px;
}

.form-group {
display: flex;
flex-direction: column;
}

.form-group label {
font-size: 15px;
font-weight: 600;
color: var(--plum);
margin-bottom: 10px;
letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
padding: 14px 18px;
border: 2px solid #e0e0e0;
border-radius: 10px;
font-size: 15px;
font-family: inherit;
transition: all 0.3s ease;
background: var(--pearl-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--rose-gold);
background: white;
}

.form-group textarea {
resize: vertical;
min-height: 120px;
}

.submit-btn {
background: var(--rose-gold);
color: var(--pearl-white);
padding: 16px 40px;
border: none;
border-radius: 30px;
font-size: 17px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: 0 6px 20px rgba(183, 110, 121, 0.4);
}

.submit-btn:hover {
background: var(--gold-accent);
transform: translateY(-3px);
box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.modal-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(42, 20, 43, 0.85);
display: none;
justify-content: center;
align-items: center;
z-index: 10001;
}

.modal-overlay.active {
display: flex;
animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}

.modal-content {
background: white;
padding: 50px;
border-radius: 20px;
text-align: center;
max-width: 500px;
box-shadow: 0 20px 60px var(--shadow-heavy);
animation: slideIn 0.4s ease;
}

@keyframes slideIn {
from {
transform: translateY(-50px);
opacity: 0;
}
to {
transform: translateY(0);
opacity: 1;
}
}

.modal-icon {
font-size: 80px;
color: var(--rose-gold);
margin-bottom: 20px;
}

.modal-content h3 {
font-size: 32px;
color: var(--plum);
margin-bottom: 15px;
font-weight: 700;
}

.modal-content p {
font-size: 17px;
color: var(--deep-plum);
margin-bottom: 30px;
line-height: 1.7;
}

.modal-close-btn {
background: var(--rose-gold);
color: var(--pearl-white);
padding: 14px 40px;
border: none;
border-radius: 30px;
font-size: 16px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
}

.modal-close-btn:hover {
background: var(--gold-accent);
transform: translateY(-2px);
}

.blog-post {
background: white;
}

.post-hero {
height: 60vh;
overflow: hidden;
position: relative;
}

.post-hero img {
width: 100%;
height: 100%;
object-fit: cover;
}

.post-container {
max-width: 850px;
margin: 0 auto;
padding: 60px 30px 80px;
}

.post-header {
text-align: center;
margin-bottom: 50px;
}

.post-category {
display: inline-block;
background: var(--rose-gold);
color: var(--pearl-white);
padding: 8px 20px;
border-radius: 25px;
font-size: 14px;
font-weight: 600;
margin-bottom: 20px;
letter-spacing: 0.5px;
}

.post-header h1 {
font-size: 44px;
color: var(--plum);
margin-bottom: 25px;
font-weight: 700;
line-height: 1.3;
}

.post-meta {
display: flex;
justify-content: center;
gap: 25px;
flex-wrap: wrap;
font-size: 14px;
color: var(--rose-gold);
}

.post-content {
font-size: 18px;
line-height: 1.9;
color: var(--deep-plum);
}

.post-content .lead {
font-size: 21px;
font-weight: 500;
color: var(--plum);
margin-bottom: 35px;
line-height: 1.8;
}

.post-content p {
margin-bottom: 25px;
text-align: justify;
}

.post-content h2 {
font-size: 32px;
color: var(--plum);
margin-top: 50px;
margin-bottom: 25px;
font-weight: 700;
}

.post-content h3 {
font-size: 26px;
color: var(--light-plum);
margin-top: 40px;
margin-bottom: 20px;
font-weight: 700;
}

.post-footer {
margin-top: 60px;
padding-top: 40px;
border-top: 2px solid var(--cream);
text-align: center;
}

.back-to-blog {
display: inline-block;
color: var(--rose-gold);
text-decoration: none;
font-size: 17px;
font-weight: 600;
transition: all 0.3s ease;
}

.back-to-blog:hover {
color: var(--plum);
transform: translateX(-5px);
}

@media (max-width: 768px) {
.nav-menu {
position: fixed;
left: -100%;
top: 90px;
flex-direction: column;
background: var(--deep-plum);
width: 100%;
text-align: center;
transition: 0.4s;
box-shadow: 0 10px 27px var(--shadow-heavy);
padding: 30px 0;
gap: 20px;
}

.nav-menu.active {
left: 0;
}

.nav-toggle {
display: flex;
}

.hero-title {
font-size: 38px;
}

.hero-subtitle {
font-size: 18px;
}

.section-header h2 {
font-size: 32px;
}

.features-grid,
.blog-grid,
.team-grid {
grid-template-columns: 1fr;
}

.contact-wrapper {
grid-template-columns: 1fr;
}

.contact-form-side {
padding: 30px;
}

.footer-grid {
grid-template-columns: 1fr;
gap: 40px;
}

.cookie-actions {
flex-direction: column;
}

.cookie-actions button {
width: 100%;
}

.post-header h1 {
font-size: 32px;
}

.post-content {
font-size: 17px;
}

.comparison-table {
font-size: 14px;
}

.comparison-table th,
.comparison-table td {
padding: 12px 10px;
}
}

@media (max-width: 480px) {
.hero-title {
font-size: 30px;
}

.hero-subtitle {
font-size: 16px;
}

.section-header h2 {
font-size: 26px;
}

.post-header h1 {
font-size: 26px;
}
}

h1, h2, h3, h4, h5, h6 {word-break: break-word;}
