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

html {
    scroll-behavior: smooth;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.4;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #95d611;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #7bb80f;
}

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

.btn-primary {
    background-color: #95d611;
    color: #0a0a0a;
}

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

.btn-secondary {
    background-color: #333333;
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #444444;
    color: #ffffff;
}

.btn-outline {
    background-color: transparent;
    color: #95d611;
    border: 2px solid #95d611;
}

.btn-outline:hover {
    background-color: #95d611;
    color: #0a0a0a;
}

/* Header */
.header {
    background-color: #111111;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid #333333;
}

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

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

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

.nav-menu a {
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #95d611;
}

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

.burger-menu span {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 3px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Banner */
.banner {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

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

.banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.section:nth-child(even) {
    background-color: #111111;
}

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

.section-header img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

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

.company-text {
    font-size: 1.1rem;
}

.company-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background-color: #222222;
    border-radius: 12px;
    border: 1px solid #333333;
}

.stat h3 {
    font-size: 2.5rem;
    color: #95d611;
    margin-bottom: 0.5rem;
}

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

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

.advantage-card {
    background-color: #222222;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #333333;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
    border-color: #95d611;
}

.advantage-card h3 {
    color: #95d611;
    margin-bottom: 1rem;
}

/* Services Section */
.services-tabs {
    max-width: 800px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tab-button {
    background-color: #333333;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.tab-button.active,
.tab-button:hover {
    background-color: #95d611;
    color: #0a0a0a;
}

.tab-panel {
    display: none;
    background-color: #222222;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #333333;
}

.tab-panel.active {
    display: block;
}

.service-details {
    text-align: center;
}

.service-details img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

.service-details h3 {
    color: #95d611;
    margin-bottom: 1rem;
}

.service-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
}

.rating {
    color: #95d611;
    font-weight: 600;
}

.price {
    color: #cccccc;
    font-weight: 600;
}

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

.tool-card {
    background-color: #222222;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #333333;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.tool-card:hover {
    transform: translateY(-5px);
    border-color: #95d611;
}

.tool-card h3 {
    color: #95d611;
    margin-bottom: 1rem;
}

.tool-card .btn {
    margin-top: 1rem;
}

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

.review-card {
    background-color: #222222;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #333333;
    border-left: 4px solid #95d611;
}

.review-rating {
    color: #95d611;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-author {
    color: #cccccc;
    font-style: italic;
    margin-top: 1rem;
}

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

.achievement-card {
    background-color: #222222;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #333333;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-5px);
    border-color: #95d611;
}

.achievement-card h3 {
    color: #95d611;
    margin-bottom: 1rem;
}

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

.contact-info h3 {
    color: #95d611;
    margin-bottom: 1.5rem;
}

.contact-item {
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.contact-item strong {
    color: #95d611;
}

.contact-form {
    background-color: #222222;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #333333;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #333333;
    border-radius: 8px;
    background-color: #111111;
    color: #ffffff;
    font-size: 1rem;
}

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

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background-color: #111111;
    padding: 2rem 0;
    border-top: 1px solid #333333;
}

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

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

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

.footer-links a:hover {
    color: #95d611;
}

.footer-copy {
    color: #cccccc;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #111111;
    border-top: 1px solid #333333;
    padding: 1rem;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

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

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

.cookie-buttons .btn {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* Legal Pages */
.legal-page {
    padding-top: 100px;
    min-height: 100vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.legal-content h1 {
    color: #95d611;
    margin-bottom: 2rem;
}

.legal-content h2 {
    color: #95d611;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    color: #ffffff;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.legal-section {
    margin-bottom: 2rem;
}

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

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

.last-updated {
    color: #cccccc;
    font-style: italic;
    margin-bottom: 2rem;
}

address {
    font-style: normal;
    background-color: #222222;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #333333;
    margin: 1rem 0;
}

/* Cookie Table */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

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

.cookie-table th {
    background-color: #222222;
    color: #95d611;
    font-weight: 600;
}

.cookie-table tr:hover {
    background-color: #222222;
}

.cookie-settings {
    margin: 1rem 0;
}

/* Thanks Page */
.main-content {
    padding-top: 100px;
    min-height: 100vh;
}

.thanks-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
}

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

.thanks-content h1 {
    color: #95d611;
    margin-bottom: 1rem;
}

.personal-message {
    background-color: #222222;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #333333;
    margin: 1.5rem 0;
    color: #95d611;
}

.next-steps {
    text-align: left;
    background-color: #222222;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #333333;
    margin: 2rem 0;
}

.next-steps h3 {
    color: #95d611;
    margin-bottom: 1rem;
}

.next-steps ul {
    margin-left: 1.5rem;
}

.next-steps li {
    margin-bottom: 0.5rem;
}

.contact-reminder {
    background-color: #222222;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #333333;
    margin: 2rem 0;
}

.contact-reminder h3 {
    color: #95d611;
    margin-bottom: 1rem;
}

.contact-reminder a {
    color: #95d611;
    font-weight: 600;
}

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

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

.animate-fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}
