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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0a0a0a;
    overflow-x: hidden;
}

/* Container */
.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;
}

h1 {
    font-size: 3rem;
    color: #98d400;
}

h2 {
    font-size: 2.5rem;
    color: #98d400;
}

h3 {
    font-size: 2rem;
    color: #ffffff;
}

h4 {
    font-size: 1.5rem;
    color: #ffffff;
}

p {
    margin-bottom: 1rem;
    color: #cccccc;
}

a {
    color: #98d400;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #b8f420;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: #98d400;
    color: #0a0a0a;
}

.btn-primary:hover {
    background-color: #b8f420;
    color: #0a0a0a;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #98d400;
    border: 2px solid #98d400;
}

.btn-secondary:hover {
    background-color: #98d400;
    color: #0a0a0a;
}

.btn-tertiary {
    background-color: #2a2a2a;
    color: #ffffff;
    border: 2px solid #2a2a2a;
}

.btn-tertiary:hover {
    background-color: transparent;
    color: #98d400;
    border-color: #98d400;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

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

.nav-logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #98d400;
    text-decoration: none;
}

.nav-menu {
    display: flex;
}

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

.nav-link {
    color: #ffffff;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #98d400;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #98d400;
    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-color: #ffffff;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

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

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

.hero-content {
    max-width: 800px;
    z-index: 1;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-content .btn {
    animation: fadeInUp 1s ease 0.4s both;
}

/* Page Hero */
.page-hero {
    position: relative;
    padding: 120px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    z-index: 1;
}

.page-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.page-hero-content p {
    font-size: 1.2rem;
    color: #cccccc;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: block;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.bg-dark {
    background-color: #1a1a1a;
}

/* Company Section */
.company-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.company-info h3 {
    color: #98d400;
    margin-bottom: 1.5rem;
}

.company-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    background-color: #2a2a2a;
    border-radius: 12px;
    border: 1px solid #3a3a3a;
}

.stat h4 {
    font-size: 2.5rem;
    color: #98d400;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #cccccc;
    margin: 0;
}

/* Advantages Grid */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.advantage {
    padding: 2rem;
    background-color: #2a2a2a;
    border-radius: 12px;
    border: 1px solid #3a3a3a;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.advantage:hover {
    transform: translateY(-5px);
    border-color: #98d400;
}

.advantage h3 {
    color: #98d400;
    margin-bottom: 1rem;
}

/* Packages Grid */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.package {
    background-color: #2a2a2a;
    border: 1px solid #3a3a3a;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.package.featured {
    border-color: #98d400;
    transform: scale(1.05);
    background-color: #1a2a1a;
}

.package:hover {
    transform: translateY(-5px);
    border-color: #98d400;
}

.package.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.package-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #3a3a3a;
}

.package-header h3 {
    color: #98d400;
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.stars {
    color: #98d400;
    font-size: 1.2rem;
}

.rating-text {
    color: #cccccc;
}

.package-features {
    list-style: none;
    margin-bottom: 2rem;
}

.package-features li {
    padding: 0.5rem 0;
    color: #cccccc;
    border-bottom: 1px solid #3a3a3a;
}

.package-features li:last-child {
    border-bottom: none;
}

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

.achievement {
    text-align: center;
    padding: 2rem;
    background-color: #2a2a2a;
    border-radius: 12px;
    border: 1px solid #3a3a3a;
}

.achievement-number {
    font-size: 3rem;
    font-weight: 700;
    color: #98d400;
    margin-bottom: 0.5rem;
}

.achievement-text {
    color: #cccccc;
    font-size: 1.1rem;
}

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

.review {
    background-color: #2a2a2a;
    border: 1px solid #3a3a3a;
    border-radius: 12px;
    padding: 2rem;
}

.review-stars {
    color: #98d400;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review p {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.review-author strong {
    color: #98d400;
}

.review-author span {
    color: #888888;
    font-size: 0.9rem;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

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

.contact-item h3 {
    color: #98d400;
    margin-bottom: 0.5rem;
}

.contact-item p {
    margin: 0;
}

.contact-item a {
    color: #cccccc;
}

.contact-item a:hover {
    color: #98d400;
}

/* Forms */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    color: #98d400;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    background-color: #2a2a2a;
    border: 1px solid #3a3a3a;
    border-radius: 6px;
    padding: 12px;
    color: #ffffff;
    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: #98d400;
}

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

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #3a3a3a;
    border-radius: 3px;
    background-color: #2a2a2a;
    position: relative;
    cursor: pointer;
    margin: 0;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked {
    background-color: #98d400;
    border-color: #98d400;
}

.checkbox-label input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #0a0a0a;
    font-size: 12px;
    font-weight: bold;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    border-top: 1px solid #3a3a3a;
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    color: #98d400;
    margin-bottom: 1rem;
}

.footer-section h4 {
    color: #98d400;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

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

.footer-links a {
    color: #cccccc;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #98d400;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #2a2a2a;
    border-radius: 50%;
    color: #cccccc;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #98d400;
    color: #0a0a0a;
    transform: translateY(-2px);
}

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

/* Cookie Banner and Modal */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid #3a3a3a;
    padding: 1.5rem;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

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

.cookie-text h3 {
    color: #98d400;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.cookie-text p {
    color: #cccccc;
    margin: 0;
}

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

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1001;
    display: none;
    justify-content: center;
    align-items: center;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background-color: #2a2a2a;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #3a3a3a;
}

