
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #1a1f2e;
    line-height: 1.6;
    overflow-x: hidden;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d4a6b 100%);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #1a1f2e;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.navbar-logo {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.navbar-logo img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.navbar-logo img:hover {
    transform: scale(1.05);
}

.navbar-menu {
    display: flex;
    align-items: center;
    margin-left: 0;
}

.menu-list {
    display: flex;
    align-items: center;
    gap: 5px;
}

.menu-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 10px clamp(12px, 1.2vw, 18px);
    color: #ffffff;
    font-size: clamp(14px, 1vw, 15px);
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 6px;
    position: relative;
}

.menu-link:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
}

.menu-link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 18px;
    right: 18px;
    height: 2px;
    background-color: #ffffff;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.menu-link:hover::after {
    transform: scaleX(1);
}

.menu-link.active::after {
    transform: scaleX(1);
}

.dropdown-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.menu-item-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    background-color: #ffffff;
    min-width: 220px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    padding: 8px 0;
}

.menu-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu-item-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-link {
    display: block;
    padding: 12px 20px;
    color: #333;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.dropdown-link:hover {
    background-color: rgba(212, 175, 55, 0.1);
    color: #d4af37;
    padding-left: 24px;
}

.dropdown-link.active {
    background-color: rgba(212, 175, 55, 0.15);
    color: #d4af37;
    font-weight: 600;
}

.language-selector .menu-link {
    min-width: 60px;
    justify-content: center;
}

.lang-dropdown {
    min-width: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
}

.menu-item-dropdown.language-selector:hover .lang-dropdown {
    transform: translateX(-50%) translateY(0);
}

.lang-option {
    text-align: center;
    font-weight: 500;
}

.lang-option.active {
    color: #d4af37;
    background-color: rgba(212, 175, 55, 0.1);
}

.desktop-360-wrapper {
    margin-left: auto;
    padding-left: clamp(20px, 4vw, 55px);
}

