:root {
--primary-color: #2c5282;
--secondary-color: #ed8936;
--accent-color: #48bb78;
--dark-bg: #1a202c;
--light-bg: #f7fafc;
--text-dark: #2d3748;
--text-light: #718096;
--border-color: #e2e8f0;
--white: #ffffff;
--error-color: #f56565;
--success-color: #48bb78;
--warning-color: #ed8936;
}

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

html {
scroll-behavior: smooth;
}

body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: var(--text-dark);
background-color: var(--white);
}

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

a {
text-decoration: none;
color: var(--primary-color);
transition: color 0.3s ease;
}

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

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

.header-container {
max-width: 1200px;
margin: 0 auto;
padding: 1rem 2rem;
display: flex;
justify-content: space-between;
align-items: center;
}

.logo-section {
display: flex;
align-items: center;
gap: 1rem;
}

.logo-img {
border-radius: 50%;
}

.logo-text {
font-size: 1.5rem;
font-weight: 700;
color: var(--primary-color);
}

.navbar-primary {
}

.nav-list {
display: flex;
list-style: none;
gap: 2rem;
}

.nav-link {
font-weight: 500;
padding: 0.5rem 1rem;
border-radius: 5px;
transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
background-color: var(--primary-color);
color: var(--white);
}

.hero-blockchain {
background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-bg) 100%);
color: var(--white);
padding: 6rem 2rem;
text-align: center;
position: relative;
overflow: hidden;
}

.hero-overlay {
position: relative;
z-index: 2;
max-width: 900px;
margin: 0 auto;
}

.hero-title {
font-size: 3rem;
margin-bottom: 1.5rem;
font-weight: 800;
}

.hero-subtitle {
font-size: 1.3rem;
margin-bottom: 2rem;
opacity: 0.9;
}

.cta-button {
display: inline-block;
background-color: var(--secondary-color);
color: var(--white);
padding: 1rem 2.5rem;
border-radius: 50px;
font-weight: 600;
font-size: 1.1rem;
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(237, 137, 54, 0.3);
}

.cta-button:hover {
background-color: #dd6b20;
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(237, 137, 54, 0.4);
}

.content-wrapper {
padding: 4rem 0;
}

.container-fluid {
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
}

.intro-section {
padding: 3rem 0;
}

.row-intro {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
align-items: center;
}

.section-heading {
font-size: 2.2rem;
color: var(--primary-color);
margin-bottom: 1.5rem;
}

.intro-text {
font-size: 1.1rem;
color: var(--text-light);
margin-bottom: 1rem;
}

.intro-img {
border-radius: 10px;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.inspiration-block {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
padding: 3rem 2rem;
margin: 3rem 0;
}

.inspiration-card {
max-width: 800px;
margin: 0 auto;
text-align: center;
color: var(--white);
}

.inspiration-title {
font-size: 1.8rem;
margin-bottom: 1.5rem;
}

.inspiration-quote {
font-size: 1.2rem;
font-style: italic;
line-height: 1.8;
margin-bottom: 1rem;
}

.inspiration-author {
font-size: 1rem;
opacity: 0.9;
}

.services-blockchain {
padding: 4rem 0;
background-color: var(--light-bg);
}

.section-heading-center {
font-size: 2.5rem;
text-align: center;
color: var(--primary-color);
margin-bottom: 3rem;
}

.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
}

.service-card {
background-color: var(--white);
padding: 2rem;
border-radius: 10px;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
transition: transform 0.3s ease, box-shadow 0.3s ease;
text-align: center;
}

.service-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.service-icon {
font-size: 3rem;
margin-bottom: 1rem;
}

.service-title {
font-size: 1.4rem;
color: var(--primary-color);
margin-bottom: 1rem;
}

.service-description {
color: var(--text-light);
}

.future-quote-block {
background-color: var(--dark-bg);
color: var(--white);
padding: 3rem 2rem;
margin: 3rem 0;
}

.future-quote-wrapper {
max-width: 800px;
margin: 0 auto;
text-align: center;
}

.future-quote-title {
font-size: 1.8rem;
margin-bottom: 1.5rem;
}

.future-quote-text {
font-size: 1.3rem;
font-style: italic;
line-height: 1.8;
margin-bottom: 1rem;
border-left: 4px solid var(--secondary-color);
padding-left: 1.5rem;
}

.future-quote-date {
font-size: 1rem;
opacity: 0.8;
}

.latest-articles {
padding: 4rem 0;
}

.articles-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}

.article-preview {
background-color: var(--white);
border-radius: 10px;
overflow: hidden;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
transition: transform 0.3s ease;
}

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

.article-image {
width: 100%;
height: 250px;
object-fit: cover;
}

.article-content {
padding: 1.5rem;
}

