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

:root {
--primary: #2D3E50;
--secondary: #E67E22;
--accent: #3498DB;
--dark: #1A252F;
--light: #ECF0F1;
--white: #FFFFFF;
--gray: #7F8C8D;
--success: #27AE60;
}

body {
font-family: 'Sora', sans-serif;
line-height: 1.6;
color: var(--dark);
background: var(--white);
overflow-x: hidden;
}

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

header {
background: var(--white);
padding: 15px 0;
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
position: relative;
z-index: 1000;
}

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

.logo {
font-family: 'Space Grotesk', sans-serif;
font-size: 20px;
font-weight: 700;
color: var(--primary);
}

.main-nav {
display: flex;
gap: 30px;
}

.main-nav a {
font-size: 14px;
color: var(--dark);
text-decoration: none;
font-weight: 400;
transition: color 0.3s;
}

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

.menu-toggle {
display: none;
background: none;
border: none;
font-size: 22px;
color: var(--primary);
cursor: pointer;
}

.hero {
background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
color: var(--white);
padding: 80px 0;
text-align: center;
}

.hero-content h1 {
font-family: 'Space Grotesk', sans-serif;
font-size: 42px;
font-weight: 700;
margin-bottom: 20px;
line-height: 1.2;
}

.hero-content p {
font-size: 16px;
margin-bottom: 30px;
max-width: 700px;
margin-left: auto;
margin-right: auto;
opacity: 0.95;
}

.cta-btn {
display: inline-block;
background: var(--secondary);
color: var(--white);
padding: 14px 35px;
text-decoration: none;
border-radius: 5px;
font-weight: 600;
font-size: 15px;
transition: all 0.3s;
}

.cta-btn:hover {
background: #D35400;
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
}

.secondary-btn {
display: inline-block;
background: transparent;
color: var(--primary);
padding: 14px 35px;
text-decoration: none;
border-radius: 5px;
border: 2px solid var(--primary);
font-weight: 600;
font-size: 15px;
transition: all 0.3s;
}

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

section {
padding: 60px 0;
}

h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 32px;
font-weight: 700;
margin-bottom: 40px;
text-align: center;
color: var(--primary);
}

.services {
background: var(--light);
}

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

.service-card {
background: var(--white);
padding: 35px 25px;
border-radius: 8px;
text-align: center;
transition: all 0.3s;
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.service-card i {
font-size: 40px;
color: var(--secondary);
margin-bottom: 20px;
}

.service-card h3 {
font-size: 20px;
margin-bottom: 15px;
color: var(--primary);
}

.service-card p {
font-size: 14px;
color: var(--gray);
line-height: 1.7;
}

.about {
background: var(--white);
}

.about-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
align-items: center;
}

.about-text h2 {
text-align: left;
margin-bottom: 25px;
}

.about-text p {
font-size: 15px;
margin-bottom: 20px;
color: var(--gray);
line-height: 1.8;
}