.btn-360 {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px clamp(14px, 1.3vw, 18px);
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #1a1f2e;
    border-radius: 50px;
    font-weight: 600;
    font-size: clamp(14px, 1.1vw, 16px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-360:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #f4d03f 0%, #d4af37 100%);
}

.icon-360 {
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.5px;
}

.icon-eye {
    font-size: 18px;
    line-height: 1;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.hamburger-line {
    width: 28px;
    height: 3px;
    background-color: #ffffff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 998;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 50%;
    height: 100vh;
    background-color: #ffffff;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 999;
    overflow-y: auto;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: flex-end;
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.mobile-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-close:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.close-icon {
    font-size: 32px;
    color: #333;
    line-height: 1;
}

.mobile-menu-list {
    padding: 20px 0;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 25px;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.mobile-menu-link:hover {
    background-color: rgba(212, 175, 55, 0.05);
    border-left-color: #d4af37;
    color: #d4af37;
}

.mobile-dropdown-toggle {
    text-align: left;
}

.mobile-arrow {
    transition: transform 0.3s ease;
    font-size: 14px;
}

.mobile-dropdown-toggle[aria-expanded="true"] .mobile-arrow {
    transform: rotate(180deg);
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background-color: rgba(0, 0, 0, 0.02);
}

.mobile-submenu.active {
    max-height: 500px;
}

.mobile-submenu-link {
    display: block;
    padding: 14px 25px 14px 45px;
    color: #555;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.mobile-submenu-link:hover {
    background-color: rgba(212, 175, 55, 0.08);
    border-left-color: #d4af37;
    color: #d4af37;
    padding-left: 50px;
}

.mobile-language-selector {
    margin-top: 20px;
    padding: 20px 25px;
    border-top: 1px solid #e0e0e0;
}

.mobile-lang-label {
    font-size: 13px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.mobile-lang-options {
    display: flex;
    gap: 12px;
}

.mobile-lang-option {
    flex: 1;
    padding: 10px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.mobile-lang-option:hover {
    border-color: #d4af37;
    color: #d4af37;
    background-color: rgba(212, 175, 55, 0.05);
}

.mobile-lang-option.active {
    background-color: #d4af37;
    color: #1a1f2e;
    border-color: #d4af37;
}


@media (max-width: 980px) {
    .navbar-menu {
        display: none;
    }
    
    .hamburger-menu {
        display: flex;
    }
}

@media (max-width: 768px) {
    .navbar-container {
        padding: 0 20px;
        height: 70px;
    }
    
    .navbar-logo img {
        height: 40px;
    }
    
    .mobile-menu {
        width: 75%;
    }
}

@media (max-width: 480px) {
    .mobile-menu {
        width: 85%;
    }
    
    .mobile-menu-link {
        padding: 14px 20px;
        font-size: 15px;
    }
    
    .mobile-submenu-link {
        padding: 12px 20px 12px 40px;
        font-size: 13px;
    }
}

@media (min-width: 981px) and (max-width: 1200px) {
    .navbar-container {
        padding: 0 20px;
    }
    
    .menu-list {
        gap: 2px;
    }
}

@media (min-width: 1400px) {
    .navbar-container {
        padding: 0 50px;
    }
}

.hero-carousel {
    min-height: 100vh;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d4a6b 50%, #1a1f2e 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 120px 20px 60px;
    position: relative;
    overflow: hidden;
}

.carousel-header {
    text-align: center;
    margin-bottom: 60px;
    z-index: 10;
}

.carousel-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 8px;
    margin-bottom: 15px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    line-height: 1.2;
}

.carousel-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    letter-spacing: 1px;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    margin: 20px auto 30px;
    max-width: 800px;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-ctas {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-align: center;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #1a1f2e;
    border: 2px solid transparent;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #f4d03f 0%, #d4af37 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid #ffffff;
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: #ffffff;
    color: #1e3a5f;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
    .hero-description {
        font-size: 0.95rem;
        margin: 15px auto 25px;
        padding: 0 20px;
    }
    
    .hero-ctas {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        padding: 0 20px;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
}

.carousel-container {
    width: 100%;
    max-width: 1400px;
    height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1500px;
}

.carousel-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.carousel-track {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transform-style: preserve-3d;
}

.carousel-slide {
    position: absolute;
    width: 400px;
    height: 500px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    cursor: pointer;
    pointer-events: none;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    display: block;
    transition: all 0.3s ease;
    pointer-events: none;
    background: rgba(255, 255, 255, 0.05);
}

.carousel-slide:hover img {
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

.slide-info {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 12px;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
}

.carousel-slide.active .slide-info {
    transform: translateY(0);
    opacity: 1;
}

.slide-info h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: 1px;
}

.carousel-slide.active {
    transform: translateX(0) translateZ(0) scale(1);
    z-index: 5;
    opacity: 1;
    pointer-events: auto;
}

.carousel-slide.prev-2 {
    transform: translateX(-700px) translateZ(-400px) rotateY(35deg) scale(0.65);
    z-index: 1;
    opacity: 0.4;
    pointer-events: auto;
}

.carousel-slide.prev-1 {
    transform: translateX(-420px) translateZ(-200px) rotateY(25deg) scale(0.8);
    z-index: 3;
    opacity: 0.7;
    pointer-events: auto;
}

.carousel-slide.next-1 {
    transform: translateX(420px) translateZ(-200px) rotateY(-25deg) scale(0.8);
    z-index: 3;
    opacity: 0.7;
    pointer-events: auto;
}

.carousel-slide.next-2 {
    transform: translateX(700px) translateZ(-400px) rotateY(-35deg) scale(0.65);
    z-index: 1;
    opacity: 0.4;
    pointer-events: auto;
}

.carousel-slide.hidden {
    transform: translateX(1200px) translateZ(-600px) scale(0.5);
    opacity: 0;
    z-index: 0;
    pointer-events: none;
}

.carousel-controls {
    position: absolute;
    right: 125px;
    bottom: 0;
    display: flex;
    gap: 20px;
    z-index: 10;
}

.carousel-arrow {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.carousel-arrow span {
    font-size: 2.5rem;
    color: #d4af37;
    line-height: 1;
    font-weight: 300;
}

.carousel-arrow:hover {
    background: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.carousel-arrow:active {
    transform: scale(0.95);
}

@media (max-width: 1200px) {
    .carousel-slide {
        width: 350px;
        height: 440px;
    }
    
    .carousel-slide.prev-2 {
        transform: translateX(-600px) translateZ(-350px) rotateY(35deg) scale(0.6);
    }
    
    .carousel-slide.prev-1 {
        transform: translateX(-380px) translateZ(-180px) rotateY(25deg) scale(0.75);
    }
    
    .carousel-slide.next-1 {
        transform: translateX(380px) translateZ(-180px) rotateY(-25deg) scale(0.75);
    }
    
    .carousel-slide.next-2 {
        transform: translateX(600px) translateZ(-350px) rotateY(-35deg) scale(0.6);
    }
}

@media (max-width: 980px) {
    .hero-carousel {
        padding: 100px 20px 40px;
    }
    
    .carousel-container {
        height: 500px;
    }
    
    .carousel-slide {
        width: 300px;
        height: 375px;
    }
    
    .carousel-slide.prev-2 {
        transform: translateX(-500px) translateZ(-300px) rotateY(40deg) scale(0.55);
    }
    
    .carousel-slide.prev-1 {
        transform: translateX(-330px) translateZ(-150px) rotateY(30deg) scale(0.7);
    }
    
    .carousel-slide.next-1 {
        transform: translateX(330px) translateZ(-150px) rotateY(-30deg) scale(0.7);
    }
    
    .carousel-slide.next-2 {
        transform: translateX(500px) translateZ(-300px) rotateY(-40deg) scale(0.55);
    }
    
    .carousel-arrow {
        width: 50px;
        height: 50px;
    }
    
    .carousel-arrow span {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .carousel-header {
        margin-bottom: 40px;
    }
    
    .carousel-container {
        height: 450px;
    }
    
    .carousel-slide {
        width: 260px;
        height: 325px;
    }
    
    .carousel-slide.prev-2,
    .carousel-slide.next-2 {
        opacity: 0;
        pointer-events: none;
    }
    
    .carousel-slide.prev-1 {
        transform: translateX(-180px) translateZ(-100px) rotateY(35deg) scale(0.65);
    }
    
    .carousel-slide.next-1 {
        transform: translateX(180px) translateZ(-100px) rotateY(-35deg) scale(0.65);
    }
    
    .slide-info {
        padding: 15px;
        bottom: 20px;
        left: 20px;
        right: 20px;
    }
    
    .slide-info h3 {
        font-size: 1.2rem;
    }
    
    .carousel-controls {
        right: 30px;
        bottom: 30px;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .carousel-container {
        height: 400px;
    }
    
    .carousel-slide {
        width: 220px;
        height: 275px;
    }
    
    .carousel-slide.prev-1 {
        transform: translateX(-140px) translateZ(-80px) rotateY(40deg) scale(0.6);
    }
    
    .carousel-slide.next-1 {
        transform: translateX(140px) translateZ(-80px) rotateY(-40deg) scale(0.6);
    }
    
    .carousel-controls {
        right: 15px;
        bottom: 20px;
        gap: 12px;
    }
    
    .carousel-arrow {
        width: 45px;
        height: 45px;
    }
    
    .carousel-arrow span {
        font-size: 1.8rem;
    }
}

.partners-section {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d4a6b 100%);
    padding: 60px 20px;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50px;
    right: 50px;
    height: 1px;
    background: rgba(255, 255, 255, 0.6);
}

.partners-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50px;
    right: 50px;
    height: 1px;
    background: rgba(255, 255, 255, 0.6);
}

.partners-container {
    max-width: 1400px;
    width: 100%;
    text-align: center;
}

.partners-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 4px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.partners-divider {
    display: none;
}

.partners-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 10px;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.partner-logo:hover {
    transform: scale(1.05);
}

.partner-logo img {
    max-width: 150px;
    max-height: 75px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

@media (max-width: 768px) {
    .partners-section {
        padding: 60px 20px;
        min-height: 300px;
    }
    
    .partners-title {
        letter-spacing: 4px;
        margin-bottom: 25px;
    }
    
    .partners-divider {
        margin-bottom: 40px;
    }
    
    .partners-logos {
        gap: 40px;
    }
    
    .partner-logo img {
        max-width: 200px;
        max-height: 100px;
    }
}   

@media (max-width: 480px) {
    .partners-section {
        padding: 40px 15px;
    }
    
    .partners-title {
        letter-spacing: 3px;
        margin-bottom: 20px;
    }
    
    .partners-divider {
        margin-bottom: 30px;
    }
    
    .partners-logos {
        gap: 30px;
    }
    
    .partner-logo img {
        max-width: 150px;
        max-height: 75px;
    }
}

.contact-section {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d4a6b 100%);
    padding: 80px 20px;
    margin-top: 0;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
}

.contact-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: #ffffff;
    text-align: center;
    margin-bottom: 80px;
    letter-spacing: 6px;
    text-transform: uppercase;
}

.contact-form {
    max-width: 1200px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.form-row:last-child {
    grid-template-columns: 1fr 2fr;
}

.form-group {
    position: relative;
}

.form-group input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding: 15px 0;
    font-size: 1rem;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding: 0;
    font-size: 1rem;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
    resize: none;
    line-height: 1.5;
    height: 1.5em;
    overflow: hidden;
    margin-bottom: 5px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: #ffffff;
}

.form-group-message {
    grid-column: span 1;
    display: flex;
    gap: 20px;
    align-items: flex-end;
}

.form-group-message textarea {
    flex: 1;
}

.btn-send {
    width: auto;
    min-width: 200px;
    padding: 18px 50px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    border: none;
    color: #1a1f2e;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    height: fit-content;
    border-radius:30px;
   
}

.btn-send:hover {
    background: linear-gradient(135deg, #f4d03f 0%, #d4af37 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

@media (max-width: 980px) {
    .form-row:last-child {
        grid-template-columns: 1fr 2fr;
        gap: 30px;
    }
    
    .form-group-message {
        grid-column: auto;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 20px;
    }
    
    .contact-title {
        margin-bottom: 50px;
        letter-spacing: 4px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 30px;
    }
    
    .form-group-message {
        grid-column: span 1;
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-send {
        width: 100%;
        min-width: unset;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 40px 15px;
    }
    
    .contact-title {
        margin-bottom: 40px;
        letter-spacing: 3px;
    }
    
    .form-row {
        gap: 20px;
    }
    
    .form-group-message {
        gap: 12px;
    }
    
    .btn-send {
        padding: 12px 25px;
        font-size: 0.95rem;
        letter-spacing: 2px;
    }
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
    background-color: #20BA5A;
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
}

.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
    z-index: 9998;
    padding: 10px;
    gap: 10px;
    grid-template-columns: 1fr 1fr;
}

.mobile-sticky-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-sticky-phone {
    background: #1e3a5f;
    color: #ffffff;
}

.mobile-sticky-phone:hover {
    background: #162a42;
    transform: scale(1.02);
}

.mobile-sticky-whatsapp {
    background: #25D366;
    color: #ffffff;
}

.mobile-sticky-whatsapp:hover {
    background: #20BA5A;
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-float svg {
        width: 30px;
        height: 30px;
    }
    
    .mobile-sticky-bar {
        display: grid;
    }
    
    body {
        padding-bottom: 70px;
    }
}

main {
    flex: 1;
}

.footer {
    background: linear-gradient(135deg, #1a1f2e 0%, #162a42 100%);
    color: #ffffff;
    padding: 60px 20px 0;
    margin-top: auto;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 200px 1fr auto;
    gap: 60px;
    align-items: start;
    padding-bottom: 40px;
}

.footer-logo img {
    width: 150px;
    height: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h3 {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-column p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 15px;
}

.footer-contact {
    margin-top: 20px;
}

.footer-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    border: 2px solid #ffffff;
    border-radius: 25px;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.footer-btn:hover {
    background: #d4af37;
    color: #1a1f2e;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-social a {
    width: 30px;
    height: 30px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.footer-social a svg {
    width: 24px;
    height: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-social a:hover {
    transform: translateY(-3px);
    color: #ffffff;
}

.footer-social a:hover svg {
    filter: drop-shadow(0 4px 8px rgba(255, 255, 255, 0.3));
    transform: scale(1.15);
}

.footer-social a:nth-child(1):hover {
    color: #FF0000;
}

.footer-social a:nth-child(2):hover {
    color: #E1306C;
}

.footer-social a:nth-child(3):hover {
    color: #1877F2;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 25px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

@media (max-width: 980px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-logo {
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-social {
        flex-direction: row;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 20px 0;
    }
    
    .footer-container {
        gap: 30px;
    }
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
    margin-top: 20px;
    padding-top: 0;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slider-slide.active {
    opacity: 1;
}

.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 8s ease-out;
}

.slider-slide.active img {
    transform: scale(1);
}

.hero-text {
    position: absolute;
    bottom: 60px;
    left: 100px;
    color: white;
    z-index: 10;
}

.hero-title {
    font-family: 'Dancing Script', 'Brush Script MT', cursive;
    font-size: clamp(3.5rem, 9vw, 7rem);
    font-weight: 700;
    margin:0px 0 -32px 33px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    opacity: 0;
    transform: translateY(100px);
    animation: slideUpFadeIn 1.5s ease-out 0.5s forwards;
    letter-spacing: 2px;
    font-style: italic;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.8rem);
    font-weight: 400;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    opacity: 0;
    transform: translateY(100px);
    animation: slideUpFadeIn 1.5s ease-out 1s forwards;
    line-height: 1.3;
}

@keyframes slideUpFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text-neden {
    position: absolute;
    bottom: 60px;
    left: 100px;
    color: white;
    z-index: 10;
}

.hero-title-neden {
    font-family: 'Dancing Script', 'Brush Script MT', cursive;
    font-size: clamp(3.5rem, 9vw, 7rem);
    font-weight: 700;
    margin: 0px 0 2px 52px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    opacity: 0;
    transform: translateY(100px);
    animation: slideUpFadeIn 1.5s ease-out 0.5s forwards;
    letter-spacing: 2px;
    font-style: italic;
    line-height: 1.1;
}

.hero-subtitle-neden {
    font-size: clamp(1rem, 2.5vw, 1.8rem);
    font-weight: 400;
    margin: 0 0 -4px 38px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    opacity: 0;
    transform: translateY(100px);
    animation: slideUpFadeIn 1.5s ease-out 1s forwards;
    line-height: 1.3;
}

.about-hero {
    position: relative;
    background: url("https://edenprojectscyprus.com/wp-content/uploads/2025/01/eden-about.webp") center center / cover no-repeat;
    padding: 140px 40px 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 0;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.7) 0%, rgba(26, 31, 46, 0.7) 100%);
    z-index: 1;
}
.about-heroo {
    position: relative;
    background: url("https://edenprojectscyprus.com/wp-content/uploads/2025/01/management-team.webp") center center / cover no-repeat;
    padding: 140px 40px 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 0;
    overflow: hidden;
}

.about-heroo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.7) 0%, rgba(26, 31, 46, 0.7) 100%);
    z-index: 1;
}
.hero-images {
    display: flex;
    gap: 20px;
    flex: 1;
}

.hero-image {
    margin-top:20px;
    width: 100%;
    max-width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: translateY(-5px);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 40px;
    width: 100%;
    max-width: 800px;
}


.about-hero-subtitle {
    font-size: 1.1rem;
    color: #ffffff;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.about-hero h1,
.about-heroo h1 {
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 4px;
    line-height: 1.2;
    margin: 0;
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.about-content {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d4a6b 100%);
}

.about-content-container {
    max-width: 1400px;
    margin: 0 auto;
}

.content-row {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 100px;
}


.content-text {
    flex: 1;
    padding: 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.content-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1f2e;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.content-text h3 {
    font-size: 1.3rem;
    font-weight: 500;
    color: #7B8B99;
    margin: 0 0 25px 0;
    line-height: 1.4;
}

.content-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #2C3E50;
    margin: 0;
}

.content-image {
    flex: 1;
    position: relative;
}

.content-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 0 20px 20px 0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.content-image img:hover {
    transform: scale(1.02);
}

.texts-imgs {
    padding: 80px 20px;
    background: #fff;
}

.texts-imgs-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

.texts-imgs-left {
    flex: 2;
    padding-right: 40px;
}

.texts-imgs h1 {
    font-size: 6rem;
    font-weight: 700;
    color: #1e3a5f;
    margin: 0 0 10px 0;
    display: block;
    line-height: 0.9;
}

.header-text-alt h3 {
    font-size: 1.4rem;
    font-weight: 400;
    color: #6C7A89;
    line-height: 1.2;
    margin: 0 0 15px 0;
    display: block;
}

.header-text-alt p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #1e3a5f;
    margin: 0;
}

.texts-imgs-right {
    flex: 1;
}

.texts-imgs-right img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 0 20px 20px 0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.about-content-container {
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 30px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-text h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: #1a1f2e;
    margin-bottom: 30px;
    font-weight: 600;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.approach-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d4a6b 100%);
}

.approach-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.approach-subtitle {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 3px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.approach-container h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: #ffffff;
    font-weight: 400;
    line-height: 1.6;
    max-width: 1000px;
    margin: 0 auto;
}

.story-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d4a6b 100%);
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 30px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.story-text h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: #1a1f2e;
    margin-bottom: 30px;
    font-weight: 600;
}

.story-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.story-text-small {
    font-size: 0.9rem;
    color: #666;
}

.story-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-logo img {
    max-width: 75%;
    height: auto;
    opacity: 0.9;
}

@media (max-width: 980px) {
    .about-content-container,
    .story-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-logo {
        order: -1;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 70vh;
    }
    
    .hero-text {
        bottom: 30px;
        left: 30px;
        right: 20px;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 7vw, 5rem);
        margin-bottom: 25px;
    }
    
    .hero-subtitle {
        font-size: clamp(0.9rem, 2vw, 1.3rem);
    }

    .about-hero,
    .about-heroo {
        padding: 120px 30px 80px;
        min-height: 50vh;
    }
    
    .about-hero-content {
        padding: 50px 30px;
        text-align: center;
    }

    .hero-images {
        flex-direction: column;
        gap: 15px;
    }

    .hero-image {
        max-width: 100%;
        height: 150px;
    }
    
    .about-content,
    .approach-section,
    .story-section {
        padding: 60px 20px;
    }

    .content-row {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 60px;
    }


    .content-text {
        padding: 30px 20px;
        text-align: center;
    }

    .content-text h2 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .content-text h3 {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .content-text p {
        font-size: 1rem;
    }

    .content-image img {
        height: 250px;
        border-radius: 20px;
    }

    .texts-imgs {
        padding: 40px 20px;
    }

    .texts-imgs-content {
        flex-direction: column;
        gap: 40px;
    }

    .texts-imgs-left {
        padding-right: 0;
        text-align: center;
    }

    .texts-imgs h1 {
        font-size: 4.5rem;
        margin-bottom: 8px;
    }

    .text-imgs-1-title {
        font-size: 1.2rem;
        margin-bottom: 12px;
        margin-left: 15px;
    }

    .texts-imgs-left p {
        font-size: 0.9rem;
        margin-left: 15px;
        max-width: 100%;
    }

    .texts-imgs-right img {
        height: 250px;
        border-radius: 20px;
    }

    
    .about-content-container,
    .story-container {
        padding: 40px 30px;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .about-hero,
    .about-heroo {
        padding: 100px 20px 60px;
        min-height: 45vh;
    }
    
    .about-hero-content {
        padding: 40px 25px;
    }
    
    .about-content-container,
    .story-container {
        padding: 30px 20px;
        border-radius: 20px;
    }
}

.team-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    background: transparent;
}

.team-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    justify-items: center;
    background-color:#fff;
    border-radius:20px;
    padding: 40px 30px;
}

.team-member {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 0;
    border: none;
    transition: all 0.3s ease;
    overflow: visible;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 450px;
    height: auto;
    min-height: 550px;
    display: flex;
    flex-direction: column;
}

.team-member:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.team-photo {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    margin-top:22px;
    border-radius: 15px 15px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;    
}

.team-logo {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 50px;
    height: auto;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.team-logo img {
    width: 100%;
    height: auto;
}

.team-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: #222;
    margin: 22px 28px 8px;
    text-align: center;
    line-height: 1.3;
}

.team-position {
    font-size: 1.05rem;
    font-weight: 500;
    color: #999;
    margin: 0 28px 22px;
    text-align: center;
    letter-spacing: 0.5px;
}

.team-bio {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
    padding: 0 28px 30px;
    text-align: left;
    flex-grow: 1;
}

.team-section-minimal {
    padding: 40px 40px;
}

.team-section-minimal .team-container {
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    padding: 30px 25px;
}

.team-section-minimal .team-member {
    max-width: 220px;
    min-height: 280px;
}

.team-section-minimal .team-photo {
    height: 200px;
    margin-top: 10px;
}

.team-section-minimal .team-name {
    font-size: 0.95rem;
    margin: 12px 12px 6px;
    line-height: 1.3;
}

.team-section-minimal .team-position {
    font-size: 0.8rem;
    margin: 0 12px 12px;
    line-height: 1.4;
}

.projects-hero {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d4a6b 100%);
    padding: 120px 40px 60px;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.projects-hero-content {
    background-image: url('https://edenprojectscyprus.com/wp-content/uploads/2025/01/eden-projects.webp');
    background-size: cover;
    background-position: center;
    position: relative;
    text-align: center;
    padding: 80px 60px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    margin: 0 auto;
    max-width: 1200px;
    width: 100%;
}

.projects-hero-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.projects-hero-content h1 {
    position: relative;
    z-index: 2;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    color: #ffffff;
    margin: 0;
    font-style: italic;
    line-height: 1.3;
}

.projects-intro {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d4a6b 100%);
    padding: 80px 40px;
}

.projects-intro-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.projects-intro h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 30px 0;
    letter-spacing: 2px;
}

.projects-intro p {
    font-size: 1rem;
    line-height: 1.8;
    color: #ffffff;
    margin: 0;
    text-align: center;
}

.projects-grid {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d4a6b 100%);
    padding: 60px 40px 80px;
}

.projects-grid-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    row-gap: 30px;
}

.project-card {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d4a6b 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.project-logo {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 12px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.project-logo img {
    height: 35px;
    width: auto;
}

.project-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d4a6b 100%);
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-content {
    padding: 20px 25px 25px;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d4a6b 100%);
    display: flex;
    flex-direction: column;
    min-height: 200px;
    flex: 1;
}

.project-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 12px 0;
}

