
.form-input.error,
.contact-form input.error,
.contact-form textarea.error,
input.error,
textarea.error {
    border-color: rgba(231, 76, 60, 0.6) !important;
    background: linear-gradient(145deg, rgba(231, 76, 60, 0.1), rgba(231, 76, 60, 0.05)) !important;
    box-shadow: 
        0 8px 32px rgba(231, 76, 60, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
    animation: error-shake 0.4s ease-in-out;
}

.form-input.success,
.contact-form input.success,
.contact-form textarea.success,
input.success,
textarea.success {
    border-color: rgba(46, 204, 113, 0.6) !important;
    background: linear-gradient(145deg, rgba(46, 204, 113, 0.1), rgba(46, 204, 113, 0.05)) !important;
    box-shadow: 
        0 8px 32px rgba(46, 204, 113, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
    animation: success-glow 0.6s ease-out;
}


.field-error-message {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 5px;
    display: block;
    line-height: 1.3;
    font-weight: 500;
}

.btn:disabled,
.btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
    position: relative;
}

.btn:disabled:hover,
.btn.loading:hover {
    transform: none !important;
    box-shadow: none !important;
}

.btn.loading::after {
    content: '';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: button-spin 1s linear infinite;
}

@keyframes button-spin {
    0% { transform: translateY(-50%) rotate(0deg); }
    100% { transform: translateY(-50%) rotate(360deg); }
}

.form-input:focus,
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 0 20px rgba(52, 152, 219, 0.3);
    outline: none !important;
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #2c3e50;
}

@media (max-width: 768px) {
    .field-error-message {
        font-size: 0.8rem;
    }
    
    .btn.loading::after {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 480px) {
    .field-error-message {
        font-size: 0.75rem;
    }
    
    .btn.loading::after {
        width: 12px;
        height: 12px;
        right: 8px;
    }
}

input[aria-invalid="true"],
textarea[aria-invalid="true"] {
    border-color: #e74c3c;
    animation: shake 0.3s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    50% { transform: translateX(5px); }
    75% { transform: translateX(-5px); }
}

.field-shake {
    animation: shake 0.3s ease-in-out;
}

@keyframes success-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(46, 204, 113, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
    }
}

.field-success {
    animation: success-pulse 0.6s ease-out;
}

.newsletter-form .form-group,
.contact-form .form-group {
    margin-bottom: 20px;
}

.newsletter-form input,
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: #fff;
}

.newsletter-form input::placeholder,
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.form-submitting {
    pointer-events: none;
    opacity: 0.7;
}

.form-success {
    border-color: #10b981 !important;
}

.form-error {
    border-color: #ef4444 !important;
    animation: shake 0.3s ease-in-out;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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


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

h1 {
    font-size: 2.5rem;
    color: #2c3e50;
}

h2 {
    font-size: 2rem;
    color: #34495e;
}

h3 {
    font-size: 1.5rem;
    color: #34495e;
}

h4 {
    font-size: 1.25rem;
    color: #34495e;
}

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

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
    min-width: 140px;
    white-space: nowrap;
    line-height: 1.2;
    box-sizing: border-box;
}

.btn-primary {
    background-color: #3498db;
    color: white;
    border-color: #3498db;
}

.btn-primary:hover {
    background-color: #2980b9;
    border-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

.btn-secondary {
    background-color: #95a5a6;
    color: white;
    border-color: #95a5a6;
}

.btn-secondary:hover {
    background-color: #7f8c8d;
    border-color: #7f8c8d;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: #3498db;
    border-color: #3498db;
}

.btn-outline:hover {
    background-color: #3498db;
    color: white;
    transform: translateY(-2px);
}

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

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    border-top: 1px solid #e0e0e0;
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    border-radius: 20px 20px 0 0;
}

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

.cookie-content h4 {
    margin-bottom: 8px;
    color: #2c3e50;
}

.cookie-content p {
    margin-bottom: 16px;
    font-size: 0.9rem;
}

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