.about-image img {
width: 100%;
height: auto;
border-radius: 8px;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.products {
background: var(--light);
}

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

.product-card {
background: var(--white);
padding: 35px 25px;
border-radius: 8px;
text-align: center;
transition: all 0.3s;
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.product-card.featured {
border: 2px solid var(--secondary);
transform: scale(1.05);
}

.product-card h3 {
font-size: 22px;
margin-bottom: 15px;
color: var(--primary);
}

.price {
font-size: 32px;
font-weight: 700;
color: var(--secondary);
margin-bottom: 25px;
}

.product-card ul {
list-style: none;
margin-bottom: 30px;
text-align: left;
}

.product-card ul li {
padding: 10px 0;
font-size: 14px;
color: var(--gray);
border-bottom: 1px solid var(--light);
}

.product-btn {
display: inline-block;
background: var(--primary);
color: var(--white);
padding: 12px 30px;
text-decoration: none;
border-radius: 5px;
font-weight: 600;
font-size: 14px;
transition: all 0.3s;
}

.product-btn:hover {
background: var(--dark);
}

.process {
background: var(--white);
}

.process-steps {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 30px;
}

.step {
text-align: center;
padding: 25px;
}

.step-number {
font-size: 48px;
font-weight: 700;
color: var(--secondary);
opacity: 0.3;
margin-bottom: 15px;
font-family: 'Space Grotesk', sans-serif;
}

.step h3 {
font-size: 20px;
margin-bottom: 15px;
color: var(--primary);
}

.step p {
font-size: 14px;
color: var(--gray);
line-height: 1.7;
}

.cta-section {
background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
color: var(--white);
text-align: center;
padding: 70px 0;
}

.cta-section h2 {
color: var(--white);
margin-bottom: 20px;
}

.cta-section p {
font-size: 16px;
margin-bottom: 30px;
opacity: 0.95;
}

footer {
background: var(--dark);
color: var(--light);
padding: 40px 0 20px;
}

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

.footer-col h4 {
font-size: 16px;
margin-bottom: 15px;
color: var(--white);
font-weight: 600;
}

.footer-col p {
font-size: 13px;
line-height: 1.8;
color: var(--light);
opacity: 0.8;
}

.footer-col a {
display: block;
color: var(--light);
text-decoration: none;
font-size: 13px;
margin-bottom: 8px;
opacity: 0.8;
transition: opacity 0.3s;
}

.footer-col a:hover {
opacity: 1;
}

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

.footer-bottom p {
font-size: 13px;
opacity: 0.7;
}

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--dark);
color: var(--white);
padding: 20px;
z-index: 9999;
display: none;
box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.privacy-popup.show {
display: block;
}

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

.privacy-content p {
font-size: 13px;
margin: 0;
flex: 1;
}

.privacy-content button {
background: var(--secondary);
color: var(--white);
border: none;
padding: 10px 25px;
border-radius: 5px;
cursor: pointer;
font-weight: 600;
font-size: 13px;
transition: background 0.3s;
}

.privacy-content button:hover {
background: #D35400;
}

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

.page-hero h1 {
font-family: 'Space Grotesk', sans-serif;
font-size: 38px;
font-weight: 700;
margin-bottom: 15px;
}

.page-hero p {
font-size: 16px;
opacity: 0.9;
}

.expertise-intro {
background: var(--white);
}

.expertise-content {
margin-bottom: 40px;
}

.expertise-content h2 {
text-align: left;
margin-bottom: 25px;
}

.expertise-content p {
font-size: 15px;
color: var(--gray);
line-height: 1.8;
margin-bottom: 20px;
}

.stats-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 30px;
}

.stat-card {
background: var(--light);
padding: 30px;
border-radius: 8px;
text-align: center;
}

.stat-number {
font-size: 42px;
font-weight: 700;
color: var(--secondary);
margin-bottom: 10px;
font-family: 'Space Grotesk', sans-serif;
}

.stat-label {
font-size: 14px;
color: var(--gray);
}

.methodology {
background: var(--light);
}

.method-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 30px;
}

.method-card {
background: var(--white);
padding: 30px 25px;
border-radius: 8px;
text-align: center;
}

.method-card i {
font-size: 36px;
color: var(--accent);
margin-bottom: 20px;
}

.method-card h3 {
font-size: 18px;
margin-bottom: 15px;
color: var(--primary);
}

.method-card p {
font-size: 14px;
color: var(--gray);
line-height: 1.7;
}

.industries {
background: var(--white);
}

.industries-list {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 30px;
}

.industry-item {
padding: 25px;
text-align: center;
}

.industry-item i {
font-size: 36px;
color: var(--secondary);
margin-bottom: 15px;
}

.industry-item h3 {
font-size: 18px;
margin-bottom: 12px;
color: var(--primary);
}