.project-content p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #ffffff;
    margin: 0 0 15px 0;
    flex: 1;
}

.project-btn {
    display: inline-block;
    padding: 12px 35px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #1a1f2e;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    margin-top: auto;
    align-self: flex-start;
}

.project-btn:hover {
    background: linear-gradient(135deg, #f4d03f 0%, #d4af37 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.project-btn-soon {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
}

@media (max-width: 1200px) {
    .projects-grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .projects-hero {
        padding: 100px 20px 60px;
        min-height: 50vh;
    }
    
    .projects-hero-content {
        padding: 80px 40px;
    }
    
    .projects-intro {
        padding: 60px 20px;
    }
    
    .projects-intro h2 {
        font-size: 2.5rem;
        margin: 0 0 20px 0;
    }
    
    .projects-intro p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .projects-grid {
        padding: 50px 20px 60px;
    }
    
    .projects-grid-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .project-image {
        height: 240px;
    }
    
    .project-content {
        padding: 20px;
    }
    
    .project-content h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .projects-hero {
        padding: 90px 15px 40px;
    }
    
    .projects-hero-content {
        padding: 60px 30px;
        border-radius: 20px;
    }
    
    .projects-intro {
        padding: 50px 15px;
    }
    
    .projects-intro h2 {
        font-size: 2rem;
    }
    
    .projects-intro p {
        font-size: 0.9rem;
    }
    
    .projects-grid {
        padding: 40px 15px 50px;
    }
    
    .project-logo img {
        height: 30px;
    }
    
    .project-image {
        height: 200px;
    }
}

@media (max-width: 1200px) {
    .team-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .team-member {
        max-width: 100%;
    }
    
    .team-section-minimal .team-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .team-section {
        margin: 50px 20px;
        padding: 30px 20px;
    }
    
    .team-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .team-member {
        max-width: 100%;
        min-height: auto;
    }
    
    .team-photo {
        height: 350px;
    }
    
    .team-name {
        font-size: 1.3rem;
        margin: 18px 24px 6px;
    }
    
    .team-position {
        font-size: 1rem;
        margin: 0 24px 18px;
    }
    
    .team-bio {
        font-size: 0.9rem;
        padding: 0 24px 28px;
    }
    
    .team-section-minimal .team-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .team-section-minimal .team-member {
        max-width: 100%;
    }
    
    .team-section-minimal .team-photo {
        height: 220px;
    }
    
    .team-section-minimal .team-name {
        font-size: 1rem;
    }
    
    .team-section-minimal .team-position {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .team-photo {
        height: 300px;
    }
    
    .team-name {
        font-size: 1.2rem;
    }
    
    .team-position {
        font-size: 0.95rem;
    }
    
    .team-bio {
        font-size: 0.88rem;
    }
    
    .team-logo {
        width: 45px;
        top: 12px;
        right: 12px;
        padding: 6px;
    }
    
    .team-section-minimal .team-container {
        grid-template-columns: 1fr;
    }
}
.texts-imgs-content{
    display: block;
    gap: 20px;
    margin: 0 auto;
    max-width: 1200px;
     width: 80%;
    height: auto;

}
.texts-imgs-content h1{
    float:left;
    font-size: 60px;
}
.header-text-1{
     display: flex;
     align-items: stretch;
     gap: 0;
     clear: both;
     margin-top: 20px;
 }
.header-text-1 h3{margin:0;
    padding: 0;}

    .header-text-1 img{
     width: 100%;
     height: 100%;
     object-fit: cover;
     object-position: center;
     border-radius: 0 20px 20px 0;
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
     display: block;
    }
   .header-text-alt{
    flex: 1;
    padding-right: 0;
   }
   .header-text-img{
    flex: 1.5;
    display: flex;
    align-items: stretch;
    max-height: 200px;
   }

.banner-section {
    background: #414B58;
    padding: 80px 60px;
    margin: 40px auto;
    border-radius: 0 0 60px 60px;
    width: 90%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-content {
    text-align: center;
}

.banner-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #d4af37;
    margin: 0 0 20px 0;
    line-height: 1.2;
    white-space: nowrap;
}

.banner-text {
    font-size: 1.125rem;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.6;
    margin: 0;
    max-width: 1100px;
    margin: 0 auto;
}

.why-cyprus-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.why-cyprus-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1e3a5f;
    text-align: left;
    margin: 0 0 25px 0;
    line-height: 1.1;
}

.why-cyprus-intro {
    font-size: 1rem;
    color: #6C7A89;
    text-align: left;
    margin: 0 0 50px 0;
    line-height: 1.8;
    max-width: 800px;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 0;
}

.content-block {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.content-block h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #d4af37;
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.content-block p {
    font-size: 1rem;
    color: #6C7A89;
    line-height: 1.8;
    margin: 0;
}

.script-text {
    text-align: center;
    margin-top: 80px;
}

.script-text h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 3.5rem;
    font-weight: 400;
    color: #2F4F4F;
    margin: 0;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .header-text-1{
        flex-direction: column;
        gap: 20px;
    }
    .header-text-alt{
        flex: none;
        padding-right: 0;
        text-align: center;
    }
    .header-text-img{
        flex: none;
    }
    .header-text-1 img{
        height: auto;
        min-height: 150px;
        border-radius: 20px;
    }
    
    .banner-section {
        padding: 40px 20px;
        margin: 30px auto;
        width: 95%;
    }
    
    .banner-title {
        font-size: 1.8rem;
        white-space: normal;
    }
    
    .banner-text {
        font-size: 1rem;
        white-space: normal;
    }
    
    .why-cyprus-section {
        margin: 60px auto;
        padding: 0 15px;
    }
    
    .why-cyprus-title {
        font-size: 2rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .content-block {
        padding: 25px;
    }
    
    .script-text {
        margin-top: 60px;
    }
    
    .script-text h2 {
        font-size: 2.5rem;
    }
}

.girne-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.girne-content {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.girne-text {
    flex: 0.45;
}

.girne-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1e3a5f;
    margin: 0 0 15px 0;
    line-height: 1.1;
}

.girne-line {
    width: 120px;
    height: 2px;
    background: #d4af37;
    margin: 0 0 20px 0;
}

.girne-paragraph {
    font-size: 1rem;
    color: #333333;
    line-height: 1.6;
    margin: 0;
}

.girne-image {
    flex: 0.55;
   padding-top:50px;
}

.girne-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    
}

@media (max-width: 768px) {
    .girne-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .girne-text {
        flex: none;
    }
    
    .girne-image {
        flex: none;
    }
    
    .girne-image img {
        border-radius: 20px;
    }
    
    .girne-title {
        font-size: 2.2rem;
    }
}

.salamis-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.salamis-content {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.salamis-text {
    flex: 1.1;
}

.salamis-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1e3a5f;
    margin: 0 0 15px 0;
    line-height: 1.1;
}

.salamis-line {
    width: 200px;
    height: 2px;
    background: #d4af37;
    margin: 0 0 20px 0;
}

.salamis-paragraph {
    font-size: 1rem;
    color: #333333;
    line-height: 1.6;
    margin: 0;
}

.salamis-image {
    flex: 1.4;
}

.salamis-image {
    margin-top: 50px;
}

.salamis-image img {
    width: 100%;
    height: auto;
    margin-top:-25px;
    border-radius: 20px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .salamis-section {
        padding: 40px 20px;
        margin: 60px auto;
    }
    
    .salamis-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .salamis-text {
        flex: none;
    }
    
    .salamis-image {
        flex: none;
    }
    
    .salamis-image img {
        border-radius: 20px;
    }
    
    .salamis-title {
        font-size: 2.2rem;
    }
}

.bellapais-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.bellapais-content {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.bellapais-text {
    flex: 1.2;
}

.bellapais-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1e3a5f;
    margin: 0 0 15px 0;
    line-height: 1.1;
}

.bellapais-line {
    width: 200px;
    height: 2px;
    background: #d4af37;
    margin: 0 0 20px 0;
}

.bellapais-paragraph {
    font-size: 1rem;
    color: #333333;
    line-height: 1.6;
    margin: 0;
}

.bellapais-image {
    flex: 1.3;
}

.bellapais-image {
    margin-top: 50px;
}

.bellapais-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .bellapais-section {
        padding: 40px 20px;
        margin: 60px auto;
    }

    .bellapais-content {
        flex-direction: column;
        gap: 20px;
    }

    .bellapais-text {
        flex: none;
    }

    .bellapais-image {
        flex: none;
    }

    .bellapais-title {
        font-size: 2.2rem;
    }
}

