/* 
 * FinAudit - Main Stylesheet
 * Main color palette:
 * - Background gradient: #1E3C72 → #2A5298
 * - Accent 1: #FF6B35 (coral-orange)
 * - Accent 2: #A8FFF1 (mint)
 * - Text: #FAFAFA (light smoky)
 * - Buttons: gradient #FF512F → #DD2476
 * - Lines/icons: #B4E5F9 (pastel blue)
 */

/* ===== RESET & BASE STYLES ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #FAFAFA;
    background: linear-gradient(135deg, #1E3C72, #2A5298) fixed;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #A8FFF1;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #FF6B35;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    from { transform: translateX(-30px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Apply animations to elements */
section {
    animation: fadeIn 0.8s ease-out forwards;
}

.card, .step, .service-card, .example-card {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Stagger animations for multiple items */
.about-cards .card:nth-child(1) { animation-delay: 0.1s; }
.about-cards .card:nth-child(2) { animation-delay: 0.3s; }
.about-cards .card:nth-child(3) { animation-delay: 0.5s; }

.work-steps .step:nth-child(1) { animation-delay: 0.1s; }
.work-steps .step:nth-child(2) { animation-delay: 0.3s; }
.work-steps .step:nth-child(3) { animation-delay: 0.5s; }

.services-cards .service-card:nth-child(1) { animation-delay: 0.1s; }
.services-cards .service-card:nth-child(2) { animation-delay: 0.3s; }
.services-cards .service-card:nth-child(3) { animation-delay: 0.5s; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    position: relative;
    margin-bottom: 2rem;
    text-align: center;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #FF6B35;
    border-radius: 3px;
}

h3 {
    font-size: 1.5rem;
    color: #A8FFF1;
}

p {
    margin-bottom: 1rem;
}

/* ===== BUTTONS ===== */
.btn-primary, .btn-secondary, .btn-cookie {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    outline: none;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #FF512F, #DD2476);
    color: #FAFAFA;
    box-shadow: 0 4px 15px rgba(221, 36, 118, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(221, 36, 118, 0.4);
    color: #FAFAFA;
}

.btn-secondary {
    background: transparent;
    color: #A8FFF1;
    border: 2px solid #A8FFF1;
}

.btn-secondary:hover {
    background: rgba(168, 255, 241, 0.1);
    transform: translateY(-3px);
    color: #A8FFF1;
}

.btn-cookie {
    background: #A8FFF1;
    color: #1E3C72;
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-cookie:hover {
    background: #FF6B35;
    color: #FAFAFA;
}

/* ===== HEADER ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(30, 60, 114, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: inline-block;
}

.logo-svg {
    width: 150px;
    height: 40px;
}

.main-nav {
    flex: 1;
    margin: 0 20px;
}

.nav-menu {
    display: flex;
    list-style: none;
    justify-content: center;
}

.nav-menu li {
    margin: 0 15px;
}

.nav-menu a {
    color: #FAFAFA;
    font-weight: 500;
    padding: 5px 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #FF6B35;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after, .nav-menu a:focus::after {
    width: 100%;
}

.nav-highlight {
    color: #FF6B35 !important;
    font-weight: 600 !important;
}

.header-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-size: 0.9rem;
}

.phone-link, .email-link {
    color: #FAFAFA;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.phone-link:hover, .email-link:hover {
    color: #A8FFF1;
    transform: translateX(-3px);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 25px;
    position: relative;
    z-index: 1001;
    text-decoration: none;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: #FAFAFA;
    margin: 5px 0;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1010;
    background: rgba(30, 60, 114, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    padding: 15px;
    max-width: 400px;
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-content p {
    font-size: 0.9rem;
    margin: 0;
}

.cookie-banner button {
    align-self: flex-end;
}

/* ===== HERO SECTION ===== */
.hero-section {
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: -2;
    opacity: 0.4;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.85), rgba(42, 82, 152, 0.85));
    z-index: -1;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(168, 255, 241, 0.15) 0%, rgba(168, 255, 241, 0) 70%);
    z-index: -1;
}

