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

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #0f3460;
    --highlight-color: #e94560;
    --text-primary: #333333;
    --text-secondary: #666666;
    --text-light: #999999;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #2ecc71;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-white);
}

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

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

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

h1, h2, h3, h4 {
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 600;
}

h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

h2 {
    font-size: 2rem;
    color: var(--primary-color);
}

h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

h4 {
    font-size: 1.25rem;
    color: var(--secondary-color);
}

p {
    margin-bottom: 1rem;
}

ul {
    margin-bottom: 1rem;
}

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

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

.navigation {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

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

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

.nav-links a {
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--highlight-color);
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: stretch;
}

.hero-left,
.hero-right {
    flex: 1;
    display: flex;
}

.hero-left {
    background: var(--primary-color);
    padding: 4rem;
    align-items: center;
}

.hero-text-content {
    max-width: 600px;
}

.hero-text-content h1 {
    color: var(--bg-white);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hero-right {
    position: relative;
    overflow: hidden;
}

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

.btn-primary,
.btn-secondary,
.btn-primary-large {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

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

.btn-primary:hover {
    background: #d63651;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(233, 69, 96, 0.3);
}

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

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

.btn-primary-large {
    background: var(--highlight-color);
    color: var(--bg-white);
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

.btn-primary-large:hover {
    background: #d63651;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 69, 96, 0.4);
}

.trust-indicators {
    background: var(--bg-light);
    padding: 3rem 0;
}

.trust-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.trust-item h3 {
    font-size: 2.5rem;
    color: var(--highlight-color);
    margin-bottom: 0.5rem;
}

.trust-item p {
    color: var(--text-secondary);
    margin: 0;
}

.split-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 5rem 2rem;
}

.split-container.reverse {
    flex-direction: row-reverse;
}

.split-content,
.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.problem-section {
    background: var(--bg-white);
}

.approach-section {
    background: var(--bg-light);
    padding: 5rem 0;
}

.approach-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.approach-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.step {
    flex: 1;
    min-width: 250px;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--highlight-color);
    margin-bottom: 1rem;
    opacity: 0.8;
}

.step h3 {
    margin-bottom: 0.75rem;
}

.step p {
    color: var(--text-secondary);
    margin: 0;
}

.service-highlight-split {
    background: var(--bg-white);
}

.feature-list {
    list-style: none;
    margin: 1.5rem 0;
}

.feature-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.testimonial-section {
    background: var(--secondary-color);
    padding: 5rem 0;
    color: var(--bg-white);
}

.testimonial-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 300px;
}