.lala-mustafa-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.lala-mustafa-content {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.lala-mustafa-text {
    flex: 1.2;
}

.lala-mustafa-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1e3a5f;
    margin: 0 0 15px 0;
    line-height: 1.1;
}

.lala-mustafa-line {
    width: 200px;
    height: 2px;
    background: #d4af37;
    margin: 0 0 20px 0;
}

.lala-mustafa-paragraph {
    font-size: 1rem;
    color: #333333;
    line-height: 1.6;
    margin: 0;
}

.lala-mustafa-image {
    flex: 1.3;
}

.lala-mustafa-image {
    margin-top: 50px;
}

.lala-mustafa-image img {
    width: 100%;
    height: auto;
    border-radius: 20px 0 0 20px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .lala-mustafa-section {
        padding: 40px 20px;
        margin: 60px auto;
    }

    .lala-mustafa-content {
        flex-direction: column;
        gap: 20px;
    }

    .lala-mustafa-text {
        flex: none;
    }

    .lala-mustafa-image {
        flex: none;
    }

    .lala-mustafa-title {
        font-size: 2.2rem;
    }
}

.cyprus-magic-section {
    width: 100%;
    min-height: 20vh;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    position: relative;
}

.faq-banner {
    width: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 500px;
    overflow: hidden;
    position: relative;
}