.cookie-modal-header h3 {
    color: #98d400;
    margin: 0;
}

.close {
    color: #cccccc;
    font-size: 1.5rem;
    cursor: pointer;
    background: none;
    border: none;
}

.close:hover {
    color: #98d400;
}

.cookie-modal-body {
    padding: 1.5rem;
}

.cookie-option {
    margin-bottom: 1.5rem;
}

.cookie-option label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.5rem;
    cursor: pointer;
}

.cookie-option input[type="checkbox"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #3a3a3a;
    border-radius: 3px;
    background-color: #1a1a1a;
    position: relative;
    cursor: pointer;
}

.cookie-option input[type="checkbox"]:checked {
    background-color: #98d400;
    border-color: #98d400;
}

.cookie-option input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #0a0a0a;
    font-size: 12px;
    font-weight: bold;
}

.cookie-option input[type="checkbox"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-option p {
    color: #cccccc;
    font-size: 0.9rem;
    margin: 0;
}

.cookie-modal-footer {
    padding: 1.5rem;
    border-top: 1px solid #3a3a3a;
    text-align: right;
}

/* Legal Content */
.legal-content {
    padding: 120px 0 80px;
}

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

.legal-date {
    color: #888888;
    font-style: italic;
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-text h2 {
    color: #98d400;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #3a3a3a;
}

.legal-text h2:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.legal-text h3 {
    color: #98d400;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.legal-text h4 {
    color: #ffffff;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.legal-text ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-text li {
    margin-bottom: 0.5rem;
    color: #cccccc;
}

.contact-info {
    background-color: #2a2a2a;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #98d400;
    margin: 1.5rem 0;
}

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

.contact-info p:last-child {
    margin-bottom: 0;
}

.legal-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #3a3a3a;
    text-align: center;
}

/* About Page Specific Styles */
.story-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.story-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.mission-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.mission-value {
    background-color: #2a2a2a;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #3a3a3a;
}

.mission-value h3 {
    color: #98d400;
    margin-bottom: 1rem;
}

.values-list {
    list-style: none;
}

.values-list li {
    margin-bottom: 1rem;
    padding-left: 1rem;
}

.values-list strong {
    color: #98d400;
}

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

.team-member {
    background-color: #2a2a2a;
    border-radius: 12px;
    border: 1px solid #3a3a3a;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    border-color: #98d400;
}

.team-member-info h4 {
    color: #98d400;
    margin-bottom: 0.5rem;
}

.position {
    color: #888888;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: block;
}

.expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.expertise-tag {
    background-color: #98d400;
    color: #0a0a0a;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

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

.certification {
    background-color: #2a2a2a;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #3a3a3a;
    text-align: center;
}

.certification h4 {
    color: #98d400;
    margin-bottom: 0.5rem;
}

.year {
    color: #888888;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

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

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

/* Services Page Specific Styles */
.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 3rem;
}

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

.service-card {
    background-color: #2a2a2a;
    border: 1px solid #3a3a3a;
    border-radius: 12px;
    padding: 2rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #98d400;
}

.service-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #3a3a3a;
}

.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    display: block;
}

.service-header h3 {
    color: #98d400;
    margin-bottom: 1rem;
}

.service-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.service-description {
    margin-bottom: 2rem;
}

.service-features {
    list-style: none;
    margin-top: 1rem;
}

.service-features li {
    color: #cccccc;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.service-features li::before {
    content: '✓';
    color: #98d400;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.service-pricing {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #3a3a3a;
}

.service-pricing .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #98d400;
    margin-bottom: 1rem;
}

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

.specialized-service {
    background-color: #2a2a2a;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #3a3a3a;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.specialized-service:hover {
    transform: translateY(-3px);
    border-color: #98d400;
}

.specialized-service h4 {
    color: #98d400;
    margin-bottom: 0.5rem;
}

.service-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #3a3a3a;
}

.service-details .price {
    color: #98d400;
    font-weight: 600;
}

.service-details .rating {
    color: #888888;
    font-size: 0.9rem;
}

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

.package-column {
    background-color: #2a2a2a;
    border: 1px solid #3a3a3a;
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.package-column:hover {
    transform: translateY(-5px);
    border-color: #98d400;
}

.package-column.featured {
    border-color: #98d400;
    background-color: #1a2a1a;
    transform: scale(1.05);
}

.package-column.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.package-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #98d400;
    color: #0a0a0a;
    padding: 0.5rem 1rem;
    border-radius: 0 0 8px 8px;
    font-size: 0.8rem;
    font-weight: 600;
}

.package-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #3a3a3a;
}

.package-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #98d400;
    margin: 1rem 0;
}

.package-content {
    margin-bottom: 2rem;
}

.package-features {
    list-style: none;
    margin-bottom: 1rem;
}

