body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #111;
    font-family: 'Poppins', sans-serif;
    color: #fff;
}

.blob-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
}

.blob:nth-child(1) {
    width: 250px;
    height: 250px;
    background: #e95a00;
    top: 10%;
    left: 10%;
    animation: float 10s infinite alternate;
}

.blob:nth-child(2) {
    width: 300px;
    height: 300px;
    background: #ff7b00;
    bottom: 10%;
    right: 10%;
    animation: float 12s infinite alternate;
}

.blob:nth-child(3) {
    width: 200px;
    height: 200px;
    background: #ffc800;
    top: 50%;
    left: 50%;
    animation: float 14s infinite alternate;
}

@keyframes float {
    from {
        transform: translate(0, 0) rotate(0deg);
    }
    to {
        transform: translate(40px, 50px) rotate(360deg);
    }
}

.glass-card {
  width: 350px;
  min-height: 520px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  transition: transform 0.1s ease-out;
}

.glass-card:hover::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    animation: shimmer 5s infinite linear;
}

@keyframes shimmer {
    from {
        transform: skewX(-30deg) translateX(0);
    }
    to {
        transform: skewX(-30deg) translateX(250%);
    }
}

.card-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
}

.logo {
    width: 60%;
    height: auto;
    margin-bottom: 20px;
}

h2 {
    font-weight: 600;
    font-size: 1.4rem;
    margin: -10px 0 15px 0;
    letter-spacing: 1px;
    text-align: center;
}

.accordion {
    width: 100%;
    margin: 20px 0;
}

.accordion-item {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
    border: 1px solid transparent;
    transition: border-color 0.4s ease;
}

.accordion-item.active {
    border-color: rgba(233, 90, 0, 0.5);
}

.accordion-header {
    display: flex;
    align-items: center;
    padding: 15px;
    cursor: pointer;
}

.accordion-icon, .copy-icon-svg {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    opacity: 0.7;
    transition: opacity 0.4s ease;
}

.accordion-icon path, .copy-icon-svg path {
    stroke: white;
    fill: none;
    transition: all 0.4s ease;
}

/* Specific fills for complex icons */
.accordion-icon path[fill-rule="evenodd"],
.accordion-icon path[d*="M11.6914 11.8285"] {
    fill: white;
}


.accordion-item.active .accordion-icon {
    opacity: 1;
}

.accordion-item.active .accordion-icon path {
    stroke: #e95a00;
}

.accordion-item.active .accordion-icon path[fill-rule="evenodd"],
.accordion-item.active .accordion-icon path[d*="M11.6914 11.8285"] {
    fill: #e95a00;
}

.copy-icon-svg {
    width: 16px;
    height: 16px;
    margin-right: 0;
    margin-left: 5px;
    cursor: pointer;
}

.copy-icon-svg:hover {
    opacity: 1;
    transform: scale(1.1);
}

.accordion-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    margin-left: 15px;
    position: relative;
}

.accordion-indicator svg {
    position: absolute;
    width: 24px;
    height: 24px;
}

.accordion-indicator .minus-icon {
    display: none; /* Hidden by default */
}

.accordion-item.active .accordion-indicator .plus-icon {
    display: none;
}

.accordion-item.active .accordion-indicator .minus-icon {
    display: block;
}

.accordion-indicator path {
    stroke: white; /* White by default */
    transition: stroke 0.4s ease;
}

.accordion-item.active .accordion-indicator path {
    stroke: #e95a00; /* Orange when active */
}

.accordion-header h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    flex-grow: 1;
    text-align: left;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    font-size: 0.92rem;
    font-weight: 400;
    padding: 0 15px;
}

.accordion-content p {
    margin: 0 0 15px 0;
    padding-left: 39px; /* Align with text in header */
}

.accordion-content strong {
    font-weight: 600;
    color: #FF4E00;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.accordion-content em {
    font-weight: 600;
    color: #FF4E00;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7); /* Add text-shadow */
}


.card-footer {
    display: flex;
    flex-direction: row; /* Align items horizontally */
    align-items: center; /* Center items vertically */
    justify-content: space-between; /* Space items out */
    width: 100%;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-language-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-grow: 1;
    margin-right: 10px;
}

.contact-info {
    position: relative; /* For absolute positioning of the icon */
    display: flex;
    align-items: center;
    justify-content: center; /* Center the email text */
    gap: 10px;
    background: rgba(0,0,0,0.2);
    padding: 8px 12px;
    border-radius: 50px;
    width: 100%; /* Use full width of wrapper */
    box-sizing: border-box;
}

.contact-info .copy-icon-svg {
    position: absolute;
    right: 16px;
}

.language-selector {
    display: flex;
    align-items: center;
    justify-content: center; /* Center content within the button */
    gap: 10px;
    background: rgba(0,0,0,0.2);
    padding: 8px 12px;
    border-radius: 50px;
    width: 100%; /* Use full width of wrapper */
    box-sizing: border-box; /* Ensure padding is included in width */
    cursor: pointer;
    transition: background 0.3s ease;
}

.language-selector:hover {
    background: rgba(0,0,0,0.4);
}

.flag-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    transform: rotate(90deg); /* Rotate clockwise by 90 degrees */
}

#email-text, #language-text {
    font-size: 0.9rem;
}


.qr-code {
    border-radius: 8px;
    background: rgba(255,255,255,0.8);
    padding: 5px;
}