.testimonial-text {
    font-size: 1.125rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.testimonial-author {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.service-selection-section {
    background: var(--bg-light);
    padding: 5rem 0;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-secondary);
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    flex: 1;
    min-width: 320px;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.service-card.featured {
    border: 2px solid var(--highlight-color);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--highlight-color);
    color: var(--bg-white);
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.service-card h3 {
    margin-bottom: 1rem;
}

.service-description {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    flex-grow: 1;
}

.service-specs {
    background: var(--bg-light);
    padding: 0.75rem 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.service-specs span {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.btn-select-service {
    width: 100%;
    padding: 1rem;
    background: var(--accent-color);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: var(--highlight-color);
    transform: translateY(-2px);
}

.form-section {
    background: var(--bg-white);
    padding: 5rem 0;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 8px;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

#selected-service-display {
    background: var(--bg-white);
    padding: 1rem;
    border-radius: 4px;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--accent-color);
}

.service-form {
    margin-top: 2rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
    min-width: 250px;
    margin-bottom: 1.5rem;
}

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

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

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

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

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.btn-submit {
    width: 100%;
    padding: 1.25rem;
    background: var(--highlight-color);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #d63651;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 69, 96, 0.3);
}

.btn-submit:disabled {
    background: var(--text-light);
    cursor: not-allowed;
    transform: none;
}

.equipment-expertise {
    background: var(--bg-white);
    padding: 5rem 0;
}

.expertise-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.expertise-category {
    flex: 1;
    min-width: 280px;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--highlight-color);
}

.expertise-category h3 {
    margin-bottom: 0.75rem;
}

.expertise-category p {
    color: var(--text-secondary);
    margin: 0;
}

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

.final-cta {
    background: var(--primary-color);
    padding: 5rem 0;
    text-align: center;
}

.cta-content h2 {
    color: var(--bg-white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.footer {
    background: var(--secondary-color);
    color: rgba(255,255,255,0.8);
    padding: 4rem 0 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.footer-column a {
    display: block;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--bg-white);
}

.footer-column p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
    margin: 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    z-index: 2000;
    display: none;
}

.cookie-banner.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-content p {
    margin: 0;
    flex: 1;
    min-width: 300px;
}

.cookie-content a {
    color: var(--bg-white);
    text-decoration: underline;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-cookie-accept:hover {
    background: #27ae60;
}

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

.btn-cookie-reject:hover {
    background: rgba(255,255,255,0.1);
}

.page-hero {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 5rem 0 3rem;
    text-align: center;
}

.page-hero h1 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.about-story,
.philosophy,
.team-section,
.certifications,
.equipment-lab,
.values {
    padding: 5rem 0;
}

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

.philosophy-grid,
.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.philosophy-item,
.team-member {
    flex: 1;
    min-width: 280px;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

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

.team-section {
    background: var(--bg-white);
}

.role {
    color: var(--highlight-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

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

.equipment-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.equipment-item {
    flex: 1;
    min-width: 260px;
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.equipment-item h3 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.equipment-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

.values {
    background: var(--bg-white);
}

.values-content {
    max-width: 800px;
    margin: 0 auto;
}

.service-detail-section {
    padding: 5rem 0;
}

.service-detail-section.alt {
    background: var(--bg-light);
}

.price-tag {
    font-size: 2rem;
    font-weight: 700;
    color: var(--highlight-color);
    margin-bottom: 1.5rem;
}

.process-section {
    background: var(--bg-white);
    padding: 5rem 0;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.process-step {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
    position: relative;
    padding-top: 4rem;
}

.process-step .step-number {
    position: absolute;
    top: 1rem;
    left: 2rem;
    font-size: 3rem;
    color: var(--highlight-color);
    opacity: 0.3;
    font-weight: 700;
}

.process-step h3 {
    margin-bottom: 0.75rem;
}

.process-step p {
    color: var(--text-secondary);
    margin: 0;
}

.faq-section {
    background: var(--bg-light);
    padding: 5rem 0;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.faq-item {
    flex: 1;
    min-width: 300px;
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: var(--text-secondary);
    margin: 0;
}

.contact-section {
    padding: 5rem 0;
}

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

.contact-info-block h3 {
    margin-bottom: 0.75rem;
}

.contact-info-block p {
    color: var(--text-secondary);
}

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

.note {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-light);
}

.contact-method-section {
    background: var(--bg-light);
    padding: 5rem 0;
}

.contact-methods {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.method-card {
    flex: 1;
    min-width: 280px;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.method-card h3 {
    margin-bottom: 1rem;
}

.method-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.response-time {
    background: var(--bg-white);
    padding: 5rem 0;
}

.response-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.response-item {
    flex: 1;
    min-width: 280px;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.response-item h3 {
    margin-bottom: 0.75rem;
}

.response-item p {
    color: var(--text-secondary);
    margin: 0;
}

.location-note {
    background: var(--bg-light);
    padding: 5rem 0;
}

.location-content {
    max-width: 800px;
    margin: 0 auto;
}

.thanks-hero {
    background: var(--bg-light);
    padding: 5rem 0;
}

.thanks-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.checkmark-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thanks-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.next-steps {
    background: var(--bg-white);
    padding: 5rem 0;
}

.steps-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.step-item {
    flex: 1;
    min-width: 280px;
    text-align: center;
    padding: 2rem;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--highlight-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-item h3 {
    margin-bottom: 0.75rem;
}

.step-item p {
    color: var(--text-secondary);
    margin: 0;
}

.thanks-info {
    background: var(--bg-light);
    padding: 3rem 0;
}

.info-box {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.summary-content {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 4px;
    margin: 1.5rem 0;
}

.contact-info-section {
    background: var(--bg-white);
    padding: 5rem 0;
    text-align: center;
}

.contact-methods-simple {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.contact-method {
    min-width: 200px;
}

.contact-method h3 {
    margin-bottom: 0.5rem;
}

.contact-method a {
    font-weight: 600;
}

.additional-resources {
    background: var(--bg-light);
    padding: 5rem 0;
}

.resources-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.resource-card {
    flex: 1;
    min-width: 280px;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.resource-card h3 {
    margin-bottom: 1rem;
}

.resource-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.final-message {
    background: var(--bg-white);
    padding: 4rem 0;
}

.message-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.legal-page {
    background: var(--bg-white);
    padding: 3rem 0 5rem;
}

.legal-page h1 {
    margin-bottom: 0.5rem;
}

.last-updated {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.legal-page h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-page h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-page ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-page li {
    margin-bottom: 0.5rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

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

@media (max-width: 968px) {
    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-left {
        padding: 3rem 2rem;
    }

    .hero-text-content h1 {
        font-size: 2.5rem;
    }

    .hero-right {
        min-height: 400px;
    }

    .split-container,
    .split-container.reverse {
        flex-direction: column;
        gap: 2rem;
        padding: 3rem 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .service-cards {
        gap: 1.5rem;
    }

    .service-card {
        min-width: 100%;
    }

    .form-container {
        padding: 2rem 1.5rem;
    }

    .form-row {
        flex-direction: column;
    }

    .footer-container {
        flex-direction: column;
    }

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

    .cookie-buttons {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .navigation {
        padding: 1rem 0;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-left {
        padding: 2rem 1.5rem;
    }

    .hero-text-content h1 {
        font-size: 2rem;
    }

    .trust-grid {
        flex-direction: column;
        gap: 1.5rem;
    }

    .approach-steps,
    .process-steps {
        gap: 1.5rem;
    }

    .step,
    .process-step {
        min-width: 100%;
    }

    .btn-primary-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}