.faq-banner img {
    width: 100%;
    height: 500px;
    display: block;
    object-fit: cover;
    object-position: center;
}

.faq-banner-text {
    position: absolute;
    bottom: 60px;
    left: 60px;
    text-align: left;
    color: #ffffff;
    z-index: 2;
    max-width: 700px;
}

.faq-banner-text h1 {
    font-size: 3rem;
    font-weight: 700;
    margin: 0 0 20px 0;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.faq-banner-text p {
    font-size: 1.2rem;
    font-weight: 400;
    margin: 0;
    color: #ffffff;
    line-height: 1.6;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.faq-content {
    width: 100%;
    padding: 80px 20px;
    background: #ffffff;
}

.faq-container {
    max-width: 1400px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #d0d0d0;
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: #ffffff;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 500;
    color: #333333;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8f8f8;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 400;
    color: #333333;
    transition: transform 0.3s ease;
    min-width: 20px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #f8f8f8;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 25px 30px;
}

.faq-answer p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #666666;
}

.cyprus-magic-title {
    font-family: 'Dancing Script', cursive;
    font-size: 2.8rem;
    font-weight: 700;
    color: #d4af37;
    text-align: center;
    margin: 0;
    padding: 0;
    line-height: 1.1;
    letter-spacing: 0.05em;
    white-space: nowrap;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .cyprus-magic-title {
        font-size: 2.8rem;
        white-space: normal;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .cyprus-magic-title {
        font-size: 2.2rem;
    }
}


.places-intro {
    max-width: 1200px;
    margin: 60px auto 40px auto;
    padding: 0 20px;
}

.places-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1e3a5f;
    text-align: left;
    margin: 0;
    line-height: 1.1;
}

@media (max-width: 768px) {
    .places-intro {
        margin: 40px auto 30px auto;
    }
    
    .places-title {
        font-size: 2.2rem;
    }
}
.texts-imgs-content .duga{
    font-weight: 700;
    color: #1e3a5f;
    margin: 0 0 10px 0;
    display: block;
    line-height: 0.9;
    float: left;
    font-size: 60px;
}

.print-media-hero {
    position: relative;
    width: 100%;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 40px 80px;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d4a6b 100%);
    overflow: hidden;
}

