:root {
 --primary-color: #0d4f8b; /* Deep Blue */
 --secondary-color: #0891b2; /* Tech Cyan */
 --accent-color: #4a5568; /* Steel Gray */
 --light-color: #f8f9fa;
 --dark-color: #212529;
 --text-color: #333;
 --light-text-color: #f8f9fa;

 --border-radius: 8px;
 --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
 --transition-speed: 0.3s ease;
}

/* Base styles */
*, *::before, *::after {
 box-sizing: border-box;
 margin: 0;
 padding: 0;
}

html {
 scroll-behavior: smooth;
}

body {
 font-family: 'Roboto', 'Arial', sans-serif; /* Fallback to Arial, sans-serif */
 line-height: 1.6;
 color: var(--text-color);
 background-color: #fff;
 -webkit-font-smoothing: antialiased;
 -moz-osx-font-smoothing: grayscale;
 min-height: 100vh;
 display: flex;
 flex-direction: column;
}

main {
 flex: 1;
}

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

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

ul {
 list-style: none;
}

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

/* Utility classes */
.container {
 max-width: 1200px;
 margin: 0 auto;
 padding: 0 1rem;
}

.section-padding {
 padding: 6rem 0;
}

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

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

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

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

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

.rounded-corners {
 border-radius: var(--border-radius);
}

.shadow-lg {
 box-shadow: var(--box-shadow);
}

.mt-3 {
 margin-top: 1.5rem;
}

.mt-5 {
 margin-top: 3rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
 margin-bottom: 1rem;
 line-height: 1.2;
 color: var(--dark-color);
}

.text-white h1, .text-white h2, .text-white h3, .text-white h4, .text-white h5, .text-white h6 {
 color: var(--light-text-color);
}

h1 {
 font-size: 3rem;
 font-weight: 700;
}

h2 {
 font-size: 2.5rem;
 font-weight: 600;
}

h3 {
 font-size: 1.75rem;
 font-weight: 500;
}

p {
 margin-bottom: 1rem;
}

.hero-title {
 font-size: 3.8rem;
 font-weight: 700;
 margin-bottom: 1.5rem;
 color: var(--light-text-color);
}

.hero-subtitle {
 font-size: 1.5rem;
 max-width: 800px;
 margin: 0 auto 2.5rem;
 color: rgba(255, 255, 255, 0.9);
}

.section-title {
 font-size: 2.8rem;
 margin-bottom: 1.5rem;
}

.section-description {
 font-size: 1.25rem;
 max-width: 800px;
 margin: 0 auto 3rem;
 color: var(--accent-color);
}

.bg-dark .section-description {
 color: rgba(255, 255, 255, 0.8);
}

/* Buttons */
.btn {
 display: inline-block;
 padding: 1rem 2rem;
 border-radius: var(--border-radius);
 font-weight: 600;
 text-align: center;
 transition: all var(--transition-speed);
 border: none;
 cursor: pointer;
 font-size: 1rem;
}

.btn-primary {
 background-color: var(--primary-color);
 color: var(--light-text-color);
}

.btn-primary:hover {
 background-color: #0c4375; /* A slightly darker shade of primary */
 color: var(--light-text-color);
 transform: translateY(-2px);
 box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
 background-color: var(--secondary-color);
 color: var(--light-text-color);
}