.industry-item p {
font-size: 14px;
color: var(--gray);
line-height: 1.7;
}

.blog-content {
background: var(--white);
}

.blog-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 30px;
}

.blog-card {
background: var(--light);
padding: 30px;
border-radius: 8px;
transition: all 0.3s;
}

.blog-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.blog-meta {
display: flex;
gap: 15px;
margin-bottom: 15px;
font-size: 12px;
}

.blog-date {
color: var(--gray);
}

.blog-category {
color: var(--secondary);
font-weight: 600;
}

.blog-card h2 {
font-size: 20px;
text-align: left;
margin-bottom: 15px;
color: var(--primary);
}

.blog-card p {
font-size: 14px;
color: var(--gray);
line-height: 1.7;
margin-bottom: 15px;
}

.read-more {
color: var(--accent);
text-decoration: none;
font-weight: 600;
font-size: 14px;
display: inline-flex;
align-items: center;
gap: 8px;
transition: gap 0.3s;
}

.read-more:hover {
gap: 12px;
}

.newsletter {
background: var(--light);
text-align: center;
}

.newsletter p {
font-size: 15px;
color: var(--gray);
margin-bottom: 25px;
}

.contact-hero {
background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
color: var(--white);
padding: 60px 0;
text-align: center;
}

.contact-hero h1 {
font-family: 'Space Grotesk', sans-serif;
font-size: 38px;
font-weight: 700;
margin-bottom: 15px;
}

.contact-hero p {
font-size: 16px;
opacity: 0.9;
}

.contact-main {
background: var(--white);
}

.contact-wrapper {
display: grid;
grid-template-columns: 1fr 1.5fr;
gap: 50px;
}

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

.info-card {
background: var(--light);
padding: 25px;
border-radius: 8px;
text-align: center;
}

.info-card i {
font-size: 32px;
color: var(--secondary);
margin-bottom: 15px;
}

.info-card h3 {
font-size: 16px;
margin-bottom: 10px;
color: var(--primary);
}

.info-card p {
font-size: 14px;
color: var(--gray);
line-height: 1.7;
}

.contact-form-wrapper {
background: var(--light);
padding: 40px;
border-radius: 8px;
}

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

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

.form-group label {
font-size: 14px;
font-weight: 600;
margin-bottom: 8px;
color: var(--primary);
}

.form-group input,
.form-group textarea {
padding: 12px;
border: 1px solid #ddd;
border-radius: 5px;
font-size: 14px;
font-family: 'Sora', sans-serif;
transition: border-color 0.3s;
}

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

.checkbox-group {
flex-direction: row;
align-items: flex-start;
}

.checkbox-label {
display: flex;
align-items: flex-start;
gap: 10px;
font-size: 13px;
color: var(--gray);
cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
margin-top: 3px;
cursor: pointer;
}

.checkbox-label a {
color: var(--accent);
text-decoration: underline;
}

.submit-btn {
background: var(--secondary);
color: var(--white);
padding: 14px 35px;
border: none;
border-radius: 5px;
font-weight: 600;
font-size: 15px;
cursor: pointer;
transition: all 0.3s;
}

.submit-btn:hover {
background: #D35400;
transform: translateY(-2px);
}

.map-section {
background: var(--light);
}