.cookie-buttons .btn {
    padding: 8px 16px;
    font-size: 0.9rem;
}
.cookie-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.cookie-modal-content {
    background-color: white;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.cookie-modal-overlay.show .cookie-modal-content {
    transform: translateY(0);
}

.cookie-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.cookie-modal-header h3 {
    margin: 0;
    color: #2c3e50;
    font-size: 1.5rem;
}

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #95a5a6;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.cookie-modal-close:hover {
    background-color: #f8f9fa;
    color: #2c3e50;
}

.cookie-modal-body {
    padding: 20px 30px;
    overflow-y: auto;
    flex: 1;
}

.cookie-modal-description {
    margin-bottom: 25px;
    color: #666;
    line-height: 1.6;
}

.cookie-categories {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cookie-category {
    background-color: #f8f9fa;
    border-radius: 15px;
    padding: 20px;
    border: 1px solid #e9ecef;
}

.cookie-category-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.cookie-category-info {
    flex: 1;
}

.cookie-category-info h4 {
    margin: 0 0 8px 0;
    color: #2c3e50;
    font-size: 1.1rem;
}

.cookie-category-info p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-toggle {
    flex-shrink: 0;
}

.cookie-toggle input[type="checkbox"] {
    display: none;
}

.toggle-label {
    display: block;
    width: 50px;
    height: 26px;
    background-color: #bdc3c7;
    border-radius: 13px;
    position: relative;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.toggle-label.disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

.toggle-slider {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 22px;
    height: 22px;
    background-color: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

input[type="checkbox"]:checked + .toggle-label {
    background-color: #3498db;
}

input[type="checkbox"]:checked + .toggle-label .toggle-slider {
    transform: translateX(24px);
}

input[type="checkbox"]:disabled + .toggle-label {
    background-color: #3498db;
    opacity: 0.6;
}

.cookie-modal-footer {
    padding: 20px 30px 25px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.cookie-modal-footer .btn {
    min-width: 120px;
}


.main-header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 80px;
}

.navbar {
    height: 80px;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.nav-brand .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #2c3e50;
    font-weight: 600;
    font-size: 1.2rem;
}

.nav-brand .logo img {
    height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
}

.nav-list {
    display: flex;
    gap: 30px;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 10px 15px;
    border-radius: 8px;
}

.nav-link:hover,
.nav-link.active {
    color: #3498db;
    background-color: #f8f9fa;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 250px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    margin: 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 12px 20px;
    color: #2c3e50;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-link:hover {
    background-color: #f8f9fa;
    color: #3498db;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    position: relative;
    z-index: 1001;
    outline: none;
    transition: background-color 0.3s ease;
}

.mobile-menu-toggle:hover {
    background-color: rgba(44, 62, 80, 0.1);
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
    transform-origin: center;
    display: block;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translateY(9px);
    background-color: #3498db;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translateY(-9px);
    background-color: #3498db;
}

.hero {
    padding: 160px 0 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.hero-cta {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
}

.services-overview {
    padding: 80px 0;
    background-color: white;
}

.services-overview h2 {
    text-align: center;
    margin-bottom: 12px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background-color: white;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    overflow: hidden;
}

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

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 0;
}

.service-card h3 {
    margin: 20px 30px 15px;
    color: #2c3e50;
}

.service-card p {
    margin: 0 30px 25px;
    color: #666;
    line-height: 1.6;
}

.service-card .btn {
    margin-bottom: 30px;
}

.why-choose-us {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.why-choose-us h2 {
    text-align: center;
    margin-bottom: 50px;
}

.content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.benefits-list {
    margin-top: 0;
}

.benefit {
    margin-bottom: 30px;
    padding: 20px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.benefit h4 {
    color: #3498db;
    margin-bottom: 8px;
}

.benefit p {
    margin-bottom: 0;
    color: #666;
}

.content-image {
    text-align: center;
}

.content-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
}

.process-overview {
    padding: 80px 0;
    background-color: white;
}

.process-overview h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

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

.step-number {
    width: 60px;
    height: 60px;
    background-color: #3498db;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h4 {
    margin-bottom: 15px;
    color: #2c3e50;
}

.step p {
    color: #666;
    line-height: 1.6;
}
.technical-advantage {
    padding: 80px 0;
    background-color: white;
}

.technical-advantage .content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.advantages-list {
    margin-top: 30px;
}

.advantages-list ul {
    list-style: none;
    margin: 20px 0;
}

.advantages-list li {
    padding: 20px;
    margin-bottom: 20px;
    background-color: #f8f9fa;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #3498db;
}

.advantages-list li strong {
    color: #2c3e50;
    display: block;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.advantages-list li {
    color: #666;
    line-height: 1.6;
}
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.main-footer {
    background-color: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

.newsletter-section {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid #34495e;
}

.newsletter-section h3 {
    color: white;
    margin-bottom: 12px;
}

.newsletter-section p {
    color: #bdc3c7;
    margin-bottom: 30px;
}

.newsletter-form .form-group {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.form-input {
    padding: 16px 24px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    flex: 1;
    min-width: 200px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.1));
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.form-input::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.form-input:hover::before {
    left: 100%;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    font-style: italic;
}

.form-input:focus {
    outline: none;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.15));
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 0 20px rgba(52, 152, 219, 0.3);
    transform: translateY(-2px);
}

.form-input:hover {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 10px 35px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
}

.newsletter-form .form-group {
    animation: newsletter-form-appear 0.8s ease-out;
}

@keyframes newsletter-form-appear {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-input.error {
    border-color: rgba(231, 76, 60, 0.6) !important;
    background: linear-gradient(145deg, rgba(231, 76, 60, 0.1), rgba(231, 76, 60, 0.05)) !important;
    box-shadow: 
        0 8px 32px rgba(231, 76, 60, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
    animation: error-shake 0.4s ease-in-out;
}

.form-input.success {
    border-color: rgba(46, 204, 113, 0.6) !important;
    background: linear-gradient(145deg, rgba(46, 204, 113, 0.1), rgba(46, 204, 113, 0.05)) !important;
    box-shadow: 
        0 8px 32px rgba(46, 204, 113, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
    animation: success-glow 0.6s ease-out;
}

@keyframes error-shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-8px); }
    50% { transform: translateX(8px); }
    75% { transform: translateX(-4px); }
}

@keyframes success-glow {
    0% {
        box-shadow: 
            0 8px 32px rgba(46, 204, 113, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
    50% {
        box-shadow: 
            0 12px 40px rgba(46, 204, 113, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.1),
            0 0 25px rgba(46, 204, 113, 0.3);
    }
    100% {
        box-shadow: 
            0 8px 32px rgba(46, 204, 113, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
}

.success-message {
    background-color: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.3);
    color: #2ecc71;
    padding: 15px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    color: white;
}

.footer-brand p {
    color: #bdc3c7;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.link-group h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.link-group ul {
    list-style: none;
}

.link-group li {
    margin-bottom: 8px;
}

.link-group a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.link-group a:hover {
    color: #3498db;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    color: #95a5a6;
}
.footer-bottom p {
    color: #bdc3c7;
}
.page-header {
    padding: 140px 0 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.page-header h1 {
    margin-bottom: 20px;
}

.page-header .subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.page-header img {
    max-width: 400px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 30px;
}

.service-content {
    padding: 50px 0;
    background-color: white;
}

.service-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
}

.service-content img {
    max-width: 500px;
    width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
}

.benefits-list ul,
.process-list ul {
    list-style: none;
    margin: 20px 0;
}

.benefits-list li,
.process-list li {
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 30px;
}

.benefits-list li:before,
.process-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
    font-size: 1.2rem;
}

.service-cta {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin-top: 40px;
}

.service-cta h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.service-cta p {
    margin-bottom: 25px;
    color: #666;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-member {
    text-align: center;
    padding: 30px 20px;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
}

.team-member h4 {
    margin-bottom: 8px;
    color: #2c3e50;
}

.team-member .role {
    color: #3498db;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.about-content img {
    max-width: 500px;
    width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    position: relative;
}

.testimonial-quote {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

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

.author-info h4 {
    margin-bottom: 4px;
    color: #2c3e50;
    font-size: 1rem;
}

.author-info .company {
    color: #3498db;
    font-size: 0.9rem;
    font-weight: 600;
}

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

.faq-item {
    background-color: white;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    padding: 25px 30px;
    background-color: #f8f9fa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    user-select: none; 
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    min-height: 44px; 
}

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

.faq-question h3 {
    margin: 0;
    color: #2c3e50;
    font-size: 1.1rem;
    flex: 1;
    padding-right: 15px; 
}

.faq-toggle {
    font-size: 1.5rem;
    color: #3498db;
    transition: transform 0.4s ease;
    line-height: 1;
    min-width: 24px; 
    text-align: center;
}

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

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
    padding: 25px 30px;
    max-height: 500px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form {
    background-color: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
    background-color: white;
}

.contact-form select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
    background-color: white;
    appearance: none; 
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #3498db;
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}
.contact-form button[type="submit"] {
    display: block;
    margin: 30px auto 0;
    text-align: center;
}

.contact-info h3 {
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-info p {
    margin-bottom: 15px;
    color: #666;
    line-height: 1.6;
}

.contact-email {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 15px;
    margin-top: 30px;
}

.contact-email h4 {
    margin-bottom: 10px;
    color: #2c3e50;
}

.contact-email a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-email a:hover {
    text-decoration: underline;
}
.company-values {
    margin-top: 60px;
    padding: 60px 0;
    background-color: #f8f9fa;
    border-radius: 20px;
    margin-bottom: 40px;
}

.company-values h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #2c3e50;
}

.company-values > p {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
    color: #666;
    font-size: 1.1rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-item {
    background-color: white;
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.value-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 20px;
    line-height: 1;
}

.value-item h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.value-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.legal-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-size: 1.5rem;
}

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

.legal-content ul {
    margin: 15px 0;
    padding-left: 30px;
}

.legal-content li {
    margin-bottom: 8px;
    color: #666;
    line-height: 1.6;
}

.legal-content a {
    color: #3498db;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.error-404 {
    text-align: center;
    padding: 100px 0;
}

.error-404 h1 {
    font-size: 6rem;
    color: #3498db;
    margin-bottom: 20px;
}

.error-404 h2 {
    margin-bottom: 20px;
    color: #2c3e50;
}

.error-404 p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #666;
}

@media (max-width: 1200px) {
    .container {
        max-width: 1024px;
    }
    
    .hero {
        padding: 150px 0 70px 0;
    }
    
    .services-overview,
    .why-choose-us,
    .process-overview,
    .technical-advantage {
        padding: 70px 0;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    

    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .values-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
  
    .process-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-links {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

@media (max-width: 1024px) {
  
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: white;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-list {
        flex-direction: column;
        padding: 20px 0;
        gap: 0;
    }
    
    .nav-item {
        width: 100%;
        text-align: left;
    }
    
    .nav-link {
        display: block;
        padding: 15px 20px;
        border-radius: 0;
        font-size: 1.1rem;
        background-color: transparent;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background-color: #f8f9fa;
        color: #3498db;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: #f8f9fa;
        margin: 0 20px;
        border-radius: 15px;
        margin-top: 0;
        padding: 10px 0;
        display: none;
    }
    
    .dropdown:hover .dropdown-menu,
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-link {
        padding: 12px 20px;
        font-size: 1rem;
        color: #2c3e50;
    }
    
    .dropdown-link:hover {
        background-color: #e9ecef;
        color: #3498db;
    }
   
    .container {
        padding: 0 20px;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding-top: 40px; 
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .service-card {
        padding: 35px 25px;
    }
    
    .content-split {
        gap: 50px;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 2fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .contact-content {
        grid-template-columns: 3fr 2fr;
        gap: 50px;
    }
    
    .contact-form {
        padding: 40px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .technical-advantage .content-split {
        gap: 50px;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.9rem;
    }
    
    .page-header {
        padding: 140px 0 50px 0;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .page-header .subtitle {
        font-size: 1.15rem;
    }
    
    .legal-content {
        padding: 35px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: white;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-list {
        flex-direction: column;
        padding: 20px 0;
        gap: 0;
    }
    
    .nav-item {
        width: 100%;
        text-align: left;
    }
    
    .nav-link {
        display: block;
        padding: 15px 20px;
        border-radius: 0;
        background-color: transparent;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background-color: #f8f9fa;
        color: #3498db;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: #f8f9fa;
        margin: 0 20px;
        border-radius: 15px;
        padding: 10px 0;
        display: none;
    }
    
    .dropdown:hover .dropdown-menu,
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    
    .hero-cta {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .service-card {
        padding: 30px 20px;
    }
    
    .content-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .newsletter-form .form-group {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .form-input {
        width: 100%;
        max-width: 300px;
        font-size: 1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 25px;
    }
    
    .cookie-buttons {
        justify-content: center;
        gap: 10px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    .cookie-buttons .btn {
        padding: 10px 16px;
        font-size: 0.9rem;
        min-width: 100px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .technical-advantage .content-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .advantages-list li {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .legal-content {
        padding: 25px 20px;
    }
    
    .page-header {
        padding: 140px 0 50px 0;
    }
    
    .page-header h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .page-header .subtitle {
        font-size: 1rem;
    }
    
    .contact-form {
        padding: 25px 20px;
    }
    
    .service-content {
        padding: 30px 0;
    }
    
    .step {
        padding: 25px 20px;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .team-member {
        padding: 25px 15px;
    }
    
    .faq-question {
        padding: 18px 16px;
        min-height: 52px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        line-height: 1.25;
    }
    
    .faq-toggle {
        font-size: 1.2rem;
        min-width: 32px;
    }
    
    .faq-answer {
        padding: 0 16px;
        max-height: 0;
        overflow: hidden;
        transition: all 0.4s ease;
    }
    
    .faq-item.active .faq-answer {
        padding: 18px 16px;
        max-height: 800px; 
    }
    
    .cta-section {
        padding: 40px 0;
    }
    
    .company-values {
        margin-top: 40px;
        padding: 40px 0;
        margin-bottom: 30px;
    }
    
    .value-item {
        padding: 25px 20px;
    }
    
    .contact-form .form-group {
        margin-bottom: 20px;
    }
    
    .contact-form label {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    
    .contact-form input,
    .contact-form textarea,
    .contact-form select {
        font-size: 16px; 
        padding: 12px 16px;
    }
    
    .newsletter-form input {
        font-size: 16px; 
    }
    
    .why-choose-us,
    .services-overview,
    .process-overview,
    .technical-advantage {
        padding: 40px 0;
        margin: 30px 0;
    }
    
    .hero-image,
    .content-image {
        margin-top: 30px;
    }
    
    .hero-image img,
    .content-image img {
        max-width: 100%;
        height: auto;
    }
    
    .page-header img {
        max-width: 300px;
    }
    
    .service-content img {
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.9rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn {
        padding: 12px 18px;
        font-size: 0.9rem;
        min-width: 110px;
    }
    
    .btn-large {
        padding: 14px 20px;
        font-size: 0.95rem;
        min-width: 140px;
    }
    
    .service-card {
        padding: 25px 15px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .legal-content {
        padding: 20px 15px;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .page-header {
        padding: 110px 0 30px 0;
    }
    
    .step {
        padding: 20px 15px;
    }
    
    .testimonial-card {
        padding: 25px 15px;
    }
    
    .team-member {
        padding: 20px 10px;
    }
    
    .faq-question {
        padding: 18px 16px;
        min-height: 52px; 
    }
    
    .faq-question h3 {
        font-size: 1rem;
        line-height: 1.25;
    }
    
    .faq-toggle {
        font-size: 1.2rem;
        min-width: 32px;
    }
    
    .faq-answer {
        padding: 0 16px;
    }
    
    .faq-item.active .faq-answer {
        max-height: 800px; 
    }
    
    .cta-section {
        padding: 30px 0;
    }
    
    .company-values {
        margin-top: 30px;
        padding: 30px 0;
        margin-bottom: 20px;
    }
    
    .value-item {
        padding: 20px 15px;
    }
    
    .hero-content h1 {
        line-height: 1.1;
    }
    
    .page-header h1 {
        font-size: 1.7rem;
    }
}

@media (max-width: 900px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.3rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .content-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
  
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
  
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
   
    .technical-advantage .content-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }
   
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 1024px) and (orientation: landscape) {
   
    .main-header {
        height: 70px;
    }
    
    .navbar {
        height: 70px;
    }
    
    .nav-brand .logo img {
        height: 50px;
    }
    
   
    .hero {
        padding: 120px 0 50px 0;
    }
    
    .page-header {
        padding: 110px 0 40px 0;
    }
    
    .services-overview,
    .why-choose-us,
    .process-overview,
    .technical-advantage,
    .cta-section {
        padding: 50px 0;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .team-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
    
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .process-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .contact-content {
        grid-template-columns: 2fr 1fr;
        gap: 40px;
    }
    
    .contact-form {
        padding: 30px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .hero {
        padding: 110px 0 70px 0;
    }
    
    .page-header {
        padding: 110px 0 50px 0; 
    }
    
    
    .hero-content h1 {
        font-size: 2.4rem;
    }
    
    .newsletter-form .form-group {
        flex-direction: row;
        max-width: 600px;
        gap: 15px;
    }
    
    .form-input {
        min-width: 250px;
    }
    
    .faq-question {
        padding: 22px 28px;
    }
    
    .faq-answer {
        padding: 22px 28px;
    }
    
    .cookie-buttons {
        justify-content: center;
        gap: 15px;
    }
    
    .cookie-buttons .btn {
        padding: 10px 20px;
        min-width: 120px;
    }
}

body.menu-open {
    overflow: hidden;
}

.form-feedback,
.form-notification {
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    max-width: 500px;
    width: 90%;
    padding: 20px 24px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    animation: slideInFeedback 0.4s ease-out;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.form-feedback.success,
.form-notification.success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.form-feedback.error,
.form-notification.error {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.form-feedback.warning,
.form-notification.warning {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
}

.form-feedback.info,
.form-notification.info {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.form-feedback .close-button,
.form-notification .close-button,
.notification-close {
    position: absolute;
    top: 8px;
    right: 12px;
    background: none !important;
    border: none !important;
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 20px !important;
    cursor: pointer !important;
    padding: 4px !important;
    line-height: 1 !important;
    border-radius: 4px !important;
    transition: all 0.2s ease !important;
    width: 24px !important;
    height: 24px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
}

.form-feedback .close-button:hover,
.form-notification .close-button:hover,
.notification-close:hover {
    color: white !important;
    background-color: rgba(255, 255, 255, 0.2) !important;
}

.notification-content {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.4;
}

.notification-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
    margin-top: 1px;
}

.notification-message {
    flex: 1;
    line-height: 1.4;
    word-wrap: break-word;
    word-break: break-word;
}

@keyframes slideInFeedback {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@media (max-width: 768px) {
    .form-feedback {
        top: 90px;
        max-width: 95%;
        padding: 16px 20px;
        font-size: 15px;
    }
}

.newsletter-form input {
    font-size: 16px; 
    padding: 14px 20px;
    border-radius: 30px;
    min-width: 150px;
    backdrop-filter: blur(8px);
    box-shadow: 
        0 6px 25px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.newsletter-form input:focus {
    transform: translateY(-1px);
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        0 0 15px rgba(52, 152, 219, 0.25);
}

.hero {
    padding: 90px 0 50px 0; 
}

.hero-content h1 {
    font-size: 1.8rem;
    line-height: 1.1;
}