.print-media-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../imgs/newspapers-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 1;
}

.print-media-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.8) 0%, rgba(26, 31, 46, 0.8) 100%);
    z-index: 2;
}

.print-media-content {
    position: relative;
    z-index: 3;
    text-align: center;
    width: 80%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 40px;
    background: url("https://edenprojectscyprus.com/wp-content/uploads/2025/01/print-media.webp") center center / cover no-repeat;
    backdrop-filter: blur(10px);
    border-radius: 30px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
}

.print-media-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 400;
    color: #ffffff;
    margin: 0 0 20px 0;
    letter-spacing: 1.5px;
    line-height: 1.4;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.print-media-title {
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: 10px;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    text-transform: uppercase;
}

@media (max-width: 980px) {
    .print-media-hero {
        padding: 120px 30px 70px;
        min-height: 55vh;
    }
    
    .print-media-content {
        padding: 50px 30px;
        width: 85%;
    }
    
    .print-media-title {
        letter-spacing: 8px;
    }
}

@media (max-width: 768px) {
    .print-media-hero {
        padding: 110px 20px 60px;
        min-height: 50vh;
    }
    
    .print-media-content {
        padding: 40px 25px;
        width: 90%;
        border-radius: 20px;
    }
    
    .print-media-subtitle {
        margin: 0 0 15px 0;
    }
    
    .print-media-title {
        letter-spacing: 6px;
    }
}

@media (max-width: 480px) {
    .print-media-hero {
        padding: 100px 15px 50px;
        min-height: 45vh;
    }
    
    .print-media-content {
        padding: 30px 20px;
        width: 95%;
        border-radius: 15px;
    }
    
    .print-media-subtitle {
        letter-spacing: 1px;
        font-size: 0.9rem;
    }
    
    .print-media-title {
        letter-spacing: 4px;
    }
}

.news-container {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 40px 80px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    align-items: start;
}

.news-container img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    object-fit: cover;
    display: block;
}

.news-container img:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1200px) {
    .news-container {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 25px;
        padding: 0 30px 60px;
    }
}

@media (max-width: 980px) {
    .news-container {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
        padding: 0 25px 50px;
        margin: 50px auto;
    }
}

