/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #393939;
    background-color: #ffffff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #393939;
}

h1 {
    font-size: clamp(1.8rem, 4vw, 3rem);
}

h2 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
}

h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
}

p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-family: inherit;
}

.btn-primary {
    background: #3b51d5;
    color: white;
    border-color: #3b51d5;
}

.btn-primary:hover {
    background: #2940c7;
    border-color: #2940c7;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 81, 213, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #393939;
    border-color: #393939;
}

.btn-secondary:hover {
    background: #393939;
    color: white;
}

.btn-outline {
    background: transparent;
    color: #3b51d5;
    border-color: #3b51d5;
}

.btn-outline:hover {
    background: #3b51d5;
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 40px;
    height: 40px;
}

.brand-text {
    font-weight: 600;
    font-size: 1.2rem;
    color: #393939;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

.nav-link {
    text-decoration: none;
    color: #393939;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #3b51d5;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #3b51d5;
    transition: width 0.3s ease;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: #393939;
    border-radius: 2px;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: linear-gradient(135deg, rgba(59, 81, 213, 0.05) 0%, transparent 50%);
    transform: rotate(15deg);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: #393939;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-credentials {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.credential {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 8px 16px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-weight: 500;
    font-size: 0.9rem;
}

.credential-logo {
    width: 24px;
    height: 24px;
}

.hero-image {
    position: relative;
}

.hero-img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Stats Section */
.stats {
    padding: 60px 0;
    background: #3b51d5;
    color: white;
}

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

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Sections */
.services,
.trust,
.about,
.testimonials,
.contact-section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-title {
    color: #393939;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
}

/* Services */
.services {
    background: #f8f9ff;
}

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

.service-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.service-svg {
    width: 100%;
    height: 100%;
}

.service-image {
    margin: 1rem 0;
}

.service-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
}

.service-title {
    color: #393939;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.service-description {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-link {
    color: #3b51d5;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #2940c7;
}

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

.trust-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
}

.trust-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
}

.trust-svg {
    width: 100%;
    height: 100%;
}

.trust-title {
    color: #393939;
    margin-bottom: 1rem;
}

.trust-description {
    color: #666;
    line-height: 1.6;
}

/* About Section */
.about {
    background: #f8f9ff;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text {
    max-width: none;
}

.about-highlight {
    font-size: 1.2rem;
    color: #3b51d5;
    font-weight: 600;
    margin-bottom: 2rem;
}

.about-story,
.about-philosophy,
.about-values,
.about-certifications {
    margin-bottom: 2.5rem;
}

.about-story h3,
.about-philosophy h3,
.about-values h3,
.about-certifications h3 {
    color: #393939;
    margin-bottom: 1rem;
}

.values-list {
    list-style: none;
    padding-left: 0;
}

.values-list li {
    padding: 0.5rem 0;
    border-left: 3px solid #3b51d5;
    padding-left: 1rem;
    margin-bottom: 0.5rem;
}

.certifications-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.certification {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.cert-logo {
    width: 40px;
    height: 40px;
}

.cert-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.cert-details strong {
    color: #393939;
}

.cert-details span {
    color: #666;
    font-size: 0.9rem;
}

.about-image {
    position: relative;
}

.about-img {
    width: 100%;
    border-radius: 16px;
    margin-bottom: 2rem;
}

.about-contact-card {
    background: #3b51d5;
    color: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
}

.about-contact-card h4 {
    color: white;
    margin-bottom: 1rem;
}

.about-contact-card p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.contact-phone,
.contact-email {
    display: block;
    color: white;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: opacity 0.3s ease;
}

.contact-phone:hover,
.contact-email:hover {
    opacity: 0.8;
}

/* Testimonials */
.testimonials {
    background: white;
}

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

.testimonial-card {
    background: #f8f9ff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    color: #393939;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    color: #393939;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-title {
    color: #666;
    font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
    background: #f8f9ff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.contact-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.contact-svg {
    width: 100%;
    height: 100%;
}

.contact-details h3 {
    color: #393939;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-details a {
    color: #3b51d5;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-details span {
    color: #666;
    font-size: 0.9rem;
}

/* Forms */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #393939;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e1e1e1;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b51d5;
}

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

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
    transform: scale(1.2);
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
    line-height: 1.5;
}

.form-note {
    background: #f8f9ff;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
}

/* Map */
.map-container {
    margin-top: 3rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
}