.map-container {
border-radius: 8px;
overflow: hidden;
box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.thankyou-section,
.error-section {
background: var(--white);
min-height: calc(100vh - 200px);
display: flex;
align-items: center;
justify-content: center;
}

.thankyou-content,
.error-content {
text-align: center;
max-width: 600px;
}

.thankyou-content i {
font-size: 80px;
color: var(--success);
margin-bottom: 25px;
}

.error-content h1 {
font-size: 120px;
font-weight: 700;
color: var(--secondary);
margin-bottom: 20px;
font-family: 'Space Grotesk', sans-serif;
}

.thankyou-content h1,
.error-content h2 {
font-size: 32px;
margin-bottom: 20px;
color: var(--primary);
}

.thankyou-content p,
.error-content p {
font-size: 15px;
color: var(--gray);
line-height: 1.8;
margin-bottom: 20px;
}

.thankyou-actions,
.error-actions {
display: flex;
gap: 15px;
justify-content: center;
margin-top: 30px;
flex-wrap: wrap;
}

.policy-content {
background: var(--white);
padding: 60px 0;
}

.policy-content .container {
max-width: 900px;
}

.policy-content h1 {
font-family: 'Space Grotesk', sans-serif;
font-size: 36px;
color: var(--primary);
margin-bottom: 15px;
}

.update-date {
font-size: 13px;
color: var(--gray);
margin-bottom: 40px;
}

.policy-content h2 {
font-size: 24px;
color: var(--primary);
margin-top: 40px;
margin-bottom: 20px;
text-align: left;
}

.policy-content h3 {
font-size: 18px;
color: var(--primary);
margin-top: 25px;
margin-bottom: 15px;
}

.policy-content p {
font-size: 14px;
color: var(--gray);
line-height: 1.8;
margin-bottom: 15px;
}

.policy-content ul {
margin-left: 25px;
margin-bottom: 20px;
}

.policy-content ul li {
font-size: 14px;
color: var(--gray);
line-height: 1.8;
margin-bottom: 8px;
}

.policy-content a {
color: var(--accent);
text-decoration: underline;
}

.cookie-table {
width: 100%;
border-collapse: collapse;
margin: 20px 0;
font-size: 14px;
}

.cookie-table th,
.cookie-table td {
padding: 12px;
text-align: left;
border: 1px solid #ddd;
}

.cookie-table th {
background: var(--light);
color: var(--primary);
font-weight: 600;
}

.cookie-table td {
color: var(--gray);
}

@media (max-width: 768px) {
.main-nav {
display: none;
position: absolute;
top: 100%;
left: 0;
right: 0;
background: var(--white);
flex-direction: column;
padding: 20px;
box-shadow: 0 5px 10px rgba(0,0,0,0.1);
gap: 15px;
}

.main-nav.active {
display: flex;
}

.menu-toggle {
display: block;
}

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

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

h2 {
font-size: 26px;
}

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

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

.services-grid,
.products-grid,
.process-steps,
.method-grid,
.industries-list,
.blog-grid {
grid-template-columns: 1fr;
}

.product-card.featured {
transform: scale(1);
}

.thankyou-actions,
.error-actions {
flex-direction: column;
}

.error-content h1 {
font-size: 80px;
}

.privacy-content {
flex-direction: column;
text-align: center;
}
}

@media (max-width: 480px) {
.container {
padding: 0 15px;
}

.hero {
padding: 50px 0;
}

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

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

.cta-btn,
.secondary-btn {
padding: 12px 25px;
font-size: 14px;
}

h2 {
font-size: 22px;
margin-bottom: 30px;
}

section {
padding: 40px 0;
}

.service-card,
.product-card,
.method-card {
padding: 25px 20px;
}

.contact-form-wrapper {
padding: 25px;
}

.page-hero h1,
.contact-hero h1 {
font-size: 28px;
}

.thankyou-content h1,
.error-content h2 {
font-size: 24px;
}

.error-content h1 {
font-size: 60px;
}

.policy-content h1 {
font-size: 28px;
}

.policy-content h2 {
font-size: 20px;
}

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

.logo {
font-size: 18px;
}
}

@media (max-width: 320px) {
.hero-content h1 {
font-size: 22px;
}

h2 {
font-size: 20px;
}

.cta-btn,
.secondary-btn {
padding: 10px 20px;
font-size: 13px;
}

.service-card i,
.method-card i,
.industry-item i {
font-size: 32px;
}

.stat-number {
font-size: 36px;
}

.step-number {
font-size: 40px;
}
}