@media (max-width: 768px) {
    .news-container {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 18px;
        padding: 0 20px 40px;
        margin: 40px auto;
    }
    
    .news-container img {
        border-radius: 10px;
    }
}

@media (max-width: 640px) {
    .news-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px 40px;
        margin: 30px auto;
    }
    
    .news-container img:hover {
        transform: translateY(-5px) scale(1.01);
    }
}

@media (max-width: 480px) {
    .news-container {
        padding: 0 15px 30px;
        gap: 15px;
    }
    
    .news-container img {
        border-radius: 8px;
    }
}

.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

.lightbox-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

#lightbox-img {
    max-width: 100%;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    color: white;
    text-align: center;
    padding: 15px 20px;
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 15px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.lightbox-counter {
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 0.95rem;
    margin-top: 8px;
    opacity: 0.8;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 45px;
    font-weight: 300;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    backdrop-filter: blur(10px);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg) scale(1.1);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 35px;
    font-weight: bold;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.15);
}

.lightbox-prev:active,
.lightbox-next:active {
    transform: translateY(-50%) scale(1.05);
}

@media (max-width: 768px) {
    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 45px;
        height: 45px;
        font-size: 35px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 45px;
        height: 45px;
        font-size: 28px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-caption {
        font-size: 0.95rem;
        padding: 12px 15px;
    }
    
    .lightbox-counter {
        font-size: 0.85rem;
    }
    
    #lightbox-img {
        max-height: 80vh;
    }
}

@media (max-width: 480px) {
    .lightbox-close {
        width: 40px;
        height: 40px;
        font-size: 30px;
        top: 8px;
        right: 8px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
    
    .lightbox-prev {
        left: 5px;
    }
    
    .lightbox-next {
        right: 5px;
    }
    
    .lightbox-caption {
        font-size: 0.85rem;
        padding: 10px 12px;
        margin-top: 10px;
    }
    
    .lightbox-content {
        max-width: 95%;
    }
    
    #lightbox-img {
        max-height: 75vh;
    }
}

.video-gallery-container {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 40px 80px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.video-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; 
    background: linear-gradient(135deg, #1e3a5f 0%, #2d4a6b 100%);
    overflow: hidden;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease;
}

.video-card:hover .video-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.play-button svg {
    margin-left: 5px;
}

.video-card:hover .play-button {
    transform: translate(-50%, -50%) scale(1.15);
    background: rgba(212, 175, 55, 0.95);
}

.video-card:hover .play-button svg {
    fill: white;
}

.video-info {
    padding: 20px 25px;
    background: white;
}

.video-info h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
}

.video-lightbox-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

.video-lightbox-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-lightbox-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: zoomIn 0.3s ease;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-lightbox-title {
    color: white;
    text-align: center;
    padding: 15px 20px;
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 15px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.video-lightbox-counter {
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 0.95rem;
    margin-top: 8px;
    opacity: 0.8;
}

.video-lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 45px;
    font-weight: 300;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    backdrop-filter: blur(10px);
}

.video-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg) scale(1.1);
}

.video-lightbox-prev,
.video-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 35px;
    font-weight: bold;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.video-lightbox-prev {
    left: 30px;
}

.video-lightbox-next {
    right: 30px;
}

.video-lightbox-prev:hover,
.video-lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.15);
}

.video-lightbox-prev:active,
.video-lightbox-next:active {
    transform: translateY(-50%) scale(1.05);
}

@media (max-width: 1200px) {
    .video-gallery-container {
        padding: 0 30px 60px;
        gap: 25px;
    }
}

@media (max-width: 980px) {
    .video-gallery-container {
        padding: 0 25px 50px;
        gap: 20px;
        margin: 50px auto;
    }
    
    .play-button {
        width: 70px;
        height: 70px;
    }
    
    .play-button svg {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 768px) {
    .video-gallery-container {
        grid-template-columns: 1fr;
        padding: 0 20px 40px;
        gap: 25px;
        margin: 40px auto;
    }
    
    .video-info h3 {
        font-size: 1rem;
    }
    
    .video-lightbox-close {
        top: 10px;
        right: 10px;
        width: 45px;
        height: 45px;
        font-size: 35px;
    }
    
    .video-lightbox-prev,
    .video-lightbox-next {
        width: 45px;
        height: 45px;
        font-size: 28px;
    }
    
    .video-lightbox-prev {
        left: 10px;
    }
    
    .video-lightbox-next {
        right: 10px;
    }
    
    .video-lightbox-title {
        font-size: 1rem;
        padding: 12px 15px;
    }
    
    .video-lightbox-content {
        width: 95%;
    }
}

@media (max-width: 640px) {
    .video-gallery-container {
        padding: 0 15px 30px;
        gap: 20px;
        margin: 30px auto;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .play-button svg {
        width: 40px;
        height: 40px;
    }
    
    .video-info {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .video-gallery-container {
        padding: 0 15px 30px;
        gap: 18px;
    }
    
    .video-lightbox-close {
        width: 40px;
        height: 40px;
        font-size: 30px;
        top: 8px;
        right: 8px;
    }
    
    .video-lightbox-prev,
    .video-lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
    
    .video-lightbox-prev {
        left: 5px;
    }
    
    .video-lightbox-next {
        right: 5px;
    }
    
    .video-lightbox-title {
        font-size: 0.9rem;
        padding: 10px 12px;
    }
    
    .video-info h3 {
        font-size: 0.95rem;
    }
}

.digital-media-hero {
    position: relative;
    width: 100%;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 40px 80px;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d4a6b 100%);
    overflow: hidden;
}

.digital-media-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../imgs/newspapers-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 1;
}

.digital-media-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.8) 0%, rgba(26, 31, 46, 0.8) 100%);
    z-index: 2;
}

.digital-media-content {
    position: relative;
    z-index: 3;
    text-align: center;
    width: 80%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 40px;
    background: url("https://edenprojectscyprus.com/wp-content/uploads/2025/01/digital-media.webp") center center / cover no-repeat;
    backdrop-filter: blur(10px);
    border-radius: 30px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
}

.digital-media-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 400;
    color: #ffffff;
    margin: 0 0 20px 0;
    letter-spacing: 1.5px;
    line-height: 1.4;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.digital-media-title {
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: 10px;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    text-transform: uppercase;
}

@media (max-width: 980px) {
    .digital-media-hero {
        padding: 120px 30px 70px;
        min-height: 55vh;
    }
    
    .digital-media-content {
        padding: 50px 30px;
        width: 85%;
    }
    
    .digital-media-title {
        letter-spacing: 8px;
    }
}

@media (max-width: 768px) {
    .digital-media-hero {
        padding: 110px 20px 60px;
        min-height: 50vh;
    }
    
    .digital-media-content {
        padding: 40px 25px;
        width: 90%;
        border-radius: 20px;
    }
    
    .digital-media-subtitle {
        margin: 0 0 15px 0;
    }
    
    .digital-media-title {
        letter-spacing: 6px;
    }
}