.package-features li {
    padding: 0.5rem 0;
    color: #cccccc;
    border-bottom: 1px solid #3a3a3a;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-description {
    font-size: 0.9rem;
    color: #888888;
    font-style: italic;
}

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

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-number {
    background-color: #98d400;
    color: #0a0a0a;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: #98d400;
    margin-bottom: 0.5rem;
}

/* Contact Page Specific Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

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

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background-color: #2a2a2a;
    border-radius: 12px;
    border: 1px solid #3a3a3a;
}

.contact-icon {
    color: #98d400;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.contact-detail-content h4 {
    color: #98d400;
    margin-bottom: 0.5rem;
}

.contact-detail-content p {
    color: #cccccc;
    margin: 0;
}

.contact-detail-content a {
    color: #cccccc;
}

.contact-detail-content a:hover {
    color: #98d400;
}

.quick-contact {
    background-color: #2a2a2a;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #3a3a3a;
    text-align: center;
}

.quick-contact h4 {
    color: #98d400;
    margin-bottom: 1rem;
}

.quick-contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.contact-form-section {
    background-color: #2a2a2a;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #3a3a3a;
}

.contact-form-header {
    margin-bottom: 2rem;
}

.contact-form-header h3 {
    color: #98d400;
    margin-bottom: 0.5rem;
}

.office-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.office-details h3 {
    color: #98d400;
    margin-bottom: 1rem;
}

.office-address,
.office-contact,
.directions {
    margin-bottom: 2rem;
}

.directions h4 {
    color: #98d400;
    margin-bottom: 1rem;
}

.map-placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #2a2a2a;
    border-radius: 12px;
    border: 1px solid #3a3a3a;
    min-height: 300px;
}

.map-svg {
    max-width: 100%;
    height: auto;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #2a2a2a;
    border: 1px solid #3a3a3a;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #1a1a1a;
}

.faq-question h4 {
    color: #ffffff;
    margin: 0;
}

.faq-toggle {
    color: #98d400;
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

/* Thanks Page Specific Styles */
.thanks-section {
    padding: 120px 0 80px;
}

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

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-text h1 {
    font-size: 3rem;
    color: #98d400;
    margin-bottom: 1rem;
}

.thanks-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 2rem;
}

.submission-details {
    background-color: #2a2a2a;
    border: 1px solid #3a3a3a;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: left;
}

.submission-details h3 {
    color: #98d400;
    margin-bottom: 1rem;
    text-align: center;
}

.submission-info p {
    margin-bottom: 0.5rem;
    color: #cccccc;
}

.submission-info strong {
    color: #98d400;
}

.next-steps {
    margin: 3rem 0;
}

.next-steps h3 {
    color: #98d400;
    margin-bottom: 2rem;
}

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

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background-color: #2a2a2a;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #3a3a3a;
}

.contact-urgent {
    background-color: #2a2a2a;
    border: 1px solid #3a3a3a;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.contact-urgent h3 {
    color: #98d400;
    margin-bottom: 1rem;
}

.urgent-contact {
    margin-top: 1rem;
}

.contact-hours {
    color: #888888;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

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

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

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

.info-item {
    background-color: #2a2a2a;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #3a3a3a;
}

.info-item h4 {
    color: #98d400;
    margin-bottom: 1rem;
}

/* Cookie Policy Specific Styles */
.cookie-table {
    background-color: #2a2a2a;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #98d400;
    margin: 1rem 0;
}

.cookie-table h4 {
    color: #98d400;
    margin-bottom: 1rem;
}

.cookie-table ul {
    margin: 0;
}

.browser-instructions {
    background-color: #2a2a2a;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.browser-instructions h4 {
    color: #98d400;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
}

.browser-instructions h4:first-child {
    margin-top: 0;
}

.browser-instructions p {
    color: #cccccc;
    margin-bottom: 0.5rem;
    font-family: monospace;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        transition: left 0.3s ease;
        padding: 2rem;
    }

    .nav-menu.active {
        left: 0;
    }

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

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(4px, 4px);
    }

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

    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

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

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

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .company-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

    .office-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

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

    .packages-comparison {
        grid-template-columns: 1fr;
    }

    .package-column.featured {
        transform: none;
    }

    .package-column.featured:hover {
        transform: translateY(-5px);
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .action-buttons {
        flex-direction: column;
        align-items: center;
    }

    .quick-contact-buttons {
        flex-direction: column;
    }

    .mission-values-grid {
        grid-template-columns: 1fr;
    }

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

    .steps-grid {
        grid-template-columns: 1fr;
    }
}

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

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

    .hero-content p {
        font-size: 1.1rem;
    }

    .section {
        padding: 60px 0;
    }

    .page-hero {
        padding: 100px 0 60px;
    }

    .packages-grid,
    .services-grid,
    .team-grid,
    .achievements-grid,
    .reviews-grid,
    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
    body {
        word-break: break-word;
    }
    [class*="-grid"], .specialized-services {
        grid-template-columns: 1fr;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .cookie-banner,
    .cookie-modal,
    .btn {
        display: none !important;
    }

    body {
        background-color: white !important;
        color: black !important;
    }

    .section {
        page-break-inside: avoid;
    }
}
