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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #e5e5e5;
    background-color: #0a0a0a;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(245, 186, 10, 0.2);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #f5ba0a;
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-logo img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

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

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

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

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

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

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

.bar {
    width: 25px;
    height: 3px;
    background-color: #e5e5e5;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

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

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

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #f5ba0a, #f50a54);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #b0b0b0;
}

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

.btn-primary {
    background: linear-gradient(135deg, #f5ba0a, #f50a54);
    color: #0a0a0a;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(245, 186, 10, 0.3);
}

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

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

.btn-tertiary {
    background-color: transparent;
    color: #e5e5e5;
    border: 2px solid #404040;
}

.btn-tertiary:hover {
    background-color: #404040;
    color: #e5e5e5;
}

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

.section-dark {
    background-color: #111111;
}

.section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #f5ba0a;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 120px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #f5ba0a, #f50a54);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-header p {
    font-size: 1.2rem;
    color: #b0b0b0;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
}

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

.advantage-item {
    text-align: center;
    padding: 30px 20px;
    background-color: rgba(245, 186, 10, 0.05);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

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

.advantage-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.advantage-item h3 {
    color: #f5ba0a;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.service-item {
    background-color: rgba(245, 186, 10, 0.05);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.service-item:hover {
    transform: translateY(-5px);
    border-color: #f5ba0a;
}

.service-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.service-item h3 {
    color: #f5ba0a;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.service-item p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.price {
    font-size: 1.2rem;
    font-weight: 600;
    color: #f50a54;
}

.services-cta {
    text-align: center;
}

/* Service Details */
.services-catalog {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-detail {
    background-color: rgba(245, 186, 10, 0.05);
    border-radius: 15px;
    padding: 40px;
    border: 2px solid rgba(245, 186, 10, 0.1);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.service-header img {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
}

.service-info h2 {
    color: #f5ba0a;
    font-size: 2rem;
    margin-bottom: 10px;
    text-align: left;
}

.service-rating {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.rating-stars {
    display: flex;
    gap: 2px;
}

.rating-stars img {
    width: 20px;
    height: 20px;
}

.rating-text {
    color: #b0b0b0;
    font-size: 0.9rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f50a54;
}

.service-description h3 {
    color: #f5ba0a;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.service-description h4 {
    color: #f5ba0a;
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.service-description ul {
    list-style: none;
    margin-bottom: 20px;
}

.service-description li {
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

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

.service-note {
    background-color: rgba(245, 186, 10, 0.1);
    padding: 15px;
    border-radius: 5px;
    border-left: 4px solid #f5ba0a;
    font-style: italic;
    margin-top: 20px;
}

/* Additional Services */
.additional-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.additional-service {
    text-align: center;
    padding: 30px 20px;
}

.additional-service h3 {
    color: #f5ba0a;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.team-member {
    background-color: rgba(245, 186, 10, 0.05);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.team-member img {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
}

.team-member h3 {
    color: #f5ba0a;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.role {
    color: #f50a54;
    font-weight: 600;
    margin-bottom: 5px;
}

.experience {
    color: #b0b0b0;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

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

.achievement-item {
    text-align: center;
    padding: 30px 20px;
}

.achievement-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.achievement-item h3 {
    font-size: 2.5rem;
    color: #f5ba0a;
    margin-bottom: 10px;
    font-weight: 700;
}

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

.review-item {
    background-color: rgba(245, 186, 10, 0.05);
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #f5ba0a;
}

.review-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 15px;
}

.review-stars img {
    width: 20px;
    height: 20px;
}

.review-item p {
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.6;
}

.review-author {
    color: #f5ba0a;
    font-weight: 600;
}

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

.contact-info h3 {
    color: #f5ba0a;
    margin-bottom: 30px;
    font-size: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-item img {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}

.contact-item span {
    line-height: 1.5;
}

/* Contact Page */
.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-section h2 {
    color: #f5ba0a;
    margin-bottom: 30px;
    font-size: 2rem;
    text-align: left;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-details .contact-item {
    margin-bottom: 30px;
}

.contact-details .contact-item h3 {
    color: #f5ba0a;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.contact-details .contact-item span {
    display: block;
    color: #b0b0b0;
    font-size: 0.9rem;
    margin-top: 5px;
}

.business-hours {
    margin-bottom: 40px;
}

.business-hours h3 {
    color: #f5ba0a;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.hours-list {
    background-color: rgba(245, 186, 10, 0.05);
    padding: 20px;
    border-radius: 10px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(245, 186, 10, 0.1);
}

.hours-item:last-child {
    border-bottom: none;
}

.social-section h3 {
    color: #f5ba0a;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.social-section .social-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #e5e5e5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-section .social-links a:hover {
    color: #f5ba0a;
}

.social-section .social-links img {
    width: 25px;
    height: 25px;
}

/* Forms */
.contact-form {
    background-color: rgba(245, 186, 10, 0.05);
    padding: 40px;
    border-radius: 15px;
    border: 2px solid rgba(245, 186, 10, 0.1);
    margin-bottom: 30px;
}

.contact-form h2,
.contact-form h3 {
    color: #f5ba0a;
    margin-bottom: 15px;
    text-align: left;
}

.contact-form p {
    margin-bottom: 25px;
    color: #b0b0b0;
}

.form-group {
    margin-bottom: 20px;
}
option {
    background-color: #1a1a1a;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #f5ba0a;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(245, 186, 10, 0.2);
    border-radius: 5px;
    color: #e5e5e5;
    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: #f5ba0a;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666;
}

/* Emergency Contact */
.emergency-contact {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.emergency-contact h2 {
    margin-bottom: 20px;
}

.emergency-contact p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.emergency-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background-color: rgba(245, 10, 84, 0.1);
    padding: 30px;
    border-radius: 10px;
    border: 2px solid #f50a54;
}

.emergency-info img {
    width: 50px;
    height: 50px;
}

.emergency-info h3 {
    color: #f50a54;
    margin-bottom: 5px;
}

.emergency-phone {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f50a54;
    margin-bottom: 5px;
}

.emergency-info span {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Qualifications */
.qualifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.qualification-item {
    text-align: center;
    padding: 30px 20px;
    background-color: rgba(245, 186, 10, 0.05);
    border-radius: 10px;
}

.qualification-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.qualification-item h3 {
    color: #f5ba0a;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* Philosophy */
.philosophy-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.philosophy-item {
    text-align: center;
    padding: 30px;
    background-color: rgba(245, 186, 10, 0.05);
    border-radius: 10px;
}

.philosophy-item h3 {
    color: #f5ba0a;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* Company Story */
.company-story {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.story-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.story-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
}

/* CTA Section */
.cta-section {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-section h2 {
    margin-bottom: 20px;
}

.cta-section p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Thank You Page */
.thank-you-section {
    padding: 120px 0 80px;
    text-align: center;
}

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

.thank-you-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
}

.thank-you-content h1 {
    font-size: 2.5rem;
    color: #f5ba0a;
    margin-bottom: 20px;
}

.thank-you-message {
    font-size: 1.2rem;
    margin-bottom: 50px;
    color: #b0b0b0;
}

.thank-you-details {
    margin-bottom: 50px;
}

.thank-you-details h2 {
    margin-bottom: 30px;
    font-size: 2rem;
    text-align: center;
}

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

.step {
    background-color: rgba(245, 186, 10, 0.05);
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
}

.step img {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.step h3 {
    color: #f5ba0a;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.step p {
    font-size: 0.95rem;
    line-height: 1.5;
}

.thank-you-info {
    background-color: rgba(245, 10, 84, 0.1);
    padding: 30px;
    border-radius: 10px;
    border: 2px solid #f50a54;
    margin-bottom: 40px;
}

.thank-you-info h2 {
    color: #f50a54;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.thank-you-info p {
    margin-bottom: 20px;
}

.urgent-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.urgent-contact img {
    width: 30px;
    height: 30px;
}

.urgent-contact strong {
    font-size: 1.3rem;
    color: #f50a54;
    display: block;
}

.urgent-contact span {
    color: #b0b0b0;
    font-size: 0.9rem;
}

.thank-you-actions {
    margin-bottom: 50px;
}

.thank-you-actions .btn {
    margin: 0 10px;
}

.thank-you-testimonial {
    background-color: rgba(245, 186, 10, 0.05);
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #f5ba0a;
}

.thank-you-testimonial blockquote {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.thank-you-testimonial cite {
    color: #f5ba0a;
    font-weight: 600;
}

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

.waiting-item {
    text-align: center;
    padding: 30px 20px;
}

.waiting-item h3 {
    color: #f5ba0a;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.waiting-item p {
    margin-bottom: 20px;
}

/* Legal Content */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-content h2 {
    color: #f5ba0a;
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.8rem;
    text-align: left;
}

.legal-content h3 {
    color: #f5ba0a;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.legal-content h4 {
    color: #f5ba0a;
    margin-top: 25px;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

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

.legal-content ul,
.legal-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-content li {
    margin-bottom: 5px;
}

.legal-content address {
    background-color: rgba(245, 186, 10, 0.05);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #f5ba0a;
    font-style: normal;
    margin: 20px 0;
}

/* Cookie Tables */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background-color: rgba(245, 186, 10, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.cookie-table th,
.cookie-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid rgba(245, 186, 10, 0.1);
}

.cookie-table th {
    background-color: rgba(245, 186, 10, 0.1);
    color: #f5ba0a;
    font-weight: 600;
}

.cookie-table tbody tr:last-child td {
    border-bottom: none;
}

/* Cookie Settings */
.cookie-settings-section {
    background-color: rgba(245, 186, 10, 0.05);
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
}

.cookie-category {
    margin-bottom: 20px;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 5px;
}

.cookie-category label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    margin-bottom: 5px;
}

.cookie-category input[type="checkbox"] {
    margin-right: 10px;
    transform: scale(1.2);
}

.cookie-category p {
    margin-left: 30px;
    font-size: 0.9rem;
    color: #b0b0b0;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

/* Footer */
.footer {
    background-color: #050505;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(245, 186, 10, 0.2);
}

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

.footer-section h3,
.footer-section h4 {
    color: #f5ba0a;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-section p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #f5ba0a;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.1);
}

.social-links img {
    width: 30px;
    height: 30px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(245, 186, 10, 0.1);
}

.footer-bottom p {
    color: #666;
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px;
    z-index: 2000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    border-top: 2px solid #f5ba0a;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    color: #e5e5e5;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

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

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal.show {
    display: block;
}

.modal-content {
    background-color: #1a1a1a;
    margin: 5% auto;
    padding: 40px;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    position: relative;
    border: 2px solid #f5ba0a;
}

.close {
    color: #f5ba0a;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.close:hover {
    color: #f50a54;
}

.modal-content h2 {
    color: #f5ba0a;
    margin-bottom: 30px;
    text-align: center;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 20px 0;
        border-top: 1px solid rgba(245, 186, 10, 0.2);
    }

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

    .nav-menu a {
        padding: 15px;
        display: block;
    }

    .nav-toggle {
        display: flex;
    }

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

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

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

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

    .about-grid,
    .contact-grid,
    .contact-page-grid,
    .company-story {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-header {
        flex-direction: column;
        text-align: center;
    }

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

    .service-info h2 {
        text-align: center;
    }

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

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

    .modal-content {
        margin: 10% auto;
        padding: 20px;
    }

    .emergency-info {
        flex-direction: column;
        text-align: center;
    }

    .urgent-contact {
        flex-direction: column;
    }

    .thank-you-actions .btn {
        display: block;
        margin: 10px 0;
    }

    .btn {
        padding: 15px 25px;
        font-size: 1rem;
    }

    .section {
        padding: 60px 0;
    }

    .page-header {
        padding: 100px 0 40px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .section h2 {
        font-size: 2rem;
    }
}

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

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

    .service-detail {
        padding: 20px;
    }

    .contact-form {
        padding: 20px;
    }

    .modal-content {
        padding: 15px;
    }

    .advantages-grid,
    .services-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    body {
        word-break: break-word;
    }
    [class*="-grid"] {
        grid-template-columns: 1fr;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

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

/* Focus styles for accessibility */
button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid #f5ba0a;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .navbar,
    .footer,
    .cookie-banner,
    .modal {
        display: none;
    }
    
    body {
        color: #000;
        background: #fff;
    }
    
    .section {
        page-break-inside: avoid;
    }
}