.hero-content {
    max-width: 600px;
    text-align: center;
    margin: 0 auto;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: rgba(250, 250, 250, 0.9);
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 80px 0;
}

.about-cards {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    flex: 1;
    min-width: 250px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(180, 229, 249, 0.1);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: rgba(180, 229, 249, 0.3);
}

.card-icon {
    margin-bottom: 15px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(168, 255, 241, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #A8FFF1;
}

/* ===== WORK SECTION ===== */
.work-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.1);
}

.work-image {
    margin: 30px auto;
    max-width: 700px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.work-image img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.work-image:hover img {
    transform: scale(1.03);
}

.work-steps {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.step {
    flex: 1;
    min-width: 250px;
    position: relative;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.step::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #FF512F, #DD2476);
    border-radius: 15px 15px 0 0;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF512F, #DD2476);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    color: #FAFAFA;
    z-index: 1;
    box-shadow: 0 3px 10px rgba(221, 36, 118, 0.3);
}

.step-icon {
    margin-bottom: 15px;
    color: #A8FFF1;
    font-size: 1.5rem;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: 80px 0;
}

.services-image {
    margin: 30px auto;
    max-width: 700px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.services-image img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.services-image:hover img {
    transform: scale(1.03);
}

.services-cards {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    border: 1px solid rgba(180, 229, 249, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: rgba(180, 229, 249, 0.3);
}

.service-card.featured {
    border: 2px solid #FF6B35;
    transform: scale(1.05);
    z-index: 1;
}

.service-card.featured:hover {
    transform: translateY(-5px) scale(1.05);
}

.featured-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #FF6B35;
    color: #FAFAFA;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 15px 0;
    color: #A8FFF1;
}

.service-card ul {
    list-style: none;
    margin: 20px 0;
    padding: 0;
    text-align: left;
}

.service-card li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(180, 229, 249, 0.1);
    position: relative;
    padding-left: 25px;
}

.service-card li:last-child {
    border-bottom: none;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FF6B35;
    font-weight: bold;
}

.service-card .btn-primary, .service-card .btn-secondary {
    width: 100%;
    margin-top: 15px;
}

/* ===== EXAMPLES SECTION ===== */
.examples-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.1);
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.example-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.example-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.example-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.example-card:hover img {
    transform: scale(1.05);
}

.example-card h3, .example-card p {
    padding: 0 20px;
}

.example-card h3 {
    margin-top: 20px;
}

.example-card p {
    margin-bottom: 20px;
    font-size: 0.9rem;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 80px 0;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.info-item i {
    margin-right: 15px;
    font-size: 1.5rem;
    color: #FF6B35;
}

.contact-form {
    flex: 2;
    min-width: 300px;
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(180, 229, 249, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.input-icon {
    position: relative;
}

.input-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #B4E5F9;
}

.input-icon input, .select-wrapper select {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: none;
    border-radius: 30px;
    background: #ffffff;
    color: #000000;
    font-size: 1rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: '▼';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #B4E5F9;
    font-size: 0.8rem;
    pointer-events: none;
}

.select-wrapper select {
    appearance: none;
    padding-left: 15px;
}

.input-icon input:focus, .select-wrapper select:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(168, 255, 241, 0.5);
    box-shadow: 0 0 15px rgba(168, 255, 241, 0.2);
}

.checkbox {
    display: flex;
    align-items: flex-start;
}

.checkbox input {
    margin-right: 10px;
    margin-top: 5px;
}

.checkbox label {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.contact-form .btn-primary {
    width: 100%;
}

/* ===== FOOTER ===== */
.site-footer {
    padding: 60px 0 20px;
    background: rgba(0, 0, 0, 0.2);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-info {
    flex: 2;
    min-width: 300px;
}

.footer-contact {
    margin-top: 20px;
}

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 10px;
    color: #B4E5F9;
}

.footer-links {
    flex: 1;
    min-width: 200px;
}

.footer-links h4 {
    color: #A8FFF1;
    margin-bottom: 15px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #FAFAFA;
}

.footer-links a:hover {
    color: #FF6B35;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(250, 250, 250, 0.7);
}

/* ===== ICONS ===== */
[class^="icon-"] {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.icon-certificate {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23A8FFF1'%3E%3Cpath d='M12 2a10 10 0 1 0 10 10A10.011 10.011 0 0 0 12 2zm0 18a8 8 0 1 1 8-8 8.009 8.009 0 0 1-8 8z'/%3E%3Cpath d='M12 8a4 4 0 1 0 4 4 4 4 0 0 0-4-4zm0 6a2 2 0 1 1 2-2 2 2 0 0 1-2 2z'/%3E%3C/svg%3E");
}

.icon-team {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23A8FFF1'%3E%3Cpath d='M12 11a4 4 0 1 0-4-4 4 4 0 0 0 4 4zm6 10a1 1 0 0 0 1-1 7 7 0 0 0-14 0 1 1 0 0 0 1 1z'/%3E%3C/svg%3E");
}

.icon-mission {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23A8FFF1'%3E%3Cpath d='M19.071 4.929a10 10 0 1 0 0 14.142 10.011 10.011 0 0 0 0-14.142zm-3.536 10.606a2 2 0 1 1 0-2.828 2 2 0 0 1 0 2.828z'/%3E%3C/svg%3E");
}

.icon-analysis {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23A8FFF1'%3E%3Cpath d='M20 20H4a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1h16a1 1 0 0 1 1 1v16a1 1 0 0 1-1 1zM8 11.5v4h2v-4H8zm4-3v7h2v-7h-2zm4 1.5v5.5h2v-5.5h-2z'/%3E%3C/svg%3E");
}

.icon-audit {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23A8FFF1'%3E%3Cpath d='M17 3H7a2 2 0 0 0-2 2v16l7-3 7 3V5a2 2 0 0 0-2-2zm-5 12-3-1.8-2 1.2V5h10v11l-2-1-3 2z'/%3E%3C/svg%3E");
}

.icon-report {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23A8FFF1'%3E%3Cpath d='M19 3H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2zM8 17l-3-3 1.2-1.2L8 14.6l3.8-3.8L13 12l-5 5zm0-8h8v2H8V9z'/%3E%3C/svg%3E");
}

.icon-phone {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FF6B35'%3E%3Cpath d='M20 15.5c-1.25 0-2.45-.2-3.57-.57a1.02 1.02 0 0 0-1.02.24l-2.2 2.2a15.045 15.045 0 0 1-6.59-6.59l2.2-2.21a.96.96 0 0 0 .25-1A11.36 11.36 0 0 1 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 5h1.5c.07.88.22 1.75.46 2.59l-1.2 1.2c-.41-1.2-.67-2.47-.76-3.79zM19 18.97c-1.32-.09-2.59-.35-3.8-.75l1.19-1.19c.85.24 1.72.39 2.6.45v1.49z'/%3E%3C/svg%3E");
}

.icon-email {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FF6B35'%3E%3Cpath d='M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E");
}

.icon-location {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FF6B35'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E");
}

.icon-user {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23B4E5F9'%3E%3Cpath d='M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z'/%3E%3C/svg%3E");
}

/* ===== MEDIA QUERIES ===== */
@media (max-width: 992px) {
    .header-content {
        flex-wrap: wrap;
    }

    .header-contact {
        display: none;
    }

    .main-nav {
        order: 3;
        flex-basis: 100%;
        margin: 15px 0 0;
    }

    .nav-menu {
        justify-content: space-between;
    }

    .nav-menu li {
        margin: 0 10px;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .main-nav {
        flex-basis: auto;
        margin: 0;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(30, 60, 114, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 1000;
        padding: 50px;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        margin: 15px 0;
    }

    .nav-menu a {
        font-size: 1.2rem;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .hero-section {
        padding: 60px 0 40px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }

    .service-card.featured {
        transform: none;
    }

    .service-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 576px) {
    .container {
        width: 95%;
        padding: 0 10px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    section {
        padding: 50px 0;
    }
    
    .about-cards, .work-steps, .services-cards {
        gap: 20px;
    }
    
    .card, .step, .service-card {
        padding: 20px;
    }
    
    .cookie-banner {
        left: 10px;
        right: 10px;
        width: auto;
        max-width: none;
    }
} 