.article-title {
font-size: 1.3rem;
color: var(--primary-color);
margin-bottom: 1rem;
}

.article-excerpt {
color: var(--text-light);
margin-bottom: 1rem;
}

.read-more {
color: var(--secondary-color);
font-weight: 600;
}

.why-swissimpuls {
padding: 4rem 0;
background-color: var(--light-bg);
}

.benefits-wrapper {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
}

.benefit-item {
background-color: var(--white);
padding: 2rem;
border-radius: 10px;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.benefit-number {
display: block;
font-size: 2.5rem;
font-weight: 700;
color: var(--secondary-color);
margin-bottom: 1rem;
}

.benefit-heading {
font-size: 1.3rem;
color: var(--primary-color);
margin-bottom: 0.5rem;
}

.benefit-text {
color: var(--text-light);
}

.cta-section {
padding: 4rem 0;
}

.cta-box {
background: linear-gradient(135deg, var(--primary-color) 0%, #1e3a5f 100%);
color: var(--white);
padding: 3rem;
border-radius: 15px;
text-align: center;
}

.cta-heading {
font-size: 2rem;
margin-bottom: 1rem;
}

.cta-text {
font-size: 1.1rem;
margin-bottom: 2rem;
opacity: 0.9;
}

.cta-buttons {
display: flex;
gap: 1rem;
justify-content: center;
flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
padding: 1rem 2rem;
border-radius: 50px;
font-weight: 600;
transition: all 0.3s ease;
}

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

.btn-primary:hover {
background-color: #dd6b20;
transform: translateY(-2px);
}

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

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

.footer-main {
background-color: var(--dark-bg);
color: var(--white);
padding: 3rem 2rem 1rem;
}

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

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

.footer-heading {
font-size: 1.2rem;
margin-bottom: 1rem;
color: var(--secondary-color);
}

.footer-text,
.footer-contact {
opacity: 0.8;
margin-bottom: 0.5rem;
}

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

.footer-links li {
margin-bottom: 0.5rem;
}

.footer-links a {
color: var(--white);
opacity: 0.8;
transition: opacity 0.3s ease;
}

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

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

.cookie-consent {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background-color: var(--white);
box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
padding: 2rem;
z-index: 10000;
display: none;
}

.cookie-consent.show {
display: block;
}

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

.cookie-title {
font-size: 1.2rem;
margin-bottom: 0.5rem;
}

.cookie-description {
color: var(--text-light);
margin-bottom: 0.5rem;
}

.cookie-link {
color: var(--primary-color);
text-decoration: underline;
}

.cookie-actions {
display: flex;
gap: 1rem;
flex-wrap: wrap;
}

.cookie-btn {
padding: 0.7rem 1.5rem;
border: none;
border-radius: 5px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
}

.cookie-btn.accept-all {
background-color: var(--success-color);
color: var(--white);
}

.cookie-btn.customize {
background-color: var(--primary-color);
color: var(--white);
}

.cookie-btn.decline {
background-color: var(--border-color);
color: var(--text-dark);
}

.cookie-btn:hover {
opacity: 0.9;
transform: translateY(-2px);
}

.page-hero {
background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-bg) 100%);
color: var(--white);
padding: 4rem 2rem;
text-align: center;
}

.page-title {
font-size: 2.5rem;
margin-bottom: 1rem;
}

.page-subtitle {
font-size: 1.2rem;
opacity: 0.9;
}

.blog-content {
display: grid;
grid-template-columns: 2fr 1fr;
gap: 3rem;
padding: 3rem 0;
}

.blog-grid-posts {
display: flex;
flex-direction: column;
gap: 2rem;
}

.blog-post-card {
background-color: var(--white);
border-radius: 10px;
overflow: hidden;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
display: grid;
grid-template-columns: 400px 1fr;
}

.post-image-wrapper {
position: relative;
}

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

.post-category {
position: absolute;
top: 1rem;
left: 1rem;
background-color: var(--secondary-color);
color: var(--white);
padding: 0.4rem 1rem;
border-radius: 20px;
font-size: 0.9rem;
font-weight: 600;
}

.post-content-area {
padding: 2rem;
}

.post-title-main {
font-size: 1.5rem;
margin-bottom: 1rem;
}

.post-title-main a {
color: var(--primary-color);
}

.post-meta {
display: flex;
gap: 1.5rem;
margin-bottom: 1rem;
font-size: 0.9rem;
color: var(--text-light);
}

.post-excerpt {
color: var(--text-light);
margin-bottom: 1rem;
}

.btn-read-more {
color: var(--secondary-color);
font-weight: 600;
}

.blog-sidebar {
}

.sidebar-widget {
background-color: var(--light-bg);
padding: 1.5rem;
border-radius: 10px;
margin-bottom: 2rem;
}