/* Footer */
.footer {
    background: #2a2a2a;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h4 {
    color: white;
    margin-bottom: 1.5rem;
}

.footer-brand {
    margin-bottom: 1rem;
}

.footer-logo {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
}

.footer-brand h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: #ccc;
    font-size: 0.9rem;
}

.footer-credentials {
    margin-top: 1rem;
}

.footer-credential {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.footer-cert {
    width: 20px;
    height: 20px;
}

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

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3b51d5;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    color: #ccc;
}

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

.footer-hours {
    margin-top: 1rem;
}

.footer-hours h5 {
    color: white;
    margin-bottom: 0.5rem;
}

.footer-social {
    margin-top: 1rem;
}

.footer-social h5 {
    color: white;
    margin-bottom: 0.5rem;
}

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

.social-links a {
    display: inline-block;
    width: 32px;
    height: 32px;
}

.social-links img {
    width: 100%;
    height: 100%;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 2rem;
    text-align: center;
}

.footer-legal {
    color: #ccc;
}

.footer-legal p {
    margin-bottom: 0.5rem;
}

.footer-legal-text {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(42, 42, 42, 0.98);
    color: white;
    padding: 1rem;
    z-index: 9999;
    backdrop-filter: blur(10px);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

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

.cookie-content h3 {
    color: white;
    margin-bottom: 1rem;
}

.cookie-content p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

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

.cookie-link {
    color: #3b51d5;
    text-decoration: none;
    font-weight: 500;
}

.cookie-link:hover {
    text-decoration: underline;
}

/* Page-specific styles */
.page-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    text-align: center;
}

.page-header-content h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #393939;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 0;
}

/* Contact page specific */
.contact-page {
    padding: 60px 0;
}

.contact-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.contact-intro h2 {
    color: #393939;
    margin-bottom: 1.5rem;
}

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

.contact-method {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.method-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
}

.method-svg {
    width: 100%;
    height: 100%;
}

.method-content h3 {
    color: #393939;
    margin-bottom: 1rem;
}

.method-main {
    font-size: 1.2rem;
    font-weight: 600;
    color: #3b51d5;
    margin-bottom: 1rem;
}

.method-main a {
    color: #3b51d5;
    text-decoration: none;
}

.method-details {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.method-note {
    background: #f8f9ff;
    padding: 1rem;
    border-radius: 8px;
    color: #393939;
    font-size: 0.9rem;
    font-style: italic;
}

.contact-form-section {
    background: #f8f9ff;
    padding: 4rem 0;
    margin: 4rem 0;
}

.form-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.form-intro p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
}

.contact-map {
    margin-top: 4rem;
}

.contact-map h2 {
    text-align: center;
    color: #393939;
    margin-bottom: 2rem;
}

.map-info {
    margin-bottom: 2rem;
}

.map-details {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.map-details h3 {
    color: #393939;
    margin-bottom: 1rem;
}

.map-details ul {
    list-style: none;
    padding-left: 0;
}

.map-details li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.map-details li:last-child {
    border-bottom: none;
}

.nearby-cities {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.5rem;
}

/* Legal pages */
.legal-content {
    padding: 60px 0;
}

.privacy-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.intro-text {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
}

.legal-sections {
    max-width: 900px;
    margin: 0 auto;
}

.legal-section {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.legal-section h2 {
    color: #3b51d5;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.legal-section h3 {
    color: #393939;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-section h4 {
    color: #393939;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.legal-info p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-info ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-info li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.conservation-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

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

.conservation-table th {
    background: #f8f9ff;
    color: #393939;
    font-weight: 600;
}

.conservation-table tr:hover {
    background: #f8f9ff;
}

.legal-footer {
    background: #f8f9ff;
    padding: 2rem;
    border-radius: 16px;
    margin-top: 3rem;
    text-align: center;
}

.legal-footer p {
    margin-bottom: 0.5rem;
    color: #666;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 1rem;
        padding: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        text-align: center;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-credentials {
        justify-content: center;
    }
    
    .cookie-content {
        text-align: left;
        padding: 0 1rem;
    }
    
    .cookie-buttons {
        justify-content: flex-start;
    }
    
    .nearby-cities {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .service-card,
    .trust-item,
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .legal-section {
        padding: 1.5rem;
    }
    
    .conservation-table {
        font-size: 0.9rem;
    }
    
    .conservation-table th,
    .conservation-table td {
        padding: 8px;
    }
}