:root {
--primary: #0A4D68;
--secondary: #088395;
--accent: #05BFDB;
--light: #F8FBFF;
--dark: #0D1B2A;
--gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
}

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

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

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

.header-main {
position: fixed;
top: 0;
width: 100%;
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
z-index: 1000;
box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

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

.logo {
font-family: 'Space Grotesk', sans-serif;
font-size: 24px;
font-weight: 700;
background: var(--gradient);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.nav-menu {
display: flex;
gap: 35px;
}

.nav-menu a {
text-decoration: none;
color: var(--dark);
font-weight: 500;
transition: color 0.3s;
position: relative;
}

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

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

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

.hero-section {
position: relative;
min-height: 100vh;
display: flex;
align-items: center;
padding-top: 80px;
overflow: hidden;
background: linear-gradient(135deg, #F8FBFF 0%, #E8F4F8 100%);
}

.hero-background {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 0;
}

.hero-shape {
position: absolute;
border-radius: 50%;
filter: blur(80px);
opacity: 0.4;
animation: float 20s infinite ease-in-out;
}

.shape-1 {
width: 500px;
height: 500px;
background: var(--accent);
top: -100px;
right: -100px;
animation-delay: 0s;
}

.shape-2 {
width: 400px;
height: 400px;
background: var(--secondary);
bottom: -150px;
left: -100px;
animation-delay: 5s;
}

.shape-3 {
width: 350px;
height: 350px;
background: var(--primary);
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
animation-delay: 10s;
}

@keyframes float {
0%, 100% { transform: translate(0, 0) scale(1); }
33% { transform: translate(50px, -50px) scale(1.1); }
66% { transform: translate(-30px, 30px) scale(0.9); }
}

.hero-content-wrapper {
position: relative;
z-index: 1;
max-width: 800px;
text-align: center;
margin: 0 auto;
}

.hero-badge {
display: inline-block;
padding: 10px 25px;
background: rgba(255, 255, 255, 0.9);
border-radius: 50px;
font-size: 14px;
font-weight: 600;
color: var(--primary);
margin-bottom: 25px;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.hero-title {
font-family: 'Space Grotesk', sans-serif;
font-size: 56px;
font-weight: 700;
line-height: 1.2;
margin-bottom: 25px;
background: var(--gradient);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.hero-description {
font-size: 18px;
color: var(--dark);
margin-bottom: 35px;
opacity: 0.85;
}

.hero-buttons {
display: flex;
gap: 20px;
justify-content: center;
margin-bottom: 50px;
flex-wrap: wrap;
}

.btn-hero-primary, .btn-hero-secondary {
padding: 16px 40px;
border-radius: 50px;
text-decoration: none;
font-weight: 600;
transition: all 0.3s;
display: inline-block;
}

.btn-hero-primary {
background: var(--gradient);
color: white;
box-shadow: 0 8px 25px rgba(8, 131, 149, 0.3);
}

.btn-hero-primary:hover {
transform: translateY(-3px);
box-shadow: 0 12px 35px rgba(8, 131, 149, 0.4);
}

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

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

.hero-stats-mini {
display: flex;
gap: 50px;
justify-content: center;
flex-wrap: wrap;
}

.stat-mini {
display: flex;
flex-direction: column;
}

.stat-mini-number {
font-size: 32px;
font-weight: 700;
color: var(--primary);
}

.stat-mini-label {
font-size: 14px;
color: var(--dark);
opacity: 0.7;
}

.section-header {
margin-bottom: 50px;
}

.section-header.centered {
text-align: center;
}

.section-label {
display: inline-block;
padding: 8px 20px;
background: rgba(5, 191, 219, 0.1);
color: var(--secondary);
border-radius: 30px;
font-size: 14px;
font-weight: 600;
margin-bottom: 15px;
}

.section-header h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 42px;
font-weight: 700;
color: var(--dark);
margin-bottom: 15px;
}

.section-subtitle {
font-size: 18px;
color: var(--dark);
opacity: 0.7;
max-width: 700px;
margin: 0 auto;
}

.services-overview {
padding: 100px 0;
background: white;
}

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

.service-card {
padding: 40px;
background: var(--light);
border-radius: 20px;
transition: all 0.3s;
border: 2px solid transparent;
}

.service-card:hover {
transform: translateY(-10px);
border-color: var(--accent);
box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.service-number {
font-size: 48px;
font-weight: 700;
color: var(--accent);
opacity: 0.3;
margin-bottom: 20px;
}

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

.service-card p {
color: var(--dark);
opacity: 0.8;
margin-bottom: 20px;
}

.link-arrow {
color: var(--secondary);
text-decoration: none;
font-weight: 600;
display: inline-flex;
align-items: center;
gap: 8px;
}

.link-arrow::after {
content: '→';
transition: transform 0.3s;
}

.link-arrow:hover::after {
transform: translateX(5px);
}

.expertise-section {
padding: 100px 0;
background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
color: white;
}

.expertise-layout {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
}

.expertise-section .section-label {
background: rgba(255, 255, 255, 0.2);
color: white;
}

.expertise-section h2 {
color: white;
}

.lead-text {
font-size: 18px;
margin-bottom: 30px;
opacity: 0.9;
}

.expertise-list {
display: flex;
flex-direction: column;
gap: 25px;
}

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

.expertise-icon {
font-size: 32px;
flex-shrink: 0;
}

.expertise-item h4 {
font-size: 20px;
margin-bottom: 8px;
}

.expertise-item p {
opacity: 0.9;
}

.expertise-image img {
width: 100%;
height: auto;
border-radius: 20px;
box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.industries-section {
padding: 100px 0;
background: white;
}

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

.industry-card {
padding: 35px;
background: var(--light);
border-radius: 15px;
transition: all 0.3s;
}

.industry-card:hover {
background: var(--primary);
color: white;
transform: translateY(-5px);
}

.industry-card h3 {
font-size: 20px;
margin-bottom: 12px;
}

.process-section {
padding: 100px 0;
background: var(--light);
}

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

.process-step {
padding: 35px;
background: white;
border-radius: 15px;
position: relative;
}

.step-number {
font-size: 48px;
font-weight: 700;
color: var(--accent);
opacity: 0.2;
margin-bottom: 15px;
}

.process-step h3 {
font-size: 22px;
margin-bottom: 12px;
color: var(--dark);
}

.testimonials-section {
padding: 100px 0;
background: white;
}

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

.testimonial-card {
padding: 40px;
background: var(--light);
border-radius: 20px;
border-left: 4px solid var(--accent);
}

.testimonial-text {
font-size: 16px;
font-style: italic;
margin-bottom: 25px;
line-height: 1.8;
}

.testimonial-author strong {
display: block;
color: var(--primary);
font-size: 18px;
margin-bottom: 5px;
}

.testimonial-author span {
font-size: 14px;
opacity: 0.7;
}

.cta-final-section {
padding: 100px 0;
background: var(--gradient);
color: white;
}

.cta-final-content {
text-align: center;
max-width: 800px;
margin: 0 auto;
}

.cta-final-text h2 {
font-size: 42px;
margin-bottom: 20px;
color: white;
}

.cta-final-text p {
font-size: 18px;
margin-bottom: 35px;
opacity: 0.95;
}

.btn-cta-large {
display: inline-block;
padding: 18px 50px;
background: white;
color: var(--primary);
text-decoration: none;
border-radius: 50px;
font-weight: 700;
font-size: 18px;
transition: all 0.3s;
box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-cta-large:hover {
transform: translateY(-3px);
box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

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

.footer-content {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 20px;
}

.footer-links {
display: flex;
gap: 25px;
flex-wrap: wrap;
}

.footer-links a {
color: white;
text-decoration: none;
opacity: 0.8;
transition: opacity 0.3s;
}

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

.cookie-popup {
position: fixed;
bottom: -200px;
left: 20px;
right: 20px;
max-width: 500px;
background: white;
padding: 25px;
border-radius: 15px;
box-shadow: 0 10px 40px rgba(0,0,0,0.2);
z-index: 10000;
transition: bottom 0.5s;
}

.cookie-popup.show {
bottom: 20px;
}

.cookie-content p {
margin-bottom: 15px;
}

.cookie-buttons {
display: flex;
gap: 15px;
align-items: center;
}

.btn-accept {
padding: 10px 25px;
background: var(--gradient);
color: white;
border: none;
border-radius: 25px;
cursor: pointer;
font-weight: 600;
}

.cookie-buttons a {
color: var(--secondary);
text-decoration: none;
font-size: 14px;
}

.page-hero {
padding: 150px 0 80px;
background: var(--gradient);
color: white;
text-align: center;
}

.breadcrumb {
margin-bottom: 20px;
opacity: 0.9;
}

.breadcrumb a {
color: white;
text-decoration: none;
}

.page-hero h1 {
font-size: 48px;
margin-bottom: 20px;
}

.page-hero p {
font-size: 18px;
max-width: 700px;
margin: 0 auto;
opacity: 0.95;
}

.content-section {
padding: 100px 0;
background: white;
}

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

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

.content-text p {
margin-bottom: 20px;
line-height: 1.8;
}

.content-image img {
width: 100%;
height: auto;
border-radius: 20px;
box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.benefits-section {
padding: 100px 0;
background: var(--light);
}

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

.benefit-card {
padding: 35px;
background: white;
border-radius: 15px;
transition: all 0.3s;
}

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

.benefit-number {
font-size: 36px;
font-weight: 700;
color: var(--accent);
opacity: 0.3;
margin-bottom: 15px;
}

.benefit-card h3 {
font-size: 20px;
margin-bottom: 12px;
}

.packages-section {
padding: 100px 0;
background: white;
}

.packages-section h2 {
text-align: center;
font-size: 42px;
margin-bottom: 50px;
}

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

.package-card {
padding: 40px;
background: var(--light);
border-radius: 20px;
position: relative;
transition: all 0.3s;
border: 2px solid transparent;
}

.package-card.featured {
border-color: var(--accent);
transform: scale(1.05);
}

.package-badge {
position: absolute;
top: -15px;
right: 30px;
background: var(--accent);
color: white;
padding: 8px 20px;
border-radius: 20px;
font-size: 14px;
font-weight: 600;
}

.package-header h3 {
font-size: 28px;
margin-bottom: 15px;
}

.package-price {
font-size: 42px;
font-weight: 700;
color: var(--primary);
margin-bottom: 25px;
}

.package-features {
list-style: none;
margin-bottom: 30px;
}

.package-features li {
padding: 12px 0;
border-bottom: 1px solid rgba(0,0,0,0.1);
display: flex;
align-items: center;
gap: 10px;
}

.package-features i {
color: var(--accent);
}

.btn-package {
display: block;
text-align: center;
padding: 15px;
background: var(--gradient);
color: white;
text-decoration: none;
border-radius: 10px;
font-weight: 600;
transition: all 0.3s;
}

.btn-package:hover {
transform: translateY(-3px);
box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

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

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

.contact-info-side h2 {
font-size: 32px;
margin-bottom: 35px;
}

.contact-item {
display: flex;
gap: 20px;
margin-bottom: 30px;
}

.contact-icon {
width: 50px;
height: 50px;
background: var(--gradient);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 20px;
flex-shrink: 0;
}

.contact-details h3 {
font-size: 18px;
margin-bottom: 8px;
color: var(--primary);
}

.contact-form-side h2 {
font-size: 32px;
margin-bottom: 30px;
}

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

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

.form-group input,
.form-group textarea {
width: 100%;
padding: 15px;
border: 2px solid #e0e0e0;
border-radius: 10px;
font-family: 'Sora', sans-serif;
font-size: 16px;
transition: border-color 0.3s;
}

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

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

.checkbox-label {
display: flex;
gap: 10px;
cursor: pointer;
}

.checkbox-label input {
margin-top: 4px;
}

.checkbox-label a {
color: var(--secondary);
}

.btn-submit {
width: 100%;
padding: 16px;
background: var(--gradient);
color: white;
border: none;
border-radius: 10px;
font-size: 18px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s;
}

.btn-submit:hover {
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.map-section {
padding: 80px 0;
background: var(--light);
}

.map-section h2 {
text-align: center;
font-size: 36px;
margin-bottom: 40px;
}

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

.thankyou-section {
padding: 160px 0;
text-align: center;
background: var(--light);
min-height: 70vh;
display: flex;
align-items: center;
}

.thankyou-content {
max-width: 700px;
margin: 0 auto;
}

.thankyou-icon {
font-size: 80px;
margin-bottom: 30px;
}

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

.thankyou-content p {
font-size: 18px;
margin-bottom: 35px;
line-height: 1.8;
}

.btn-home {
display: inline-block;
padding: 16px 40px;
background: var(--gradient);
color: white;
text-decoration: none;
border-radius: 50px;
font-weight: 600;
transition: all 0.3s;
}

.btn-home:hover {
transform: translateY(-3px);
box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.features-showcase {
padding: 100px 0;
background: var(--light);
}

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

.feature-box {
padding: 40px;
background: white;
border-radius: 15px;
text-align: center;
transition: all 0.3s;
}

.feature-box:hover {
transform: translateY(-8px);
box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.feature-icon {
font-size: 48px;
margin-bottom: 20px;
}

.feature-box h3 {
font-size: 22px;
margin-bottom: 15px;
color: var(--dark);
}

.stats-showcase {
padding: 100px 0;
background: var(--gradient);
color: white;
}

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

.stat-box h3 {
font-size: 52px;
font-weight: 700;
margin-bottom: 10px;
}

.stat-box p {
font-size: 18px;
opacity: 0.9;
}

.team-section {
padding: 100px 0;
background: white;
}

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

.team-member {
text-align: center;
padding: 30px;
background: var(--light);
border-radius: 15px;
transition: all 0.3s;
}

.team-member:hover {
transform: translateY(-8px);
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.team-photo {
width: 120px;
height: 120px;
border-radius: 50%;
margin: 0 auto 20px;
background: var(--gradient);
display: flex;
align-items: center;
justify-content: center;
font-size: 48px;
color: white;
}

.team-member h3 {
font-size: 22px;
margin-bottom: 8px;
color: var(--dark);
}

.team-role {
color: var(--secondary);
font-size: 16px;
margin-bottom: 12px;
}

.team-bio {
font-size: 14px;
opacity: 0.8;
line-height: 1.6;
}

.image-gallery {
padding: 100px 0;
background: white;
}

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

.gallery-item {
position: relative;
border-radius: 15px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.gallery-item img {
width: 100%;
height: 300px;
object-fit: cover;
transition: transform 0.3s;
}

.gallery-item:hover img {
transform: scale(1.1);
}

.gallery-caption {
position: absolute;
bottom: 0;
left: 0;
right: 0;
padding: 20px;
background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
color: white;
}

.methodology-section {
padding: 100px 0;
background: var(--light);
}

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

.method-card {
padding: 35px;
background: white;
border-radius: 15px;
transition: all 0.3s;
}

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

.method-number {
font-size: 42px;
font-weight: 700;
color: var(--accent);
opacity: 0.3;
margin-bottom: 15px;
}

.method-card h3 {
font-size: 20px;
margin-bottom: 12px;
color: var(--dark);
}

.applications-section {
padding: 100px 0;
background: white;
}

.applications-section h2 {
text-align: center;
font-size: 42px;
margin-bottom: 50px;
}

.applications-list {
display: flex;
flex-direction: column;
gap: 25px;
max-width: 900px;
margin: 0 auto;
}

.application-item {
display: flex;
gap: 25px;
align-items: flex-start;
padding: 30px;
background: var(--light);
border-radius: 15px;
transition: all 0.3s;
}

.application-item:hover {
transform: translateX(10px);
box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.app-number {
font-size: 36px;
font-weight: 700;
color: var(--accent);
flex-shrink: 0;
width: 60px;
}

.app-content h3 {
font-size: 22px;
margin-bottom: 10px;
color: var(--dark);
}

.app-content p {
color: var(--dark);
opacity: 0.8;
line-height: 1.7;
}

.policy-section {
padding: 100px 0;
background: white;
}

.policy-content {
max-width: 900px;
margin: 0 auto;
}

.policy-content h1 {
font-size: 42px;
margin-bottom: 15px;
color: var(--primary);
}

.policy-date {
font-size: 14px;
color: var(--dark);
opacity: 0.6;
margin-bottom: 40px;
}

.policy-content h2 {
font-size: 28px;
margin-top: 40px;
margin-bottom: 20px;
color: var(--dark);
}

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

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

.error-section {
min-height: 80vh;
display: flex;
align-items: center;
justify-content: center;
background: var(--light);
text-align: center;
}

.error-content {
max-width: 700px;
margin: 0 auto;
}

.error-number {
font-size: 120px;
font-weight: 700;
color: var(--accent);
opacity: 0.3;
line-height: 1;
margin-bottom: 20px;
}

.error-content h1 {
font-size: 36px;
margin-bottom: 20px;
color: var(--dark);
}

.error-content p {
font-size: 18px;
margin-bottom: 35px;
line-height: 1.7;
color: var(--dark);
opacity: 0.8;
}

.content-layout.reverse {
direction: rtl;
}

.content-layout.reverse > * {
direction: ltr;
}

@media (max-width: 968px) {
.hero-title {
font-size: 42px;
}
.section-header h2 {
font-size: 36px;
}
.expertise-layout,
.content-layout {
grid-template-columns: 1fr;
}
.contact-grid {
grid-template-columns: 1fr;
}
.nav-menu {
position: fixed;
top: 80px;
left: -100%;
width: 100%;
background: white;
flex-direction: column;
padding: 30px;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
transition: left 0.3s;
}
.nav-menu.active {
left: 0;
}
.menu-toggle {
display: block;
}
}

@media (max-width: 768px) {
.hero-title {
font-size: 36px;
}
.hero-description {
font-size: 16px;
}
.section-header h2 {
font-size: 32px;
}
.hero-buttons {
flex-direction: column;
}
.services-grid,
.industries-grid,
.process-timeline,
.testimonials-grid,
.packages-grid,
.benefits-grid,
.features-grid,
.team-grid {
grid-template-columns: 1fr;
}
.package-card.featured {
transform: scale(1);
}
}

@media (max-width: 480px) {
.container {
padding: 0 15px;
}
.hero-title {
font-size: 28px;
}
.hero-description {
font-size: 15px;
}
.section-header h2 {
font-size: 26px;
}
.btn-hero-primary,
.btn-hero-secondary {
padding: 14px 30px;
font-size: 15px;
}
.service-card,
.benefit-card,
.package-card {
padding: 25px;
}
.cta-final-text h2 {
font-size: 28px;
}
.page-hero h1 {
font-size: 32px;
}
}

@media (max-width: 320px) {
.hero-title {
font-size: 24px;
}
.section-header h2 {
font-size: 22px;
}
.hero-stats-mini {
gap: 30px;
}
.stat-mini-number {
font-size: 26px;
}
.btn-hero-primary,
.btn-hero-secondary {
padding: 12px 25px;
font-size: 14px;
width: 100%;
text-align: center;
}
.service-card,
.benefit-card,
.package-card {
padding: 20px;
}
.logo {
font-size: 20px;
}
}