.btn-secondary:hover {
 background-color: #077dab; /* A slightly darker shade of secondary */
 color: var(--light-text-color);
 transform: translateY(-2px);
 box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.btn-light-outline {
 background-color: transparent;
 color: var(--light-text-color);
 border: 2px solid var(--light-text-color);
}

.btn-light-outline:hover {
 background-color: rgba(255, 255, 255, 0.15);
 color: var(--light-text-color);
 transform: translateY(-2px);
}

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

.btn-dark-outline:hover {
 background-color: rgba(0, 0, 0, 0.05);
 color: var(--dark-color);
 transform: translateY(-2px);
}

.btn-text {
 color: var(--primary-color);
 font-weight: 600;
 display: inline-flex;
 align-items: center;
 gap: 0.5rem;
}

.btn-text::after {
 content: '→';
 font-size: 1.2em;
 transition: transform var(--transition-speed);
}

.btn-text:hover {
 color: var(--secondary-color);
}

.btn-text:hover::after {
 transform: translateX(5px);
}

/* Header */
.header {
 background-color: var(--dark-color);
 padding: 1rem 0;
 position: sticky;
 top: 0;
 z-index: 1000;
 box-shadow: var(--box-shadow);
}

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

.logo {
 color: var(--light-text-color);
 font-size: 1.8rem;
 font-weight: 700;
 letter-spacing: -0.5px;
}

.nav-links {
 display: flex;
 gap: 2rem;
}

.nav-links a {
 color: var(--light-text-color);
 font-weight: 500;
 padding: 0.5rem 0;
 position: relative;
}

.nav-links a::after {
 content: '';
 position: absolute;
 left: 0;
 bottom: 0;
 width: 0;
 height: 2px;
 background-color: var(--secondary-color);
 transition: width var(--transition-speed);
}

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

.nav-toggle {
 display: none;
 flex-direction: column;
 justify-content: space-between;
 width: 30px;
 height: 20px;
 background: transparent;
 border: none;
 cursor: pointer;
 padding: 0;
}

.nav-toggle span {
 display: block;
 width: 100%;
 height: 2px;
 background-color: var(--light-text-color);
 transition: all var(--transition-speed);
}

.nav-toggle.active span:nth-child(1) {
 transform: translateY(9px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
 opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
 transform: translateY(-9px) rotate(-45deg);
}

/* Hero Section */
.hero-section {
 background-size: cover;
 background-position: center;
 color: var(--light-text-color);
 padding: 8rem 0;
 position: relative;
 display: flex;
 align-items: center;
 min-height: 70vh; /* Ensure hero is tall enough */
}

.hero-section::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 background: rgba(0, 0, 0, 0.6); /* Dark overlay */
}

.hero-content {
 position: relative;
 z-index: 1;
}

.hero-buttons {
 display: flex;
 justify-content: center;
 gap: 1.5rem;
 margin-top: 2rem;
}

/* Features/Services Section */
.feature-card, .service-card, .blog-card, .testimonial-card, .team-card, .resource-card, .gallery-item {
 background-color: #fff;
 padding: 2rem;
 border-radius: var(--border-radius);
 box-shadow: var(--box-shadow);
 text-align: center;
 transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.feature-card:hover, .service-card:hover, .blog-card:hover, .testimonial-card:hover {
 transform: translateY(-8px);
 box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.feature-icon, .service-icon {
 width: 80px;
 height: 80px;
 object-fit: cover;
 border-radius: 50%;
 margin: 0 auto 1.5rem;
 border: 3px solid var(--primary-color);
 padding: 5px;
}

.feature-card h3, .service-card h3 {
 color: var(--primary-color);
 margin-bottom: 1rem;
}

.feature-card p, .service-card p {
 color: var(--accent-color);
 font-size: 0.95rem;
 margin-bottom: 1.5rem;
}

/* About Preview Section */
.grid-2-col-about {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 3rem;
}

.about-image {
 display: flex;
 align-items: center;
 justify-content: center;
}

.about-image img {
 max-height: 450px;
 object-fit: cover;
 width: 100%;
}

/* Advantages Section */
.advantage-card {
 background-color: rgba(255, 255, 255, 0.1);
 color: var(--light-text-color);
 padding: 2rem;
 border-radius: var(--border-radius);
 text-align: center;
 border: 1px solid rgba(255, 255, 255, 0.2);
 transition: background-color var(--transition-speed);
}

.advantage-card h3 {
 color: var(--light-text-color);
 margin-bottom: 1rem;
}

.advantage-card p {
 color: rgba(255, 255, 255, 0.8);
 font-size: 0.95rem;
}

.advantage-card:hover {
 background-color: var(--secondary-color);
 border-color: var(--secondary-color);
}

/* Testimonials Preview */
.testimonial-card {
 background-color: #fff;
 padding: 2rem;
 border-radius: var(--border-radius);
 box-shadow: var(--box-shadow);
 text-align: center;
 color: var(--text-color);
 position: relative;
 display: flex;
 flex-direction: column;
 justify-content: space-between;
}

.testimonial-card .client-logo {
 width: 60px;
 height: 60px;
 object-fit: contain;
 margin: 0 auto 1rem;
 border-radius: 0;
 padding: 0;
 border: none;
}

.testimonial-card blockquote {
 font-style: italic;
 margin-bottom: 1.5rem;
 color: var(--accent-color);
 font-size: 1.1rem;
}

.testimonial-card .author {
 font-weight: 600;
 color: var(--primary-color);
 margin-top: auto; /* Push author to the bottom */
}

/* Call to Action Section */
.cta-section {
 padding: 5rem 0;
 background-attachment: fixed; /* Parallax effect */
 background-size: cover;
 background-position: center;
}

.cta-text {
 font-size: 1.3rem;
 max-width: 700px;
 margin: 0 auto 2.5rem;
 color: rgba(255, 255, 255, 0.9);
}

/* Footer */
.footer {
 background-color: var(--dark-color);
 color: var(--light-text-color);
 padding: 4rem 0 2rem;
 font-size: 0.9rem;
}

.grid-footer {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
 gap: 2rem;
 padding-bottom: 2rem;
 border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
 color: var(--light-text-color);
 font-size: 1.6rem;
 font-weight: 700;
 margin-bottom: 1rem;
 display: block;
}

.footer-col p, .footer-col a {
 color: rgba(255, 255, 255, 0.7);
 margin-bottom: 0.5rem;
}

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

.footer-col h3 {
 color: var(--light-text-color);
 margin-bottom: 1.5rem;
 font-size: 1.1rem;
}

.footer-col ul {
 padding: 0;
}

.footer-col ul li {
 margin-bottom: 0.7rem;
}

.social-links {
 margin-top: 1.5rem;
 display: flex;
 gap: 1rem;
}

.social-links img {
 width: 24px;
 height: 24px;
 transition: transform var(--transition-speed);
}

.social-links a:hover img {
 transform: translateY(-3px);
}

.footer-bottom {
 text-align: center;
 padding-top: 2rem;
 color: rgba(255, 255, 255, 0.6);
}

/* General Grid Classes */
.grid-3-col {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

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

.grid-4-col {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.spacing-lg {
 gap: 3rem;
}

.spacing-md {
 gap: 2rem;
}

.spacing-sm {
 gap: 1rem;
}

/* Form Styles */
.contact-form {
 background-color: #fff;
 padding: 3rem;
 border-radius: var(--border-radius);
 box-shadow: var(--box-shadow);
 max-width: 700px;
 margin: 0 auto;
}

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

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

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
 width: 100%;
 padding: 0.8rem 1rem;
 border: 1px solid #ddd;
 border-radius: var(--border-radius);
 font-size: 1rem;
 transition: border-color var(--transition-speed);
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group textarea:focus {
 outline: none;
 border-color: var(--primary-color);
 box-shadow: 0 0 0 3px rgba(var(--primary-color-rgb), 0.2);
}

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

.form-group .error-message {
 color: #dc3545;
 font-size: 0.875rem;
 margin-top: 0.5rem;
 display: none;
}

.contact-info-block {
 background-color: var(--light-color);
 padding: 2rem;
 border-radius: var(--border-radius);
 box-shadow: var(--box-shadow);
 text-align: center;
}

.contact-info-block h3 {
 color: var(--primary-color);
 margin-bottom: 1rem;
}

.contact-info-block p {
 margin-bottom: 0.5rem;
}

.contact-info-block a {
 color: var(--accent-color);
}

.contact-info-block a:hover {
 color: var(--primary-color);
}

/* Platforma page styles */
.platform-feature-card {
 background-color: #fff;
 padding: 2rem;
 border-radius: var(--border-radius);
 box-shadow: var(--box-shadow);
 display: flex;
 flex-direction: column;
 align-items: center;
 text-align: center;
 transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.platform-feature-card:hover {
 transform: translateY(-8px);
 box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.platform-feature-card .icon-placeholder {
 width: 60px;
 height: 60px;
 background-color: var(--secondary-color);
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 margin-bottom: 1.5rem;
 color: var(--light-text-color);
 font-size: 1.8rem;
 font-weight: bold;
}

.platform-feature-card h3 {
 color: var(--primary-color);
 margin-bottom: 1rem;
}

.platform-feature-card p {
 color: var(--accent-color);
 font-size: 0.95rem;
}

.integration-item {
 display: flex;
 align-items: center;
 gap: 1.5rem;
 background-color: #fff;
 padding: 1.5rem;
 border-radius: var(--border-radius);
 box-shadow: var(--box-shadow);
}

.integration-item img {
 width: 60px;
 height: 60px;
 object-fit: contain;
 border-radius: 0;
}

.integration-item h4 {
 margin: 0;
 color: var(--dark-color);
}

.integration-item p {
 margin: 0;
 font-size: 0.9rem;
 color: var(--accent-color);
}

/* Blog page styles */
.blog-card {
 text-align: left;
 display: flex;
 flex-direction: column;
}

.blog-card img {
 width: 100%;
 height: 200px;
 object-fit: cover;
 border-top-left-radius: var(--border-radius);
 border-top-right-radius: var(--border-radius);
 margin-bottom: 1rem;
}

.blog-card .meta {
 font-size: 0.85rem;
 color: var(--accent-color);
 margin-bottom: 0.5rem;
}

.blog-card h3 {
 margin-bottom: 1rem;
 color: var(--primary-color);
}

.blog-card p {
 font-size: 0.95rem;
 color: var(--accent-color);
 flex-grow: 1;
}

.blog-card .btn-text {
 margin-top: 1rem;
 align-self: flex-start;
}

/* Blog Post page styles */
.blog-post-content {
 max-width: 800px;
 margin: 0 auto;
 padding: 2rem 0;
}

.blog-post-header {
 margin-bottom: 3rem;
 text-align: center;
}

.blog-post-header img {
 max-height: 400px;
 width: 100%;
 object-fit: cover;
 border-radius: var(--border-radius);
 margin-bottom: 2rem;
}

.blog-post-header h1 {
 font-size: 2.5rem;
 margin-bottom: 1rem;
}

.blog-post-meta {
 font-size: 0.9rem;
 color: var(--accent-color);
 display: flex;
 justify-content: center;
 align-items: center;
 gap: 1rem;
 margin-bottom: 1.5rem;
}

.blog-post-meta img {
 width: 40px;
 height: 40px;
 border-radius: 50%;
 object-fit: cover;
}

.blog-post-body h2 {
 font-size: 2rem;
 margin-top: 2rem;
 margin-bottom: 1rem;
 color: var(--primary-color);
}

.blog-post-body h3 {
 font-size: 1.5rem;
 margin-top: 1.5rem;
 margin-bottom: 0.8rem;
 color: var(--secondary-color);
}

.blog-post-body p {
 margin-bottom: 1.5rem;
}

.blog-post-body ul, .blog-post-body ol {
 margin-left: 1.5rem;
 margin-bottom: 1.5rem;
}

.blog-post-body li {
 margin-bottom: 0.5rem;
}

.blog-post-body img {
 margin: 2rem auto;
 border-radius: var(--border-radius);
 box-shadow: var(--box-shadow);
}

.author-box {
 display: flex;
 align-items: center;
 gap: 1.5rem;
 background-color: var(--light-color);
 padding: 1.5rem;
 border-radius: var(--border-radius);
 margin-top: 3rem;
 box-shadow: var(--box-shadow);
}

.author-box img {
 width: 80px;
 height: 80px;
 border-radius: 50%;
 object-fit: cover;
 margin: 0;
}

.author-info h4 {
 margin-bottom: 0.5rem;
 color: var(--primary-color);
}

.author-info p {
 font-size: 0.9rem;
 color: var(--accent-color);
 margin-bottom: 0;
}

/* Testimonials page */
.testimonial-long-card {
 background-color: #fff;
 padding: 2.5rem;
 border-radius: var(--border-radius);
 box-shadow: var(--box-shadow);
 text-align: left;
 display: flex;
 flex-direction: column;
 justify-content: space-between;
 transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.testimonial-long-card:hover {
 transform: translateY(-8px);
 box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.testimonial-long-card .quote-icon {
 font-size: 3rem;
 color: var(--secondary-color);
 margin-bottom: 1.5rem;
}

.testimonial-long-card blockquote {
 font-style: italic;
 font-size: 1.15rem;
 color: var(--accent-color);
 margin-bottom: 1.5rem;
 flex-grow: 1;
}

.testimonial-long-card .author-details {
 display: flex;
 align-items: center;
 gap: 1rem;
 margin-top: auto;
}

.testimonial-long-card .author-details img {
 width: 50px;
 height: 50px;
 border-radius: 50%;
 object-fit: cover;
}

.testimonial-long-card .author-name {
 font-weight: 600;
 color: var(--primary-color);
 margin-bottom: 0.2rem;
}

.testimonial-long-card .author-title {
 font-size: 0.9rem;
 color: var(--accent-color);
}

.testimonial-long-card .client-logo {
 width: 80px; /* Adjust size for larger logo */
 height: auto;
 object-fit: contain;
 margin-top: 1.5rem;
 opacity: 0.7;
}

/* Gallery page styles */
.gallery-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
 gap: 1.5rem;
}

.gallery-item {
 padding: 0;
 background-color: transparent;
 box-shadow: none;
 border-radius: var(--border-radius);
 overflow: hidden;
 cursor: pointer;
 position: relative;
}

.gallery-item img {
 width: 100%;
 height: 250px;
 object-fit: cover;
 transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
 border-radius: var(--border-radius);
}

.gallery-item:hover img {
 transform: scale(1.05);
 opacity: 0.9;
}

.gallery-item-overlay {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background: rgba(var(--primary-color-rgb), 0.7);
 color: var(--light-text-color);
 display: flex;
 flex-direction: column;
 justify-content: center;
 align-items: center;
 opacity: 0;
 transition: opacity var(--transition-speed);
 text-align: center;
 padding: 1rem;
 border-radius: var(--border-radius);
}

.gallery-item:hover .gallery-item-overlay {
 opacity: 1;
}

.gallery-item-overlay p {
 margin: 0;
 font-weight: 600;
 font-size: 1.1rem;
}

/* Lightbox styles */
.lightbox {
 display: none; /* Hidden by default */
 position: fixed; /* Stay in place */
 z-index: 2000; /* Sit on top */
 left: 0;
 top: 0;
 width: 100%; /* Full width */
 height: 100%; /* Full height */
 overflow: auto; /* Enable scroll if needed */
 background-color: rgba(0, 0, 0, 0.9); /* Black w/ opacity */
 justify-content: center;
 align-items: center;
}

.lightbox-content {
 position: relative;
 max-width: 90%;
 max-height: 90%;
 object-fit: contain;
 animation: zoomin 0.3s;
}

.lightbox-caption {
 color: #fff;
 text-align: center;
 padding: 10px 0;
 font-size: 1.2rem;
}

.lightbox-close {
 position: absolute;
 top: 15px;
 right: 35px;
 color: #f1f1f1;
 font-size: 40px;
 font-weight: bold;
 transition: 0.3s;
 cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus {
 color: #bbb;
 text-decoration: none;
}

@keyframes zoomin {
 from {transform: scale(0.1)}
 to {transform: scale(1)}
}

/* FAQ page styles */
.faq-accordion .accordion-item {
 border: 1px solid #ddd;
 border-radius: var(--border-radius);
 margin-bottom: 1rem;
 overflow: hidden;
}

.faq-accordion .accordion-header {
 background-color: var(--light-color);
 padding: 1.2rem 1.5rem;
 cursor: pointer;
 display: flex;
 justify-content: space-between;
 align-items: center;
 font-weight: 600;
 color: var(--primary-color);
 transition: background-color var(--transition-speed);
}

.faq-accordion .accordion-header:hover {
 background-color: #e9ecef;
}

.faq-accordion .accordion-header::after {
 content: '+';
 font-size: 1.5rem;
 transition: transform var(--transition-speed);
}

.faq-accordion .accordion-header.active::after {
 content: '-';
 transform: rotate(180deg);
}

.faq-accordion .accordion-content {
 max-height: 0;
 overflow: hidden;
 transition: max-height 0.4s ease-out, padding 0.4s ease-out;
 background-color: #fff;
 padding: 0 1.5rem;
 color: var(--accent-color);
}

.faq-accordion .accordion-content.active {
 max-height: 500px; /* A large enough value to accommodate content */
 padding: 1.5rem;
}

/* Legal Pages (Privacy, Terms, Cookie, Disclaimer, Refund) */
.legal-section {
 padding: 4rem 0;
}

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

.legal-content h2 {
 font-size: 1.8rem;
 margin-top: 2.5rem;
 margin-bottom: 1rem;
 color: var(--primary-color);
}

.legal-content h3 {
 font-size: 1.4rem;
 margin-top: 1.8rem;
 margin-bottom: 0.8rem;
 color: var(--secondary-color);
}

.legal-content p {
 margin-bottom: 1rem;
 color: var(--accent-color);
}

.legal-content ul, .legal-content ol {
 margin-left: 1.5rem;
 margin-bottom: 1.5rem;
 color: var(--accent-color);
}

.legal-content ul li, .legal-content ol li {
 margin-bottom: 0.5rem;
}

.legal-content strong {
 color: var(--dark-color);
}

/* Thank You Page */
.thanks-container {
 padding: 8rem 0;
 text-align: center;
 background-color: var(--light-color);
 min-height: 60vh;
 display: flex;
 flex-direction: column;
 justify-content: center;
 align-items: center;
}

.thanks-container h1 {
 color: var(--primary-color);
 font-size: 3rem;
 margin-bottom: 1.5rem;
}

.thanks-container p {
 font-size: 1.25rem;
 color: var(--accent-color);
 margin-bottom: 2.5rem;
 max-width: 600px;
 margin-left: auto;
 margin-right: auto;
}

/* 404 Page */
.error-container {
 padding: 8rem 0;
 text-align: center;
 min-height: 60vh;
 display: flex;
 flex-direction: column;
 justify-content: center;
 align-items: center;
}

.error-container h1 {
 font-size: 6rem;
 color: var(--primary-color);
 margin-bottom: 1rem;
}

.error-container h2 {
 font-size: 2.5rem;
 color: var(--dark-color);
 margin-bottom: 1.5rem;
}

.error-container p {
 font-size: 1.2rem;
 color: var(--accent-color);
 margin-bottom: 2.5rem;
 max-width: 600px;
 margin-left: auto;
 margin-right: auto;
}

/* Animations */
.animate-in {
 opacity: 0;
 transform: translateY(20px);
 transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-in.fade-in {
 opacity: 1;
 transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }
.delay-7 { transition-delay: 0.7s; }
.delay-8 { transition-delay: 0.8s; }

/* Media Queries */
@media (max-width: 992px) {
 .grid-2-col-about {
 grid-template-columns: 1fr;
 }

 .about-image {
 order: -1; /* Image first on smaller screens */
 }

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

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

 h1 {
 font-size: 2.5rem;
 }

 h2 {
 font-size: 2rem;
 }

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

 .section-description {
 font-size: 1rem;
 }

 .grid-3-col, .grid-4-col {
 grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
 }
}

@media (max-width: 768px) {
 .navbar {
 flex-wrap: wrap;
 }

 .nav-links {
 flex-direction: column;
 width: 100%;
 background-color: var(--dark-color);
 position: absolute;
 top: 100%;
 left: 0;
 padding: 1rem 0;
 border-top: 1px solid rgba(255, 255, 255, 0.1);
 display: none; /* Hidden by default */
 text-align: center;
 max-height: 0;
 overflow: hidden;
 transition: max-height 0.4s ease-out;
 }

 .nav-links.active {
 display: flex;
 max-height: 300px; /* Adjust dynamically if needed */
 }

 .nav-links li {
 margin: 0.5rem 0;
 }

 .nav-toggle {
 display: flex;
 }

 .hero-section {
 padding: 6rem 0;
 min-height: 60vh;
 }

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

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

 .hero-buttons {
 flex-direction: column;
 gap: 1rem;
 }

 .btn {
 width: 100%;
 max-width: 300px;
 margin-left: auto;
 margin-right: auto;
 }

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

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

 .footer-col.brand-info .social-links {
 justify-content: center;
 }

 .blog-post-header h1 {
 font-size: 2rem;
 }
 .error-container h1 {
 font-size: 4rem;
 }
 .error-container h2 {
 font-size: 1.8rem;
 }
 .thanks-container h1 {
 font-size: 2.5rem;
 }
}

@media (max-width: 480px) {
 h1 {
 font-size: 2rem;
 }

 h2 {
 font-size: 1.8rem;
 }

 .section-title {
 font-size: 1.8rem;
 }

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

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

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

 .feature-card, .service-card, .blog-card, .testimonial-card, .advantage-card {
 padding: 1.5rem;
 }
 .contact-form {
 padding: 2rem 1.5rem;
 }
}
/* RGB values for JS usage */
:root {
 --primary-color-rgb: 13, 79, 139;
 --secondary-color-rgb: 8, 145, 178;
}

/* Active navigation link */
.nav-links li a.active {
 color: var(--secondary-color);
}
/* Style for services icons */
.service-icon.custom {
 font-size: 3rem; /* Adjust if using icon fonts */
 color: var(--primary-color);
 background-color: var(--light-color);
 border-radius: 50%;
 width: 90px;
 height: 90px;
 display: flex;
 align-items: center;
 justify-content: center;
 margin: 0 auto 1.5rem;
 border: 2px solid var(--secondary-color);
}
.service-icon.custom img {
 width: 60px;
 height: 60px;
 object-fit: contain;
 border: none;
 border-radius: 0;
 padding: 0;
}
/* Platforma page styles */
.platform-section-intro {
 text-align: center;
 max-width: 800px;
 margin: 0 auto 4rem;
}
.platform-section-intro p {
 font-size: 1.1rem;
 color: var(--accent-color);
}
.key-uses-item {
 background-color: var(--light-color);
 padding: 2rem;
 border-radius: var(--border-radius);
 box-shadow: var(--box-shadow);
 display: flex;
 align-items: center;
 gap: 1.5rem;
}
.key-uses-item .icon-wrapper {
 min-width: 60px;
 height: 60px;
 background-color: var(--primary-color);
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 color: var(--light-text-color);
 font-size: 1.8rem;
}
.key-uses-item h4 {
 margin: 0;
 color: var(--dark-color);
}
.key-uses-item p {
 margin: 0;
 color: var(--accent-color);
}
/* O nas page styles */
.team-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
 gap: 2rem;
}
.team-member-card {
 background-color: #fff;
 padding: 1.5rem;
 border-radius: var(--border-radius);
 box-shadow: var(--box-shadow);
 text-align: center;
 transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}
.team-member-card:hover {
 transform: translateY(-5px);
 box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}
.team-member-card img {
 width: 150px;
 height: 150px;
 border-radius: 50%;
 object-fit: cover;
 margin: 0 auto 1rem;
 border: 3px solid var(--primary-color);
}
.team-member-card h3 {
 color: var(--dark-color);
 margin-bottom: 0.5rem;
 font-size: 1.4rem;
}
.team-member-card p.position {
 color: var(--secondary-color);
 font-weight: 500;
 margin-bottom: 1rem;
}
.team-member-card p.description {
 font-size: 0.9rem;
 color: var(--accent-color);
}
.values-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
 gap: 2rem;
}
.value-card {
 background-color: var(--light-color);
 padding: 2rem;
 border-radius: var(--border-radius);
 box-shadow: var(--box-shadow);
 text-align: center;
}
.value-card .icon-wrapper {
 font-size: 2.5rem;
 color: var(--primary-color);
 margin-bottom: 1rem;
}
.value-card h4 {
 color: var(--dark-color);
 margin-bottom: 0.5rem;
}
.value-card p {
 font-size: 0.9rem;
 color: var(--accent-color);
}
/* Resursy page styles */
.resource-card {
 background-color: #fff;
 border-radius: var(--border-radius);
 box-shadow: var(--box-shadow);
 transition: transform var(--transition-speed), box-shadow var(--transition-speed);
 overflow: hidden;
 display: flex;
 flex-direction: column;
 text-align: left;
}
.resource-card:hover {
 transform: translateY(-5px);
 box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}
.resource-card img {
 width: 100%;
 height: 200px;
 object-fit: cover;
 border-top-left-radius: var(--border-radius);
 border-top-right-radius: var(--border-radius);
}
.resource-card-content {
 padding: 1.5rem;
 flex-grow: 1;
 display: flex;
 flex-direction: column;
}
.resource-card h3 {
 margin-bottom: 0.75rem;
 color: var(--primary-color);
 font-size: 1.3rem;
}
.resource-card p {
 font-size: 0.95rem;
 color: var(--accent-color);
 flex-grow: 1;
 margin-bottom: 1rem;
}
.resource-card .meta {
 font-size: 0.8rem;
 color: var(--accent-color);
 margin-top: auto; /* Pushes meta to the bottom */
}
.resource-type {
 display: inline-block;
 background-color: var(--secondary-color);
 color: var(--light-text-color);
 padding: 0.3rem 0.8rem;
 border-radius: 5px;
 font-size: 0.8rem;
 margin-bottom: 1rem;
}
.resource-card .btn-text {
 margin-top: 1rem;
 align-self: flex-start;
}
/* Service Cards */
.services-section .service-card {
 text-align: left;
 display: flex;
 flex-direction: column;
 height: 100%;
}

.services-section .service-card h3 {
 margin-top: 1rem;
 margin-bottom: 0.75rem;
 font-size: 1.5rem;
}

.services-section .service-card p {
 font-size: 1rem;
 line-height: 1.5;
 flex-grow: 1; /* Allow content to grow */
}

.services-section .service-card img {
 width: 100%;
 height: 200px;
 object-fit: cover;
 border-radius: var(--border-radius);
 margin-bottom: 1rem;
 border: none; /* Override default border for feature-icon */
 padding: 0;
}

.services-section .service-card .btn-text {
 align-self: flex-start;
 margin-top: 1.5rem; /* Space below content */
}

/* Process Section */
.process-step {
 display: flex;
 align-items: center;
 gap: 2rem;
 margin-bottom: 3rem;
}

.process-step:nth-child(even) {
 flex-direction: row-reverse;
}

.process-step:nth-child(even) .process-text {
 text-align: right;
}

.process-icon {
 min-width: 100px;
 min-height: 100px;
 width: 100px;
 height: 100px;
 background-color: var(--primary-color);
 color: white;
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 font-size: 2rem;
 font-weight: bold;
 flex-shrink: 0;
 box-shadow: var(--box-shadow);
}

.process-text h3 {
 color: var(--primary-color);
 margin-bottom: 0.5rem;
}

.process-text p {
 color: var(--accent-color);
}

@media (max-width: 768px) {
 .process-step {
 flex-direction: column !important; /* Override with !important to ensure stacking */
 text-align: center;
 }
 .process-step .process-text {
 text-align: center !important;
 }
 .process-icon {
 margin-bottom: 1.5rem;
 }
}