@media (max-width: 480px) {
    .digital-media-hero {
        padding: 100px 15px 50px;
        min-height: 45vh;
    }
    
    .digital-media-content {
        padding: 30px 20px;
        width: 95%;
        border-radius: 15px;
    }
    
    .digital-media-subtitle {
        letter-spacing: 1px;
        font-size: 0.9rem;
    }
    
    .digital-media-title {
        letter-spacing: 4px;
    }
}

.digital-news-container {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 40px 80px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.news-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.news-image {
    position: relative;
    width: 100%;
    padding-bottom: 60%;
    overflow: hidden;
    background: #f5f5f5;
}

.news-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-content h3 {
    margin: 0 0 15px 0;
    font-size: 1.15rem;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-content p {
    margin: 0 0 20px 0;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.news-read-more {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #1a1f2e;
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    align-self: flex-start;
}

.news-read-more:hover {
    background: linear-gradient(135deg, #f4d03f 0%, #d4af37 100%);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

@media (max-width: 1200px) {
    .digital-news-container {
        padding: 0 30px 60px;
        gap: 30px;
    }
}

@media (max-width: 980px) {
    .digital-news-container {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 25px 50px;
        gap: 25px;
        margin: 50px auto;
    }
    
    .news-content h3 {
        font-size: 1.05rem;
    }
    
    .news-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .digital-news-container {
        grid-template-columns: 1fr;
        padding: 0 20px 40px;
        gap: 25px;
        margin: 40px auto;
    }
    
    .news-content {
        padding: 20px;
    }
    
    .news-content h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
}

@media (max-width: 640px) {
    .digital-news-container {
        padding: 0 15px 30px;
        gap: 20px;
        margin: 30px auto;
    }
    
    .news-image {
        padding-bottom: 56.25%; 
    }
    
    .news-content {
        padding: 18px;
    }
}

@media (max-width: 480px) {
    .digital-news-container {
        padding: 0 15px 30px;
        gap: 18px;
    }
    
    .news-content h3 {
        font-size: 1rem;
    }
    
    .news-content p {
        font-size: 0.88rem;
        -webkit-line-clamp: 2;
    }
    
    .news-read-more {
        padding: 10px 24px;
        font-size: 0.85rem;
    }
}

.contact-hero {
    position: relative;
    width: 100%;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 40px 80px;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d4a6b 100%);
    overflow: hidden;
}


.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("https://edenprojectscyprus.com/wp-content/uploads/2024/12/contact.webp") center center / cover no-repeat;
    opacity: 0.3;
    z-index: 1;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.7) 0%, rgba(26, 31, 46, 0.7) 100%);
    z-index: 2;
}

.contact-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    width: 80%;
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 400;
    color: #ffffff;
    margin: 0 0 15px 0;
    letter-spacing: 1px;
    line-height: 1.4;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.contact-hero-title {
    font-size: clamp(3.5rem, 4vw, 6rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: 8px;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.contact-hero-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #d4af37 0%, #f4d03f 100%);
    border-radius: 2px;
}

.office-locations {
    padding: 80px 40px;
    background: #2c3e50;
}

.locations-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.location-card {
    background: #34495e;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.location-header {
    padding: 30px 25px;
    background: linear-gradient(135deg, #1a1f2e 0%, #1e3a5f 100%);
    border-bottom: 3px solid #d4af37;
}

.location-header h2 {
    margin: 0 0 20px 0;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.location-header p {
    margin: 0 0 15px 0;
    font-size: 1rem;
    color: #bdc3c7;
    line-height: 1.8;
}

.location-phone {
    font-size: 1.1rem;
    font-weight: 600;
    color: #d4af37 !important;
    margin-top: 15px !important;
}

.location-map {
    width: 100%;
    height: 300px;
    background: #1a252f;
}

.location-map iframe {
    display: block;
}

.contact-form-section {
    padding: 80px 40px;
    background: #2c3e50;
}

.contact-form-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-title {
    text-align: center;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 60px 0;
    letter-spacing: 4px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    width: 100%;
}

.contact-form-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #d4af37 0%, #f4d03f 100%);
    border-radius: 2px;
}

.contact-page-form {
    width: 100%;
}

.form-row-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.form-row-full {
    margin-bottom: 25px;
}

.form-row-button {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.form-group-full {
    width: 100%;
}

.form-group-full input,
.form-group-full textarea {
    width: 100%;
    padding: 18px 25px;
    font-size: 1rem;
    border: 2px solid #34495e;
    border-radius: 8px;
    background: #34495e;
    color: #ffffff;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-group-full input::placeholder,
.form-group-full textarea::placeholder {
    color: #95a5a6;
}

.form-group-full input:focus,
.form-group-full textarea:focus {
    outline: none;
    border-color: #d4af37;
    background: #2d4a6b;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group-full textarea {
    resize: vertical;
    min-height: 150px;
}

.btn-submit {
    padding: 18px 60px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1f2e;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-submit:hover {
    background: linear-gradient(135deg, #f4d03f 0%, #d4af37 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
}

.btn-submit:active {
    transform: translateY(-1px);
}

@media (max-width: 1200px) {
    .locations-container {
        gap: 30px;
    }
}

@media (max-width: 980px) {
    .contact-hero {
        padding: 120px 30px 60px;
        min-height: 60vh;
    }
    
    .locations-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .office-locations {
        padding: 60px 30px;
    }
    
    .contact-form-section {
        padding: 60px 30px;
    }
    
    .form-row-two {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 110px 20px 50px;
        min-height: 55vh;
    }
    
    .contact-hero-title {
        letter-spacing: 6px;
    }
    
    .location-header {
        padding: 25px 20px;
    }
    
    .location-header h2 {
        font-size: 1.5rem;
    }
    
    .office-locations {
        padding: 50px 20px;
    }
    
    .contact-form-section {
        padding: 50px 20px;
    }
    
    .contact-form-title {
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 100px 15px 40px;
        min-height: 50vh;
    }
    
    .contact-hero-subtitle {
        margin-bottom: 10px;
    }
    
    .contact-hero-title {
        letter-spacing: 4px;
    }
    
    .contact-hero-title::after {
        width: 80px;
        height: 3px;
        bottom: -10px;
    }
    
    .office-locations {
        padding: 40px 15px;
    }
    
    .location-header {
        padding: 20px 15px;
    }
    
    .location-header h2 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .location-map {
        height: 250px;
    }
    
    .contact-form-section {
        padding: 40px 15px;
    }
    
    .contact-form-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .form-group-full input,
    .form-group-full textarea {
        padding: 15px 20px;
        font-size: 0.95rem;
    }
    
    .btn-submit {
        padding: 15px 50px;
        font-size: 1rem;
    }
}