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

.cp-wrapper {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1a2e 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cp-wrapper .cp-body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1a2e 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cp-wrapper .cp-container {
    background: #16213e;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(0, 255, 255, 0.1);
    overflow: hidden;
    max-width: 900px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.cp-wrapper .cp-image-section {
    background: linear-gradient(45deg, #0f3460, #16213e);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.cp-wrapper .cp-geometric-art {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.cp-wrapper .cp-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    animation: cp-float 6s ease-in-out infinite;
}

.cp-wrapper .cp-circle:nth-child(1) {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    box-shadow: 0 0 60px rgba(0, 255, 255, 0.5);
}

.cp-wrapper .cp-circle:nth-child(2) {
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, #ff00ff, #00ffff);
    bottom: 20%;
    right: 15%;
    animation-delay: 2s;
    box-shadow: 0 0 50px rgba(255, 0, 255, 0.5);
}

.cp-wrapper .cp-circle:nth-child(3) {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    top: 50%;
    left: 50%;
    animation-delay: 4s;
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.5);
}

@keyframes cp-float {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-20px) scale(1.1); }
}

.cp-wrapper .cp-main-icon {
    font-size: 120px;
    z-index: 1;
}

.cp-wrapper .cp-contact-section {
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cp-wrapper .cp-title {
    color: #00ffff;
    font-size: 2.5em;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.cp-wrapper .cp-subtitle {
    color: #e94560;
    font-size: 1.1em;
    margin-bottom: 40px;
}

.cp-wrapper .cp-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.cp-wrapper .cp-contact-item:hover {
    transform: translateX(5px);
}

.cp-wrapper .cp-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00ffff, #ff00ff);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
}

.cp-wrapper .cp-contact-details {
    flex: 1;
}

.cp-wrapper .cp-label {
    color: #e94560;
    font-size: 0.9em;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cp-wrapper .cp-value {
    color: #00ffff;
    font-size: 1.2em;
    font-weight: 500;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .cp-wrapper .cp-container {
        grid-template-columns: 1fr;
    }

    .cp-wrapper .cp-image-section {
        min-height: 250px;
    }

    .cp-wrapper .cp-contact-section {
        padding: 40px 30px;
    }

    .cp-wrapper .cp-title {
        font-size: 2em;
    }
}