.widget-title {
font-size: 1.2rem;
color: var(--primary-color);
margin-bottom: 1rem;
}

.widget-quote {
font-style: italic;
color: var(--text-light);
}

.widget-future-quote {
font-style: italic;
color: var(--text-light);
border-left: 3px solid var(--secondary-color);
padding-left: 1rem;
}

.category-list {
list-style: none;
}

.category-list li {
margin-bottom: 0.5rem;
}

.category-list a {
color: var(--text-dark);
transition: color 0.3s ease;
}

.category-list a:hover {
color: var(--secondary-color);
}

.newsletter-form {
display: flex;
flex-direction: column;
gap: 0.5rem;
}

.newsletter-input {
padding: 0.7rem;
border: 1px solid var(--border-color);
border-radius: 5px;
}

.newsletter-btn {
padding: 0.7rem;
background-color: var(--primary-color);
color: var(--white);
border: none;
border-radius: 5px;
font-weight: 600;
cursor: pointer;
transition: background-color 0.3s ease;
}

.newsletter-btn:hover {
background-color: #1e3a5f;
}

.about-intro {
padding: 3rem 0;
}

.about-intro-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
align-items: center;
}

.about-paragraph {
font-size: 1.05rem;
color: var(--text-light);
margin-bottom: 1rem;
line-height: 1.8;
}

.about-intro-image img {
border-radius: 10px;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.values-section {
padding: 4rem 0;
background-color: var(--light-bg);
}

.values-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
}

.value-card {
background-color: var(--white);
padding: 2rem;
border-radius: 10px;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
text-align: center;
}

.value-icon {
font-size: 3rem;
margin-bottom: 1rem;
}

.value-title {
font-size: 1.3rem;
color: var(--primary-color);
margin-bottom: 1rem;
}

.value-description {
color: var(--text-light);
}

.team-section {
padding: 4rem 0;
}

.team-intro-text {
text-align: center;
max-width: 800px;
margin: 0 auto 3rem;
font-size: 1.1rem;
color: var(--text-light);
}

.team-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
}

.team-member-card {
background-color: var(--white);
border-radius: 10px;
overflow: hidden;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
text-align: center;
transition: transform 0.3s ease;
}

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

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

.team-name {
font-size: 1.3rem;
color: var(--primary-color);
margin: 1rem 0 0.5rem;
padding: 0 1rem;
}

.team-position {
color: var(--secondary-color);
font-weight: 600;
margin-bottom: 1rem;
padding: 0 1rem;
}

.team-bio {
color: var(--text-light);
padding: 0 1rem 1.5rem;
}

.company-info {
padding: 4rem 0;
}

.company-info-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
}

.info-box {
background-color: var(--light-bg);
padding: 2rem;
border-radius: 10px;
text-align: center;
}

.info-title {
font-size: 1.3rem;
color: var(--primary-color);
margin-bottom: 1rem;
}

.info-text {
color: var(--text-light);
}

.contact-main {
padding: 3rem 0;
}

.contact-layout {
display: grid;
grid-template-columns: 1fr 1.5fr;
gap: 3rem;
}

.contact-info-heading,
.contact-form-heading {
font-size: 1.8rem;
color: var(--primary-color);
margin-bottom: 1.5rem;
}

.contact-intro-text {
color: var(--text-light);
margin-bottom: 2rem;
}

.contact-details {
display: flex;
flex-direction: column;
gap: 1.5rem;
}

.contact-detail-item {
display: flex;
gap: 1rem;
}

.contact-icon {
font-size: 1.5rem;
color: var(--secondary-color);
}

.contact-detail-title {
font-size: 1rem;
color: var(--primary-color);
margin-bottom: 0.3rem;
}

.contact-detail-text {
color: var(--text-light);
}

.contact-detail-text a {
color: var(--text-light);
}

.contact-detail-text a:hover {
color: var(--secondary-color);
}

.inspiration-contact {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: var(--white);
padding: 2rem;
border-radius: 10px;
margin-top: 2rem;
}

.contact-form {
background-color: var(--light-bg);
padding: 2rem;
border-radius: 10px;
}

.form-group {
margin-bottom: 1.5rem;
}

.form-label {
display: block;
margin-bottom: 0.5rem;
color: var(--text-dark);
font-weight: 600;
}

.form-input,
.form-select,
.form-textarea {
width: 100%;
padding: 0.8rem;
border: 1px solid var(--border-color);
border-radius: 5px;
font-family: inherit;
transition: border-color 0.3s ease;
}

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

.checkbox-label {
display: flex;
align-items: flex-start;
gap: 0.5rem;
}

.form-checkbox {
margin-top: 0.3rem;
}

.btn-submit {
width: 100%;
padding: 1rem;
background-color: var(--primary-color);
color: var(--white);
border: none;
border-radius: 5px;
font-size: 1.1rem;
font-weight: 600;
cursor: pointer;
transition: background-color 0.3s ease;
}

.btn-submit:hover {
background-color: #1e3a5f;
}

.map-section {
padding: 4rem 0;
}

.map-wrapper {
border-radius: 10px;
overflow: hidden;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.success-modal {
display: none;
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(0,0,0,0.7);
z-index: 10000;
justify-content: center;
align-items: center;
}

.success-modal.show {
display: flex;
}

.modal-content-success {
background-color: var(--white);
padding: 3rem;
border-radius: 15px;
text-align: center;
max-width: 500px;
}

.modal-icon-success {
font-size: 4rem;
color: var(--success-color);
margin-bottom: 1rem;
}

.modal-title-success {
font-size: 1.8rem;
color: var(--primary-color);
margin-bottom: 1rem;
}

.modal-text-success {
color: var(--text-light);
margin-bottom: 2rem;
}

.modal-btn-close {
padding: 0.8rem 2rem;
background-color: var(--primary-color);
color: var(--white);
border: none;
border-radius: 5px;
font-weight: 600;
cursor: pointer;
}

.post-article {
background-color: var(--white);
}

.post-header {
background-color: var(--light-bg);
padding: 2rem 0;
}

.container-post {
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
}

.post-breadcrumb {
font-size: 0.9rem;
color: var(--text-light);
margin-bottom: 1rem;
}

.post-breadcrumb a {
color: var(--primary-color);
}

.post-title-large {
font-size: 2.5rem;
color: var(--primary-color);
margin-bottom: 1rem;
line-height: 1.3;
}

.post-meta-info {
display: flex;
gap: 2rem;
font-size: 0.9rem;
color: var(--text-light);
flex-wrap: wrap;
}

.post-category-tag {
background-color: var(--secondary-color);
color: var(--white);
padding: 0.3rem 1rem;
border-radius: 20px;
font-weight: 600;
}

.post-featured-image {
max-height: 600px;
overflow: hidden;
}

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

.post-content {
padding: 3rem 0;
}

.post-content .container-post {
display: grid;
grid-template-columns: 2.5fr 1fr;
gap: 3rem;
}

.post-body {
}

.post-intro-paragraph {
font-size: 1.2rem;
color: var(--text-light);
margin-bottom: 2rem;
line-height: 1.8;
}

.post-subheading {
font-size: 1.8rem;
color: var(--primary-color);
margin: 2rem 0 1rem;
}

.post-paragraph {
font-size: 1.05rem;
color: var(--text-dark);
margin-bottom: 1.5rem;
line-height: 1.8;
}

.post-cta {
background: linear-gradient(135deg, var(--primary-color) 0%, #1e3a5f 100%);
color: var(--white);
padding: 2rem;
border-radius: 10px;
text-align: center;
margin-top: 3rem;
}

.post-cta-text {
margin-bottom: 1.5rem;
font-size: 1.1rem;
}

.post-sidebar-content {
}

.related-posts {
}

.related-list {
list-style: none;
}

.related-list li {
margin-bottom: 0.8rem;
}

.related-list a {
color: var(--text-dark);
}

.related-list a:hover {
color: var(--secondary-color);
}

.cta-widget {
background: linear-gradient(135deg, var(--primary-color) 0%, #1e3a5f 100%);
color: var(--white);
text-align: center;
}

.widget-text {
margin-bottom: 1rem;
opacity: 0.9;
}

.widget-btn {
display: inline-block;
background-color: var(--secondary-color);
color: var(--white);
padding: 0.7rem 1.5rem;
border-radius: 5px;
font-weight: 600;
}

.widget-btn:hover {
background-color: #dd6b20;
}

@media (max-width: 768px) {
.header-container {
flex-direction: column;
gap: 1rem;
}

.nav-list {
flex-direction: column;
gap: 0.5rem;
}

.hero-title {
font-size: 2rem;
}

.hero-subtitle {
font-size: 1.1rem;
}

.row-intro,
.about-intro-grid {
grid-template-columns: 1fr;
}

.services-grid,
.values-grid,
.benefits-wrapper {
grid-template-columns: 1fr;
}

.blog-post-card {
grid-template-columns: 1fr;
}

.post-image-wrapper {
height: 250px;
}

.blog-content,
.contact-layout {
grid-template-columns: 1fr;
}

.post-content .container-post {
grid-template-columns: 1fr;
}

.post-title-large {
font-size: 1.8rem;
}

.cta-buttons {
flex-direction: column;
}

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

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

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

.section-heading-center,
.section-heading {
font-size: 1.8rem;
}
}