* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.nanayasurabhi-privacy-notice {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #1e293b;
    color: white;
    z-index: 1001;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.nanayasurabhi-privacy-notice.show {
    transform: translateY(0);
}

.nanayasurabhi-privacy-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.nanayasurabhi-privacy-text {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

.nanayasurabhi-privacy-text i {
    color: #10b981;
    font-size: 1.25rem;
}

.nanayasurabhi-privacy-text a {
    color: #60a5fa;
    text-decoration: none;
    font-weight: 600;
}

.nanayasurabhi-privacy-text a:hover {
    color: #93c5fd;
    text-decoration: underline;
}

.nanayasurabhi-privacy-actions {
    display: flex;
    gap: 1rem;
}

.nanayasurabhi-privacy-accept,
.nanayasurabhi-privacy-decline {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.nanayasurabhi-privacy-accept {
    background: #10b981;
    color: white;
}

.nanayasurabhi-privacy-accept:hover {
    background: #059669;
    transform: translateY(-1px);
}

.nanayasurabhi-privacy-decline {
    background: transparent;
    color: #94a3b8;
    border: 1px solid #64748b;
}

.nanayasurabhi-privacy-decline:hover {
    background: #64748b;
    color: white;
}

.nanayasurabhi-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nanayasurabhi-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nanayasurabhi-nav {
    padding: 1rem 0;
}

.nanayasurabhi-nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nanayasurabhi-company-name {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.1;
    letter-spacing: -0.5px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.nanayasurabhi-company-name:hover {
    color: #2563eb;
    transform: scale(1.02);
}

.nanayasurabhi-nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nanayasurabhi-nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nanayasurabhi-nav-link:hover {
    color: #2563eb;
}

.nanayasurabhi-nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #2563eb, #7c3aed);
    transition: width 0.3s ease;
}

.nanayasurabhi-nav-link:hover::after {
    width: 100%;
}

.nanayasurabhi-nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nanayasurabhi-nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

.nanayasurabhi-privacy-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.nanayasurabhi-privacy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.nanayasurabhi-privacy-hero-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
}

.nanayasurabhi-privacy-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(45deg, #ffffff, #f0f9ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nanayasurabhi-privacy-hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.nanayasurabhi-privacy-content {
    padding: 6rem 0;
    background: white;
}

.nanayasurabhi-privacy-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
}

.nanayasurabhi-privacy-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.nanayasurabhi-privacy-section p {
    color: #64748b;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.nanayasurabhi-privacy-section ul {
    list-style: none;
    padding-left: 0;
}

.nanayasurabhi-privacy-section li {
    color: #64748b;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.nanayasurabhi-privacy-section li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 600;
    font-size: 1.25rem;
}

.nanayasurabhi-footer {
    background: #1e293b;
    color: white;
    padding: 4rem 0 2rem;
}

.nanayasurabhi-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.nanayasurabhi-footer-description {
    color: #94a3b8;
    margin-top: 1rem;
    line-height: 1.6;
}

.nanayasurabhi-footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.nanayasurabhi-footer-links {
    list-style: none;
}

.nanayasurabhi-footer-links li {
    margin-bottom: 0.5rem;
}

.nanayasurabhi-footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nanayasurabhi-footer-links a:hover {
    color: white;
}

.nanayasurabhi-footer-contact p {
    color: #94a3b8;
    margin-bottom: 0.5rem;
}

.nanayasurabhi-footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 2rem;
    text-align: center;
    color: #94a3b8;
}

.nanayasurabhi-footer .nanayasurabhi-company-name {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 1rem;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    white-space: normal;
    transition: all 0.3s ease;
}

.nanayasurabhi-footer .nanayasurabhi-company-name:hover {
    color: #f0f9ff;
}

@media (max-width: 768px) {
    .nanayasurabhi-nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }

    .nanayasurabhi-nav-menu.nanayasurabhi-nav-menu-active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nanayasurabhi-nav-toggle {
        display: flex;
    }

    .nanayasurabhi-nav-toggle-active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nanayasurabhi-nav-toggle-active span:nth-child(2) {
        opacity: 0;
    }

    .nanayasurabhi-nav-toggle-active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .nanayasurabhi-nav-menu li {
        margin: 0.5rem 0;
    }

    .nanayasurabhi-nav-menu .nanayasurabhi-nav-link {
        display: block;
        padding: 1rem 2rem;
        font-size: 1.125rem;
        color: #1e293b;
        text-align: center;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .nanayasurabhi-nav-menu .nanayasurabhi-nav-link:hover {
        background: rgba(37, 99, 235, 0.1);
        color: #2563eb;
    }

    .nanayasurabhi-privacy-hero-title {
        font-size: 2.5rem;
    }

    .nanayasurabhi-company-name {
        font-size: 1.5rem;
    }

    .nanayasurabhi-footer .nanayasurabhi-company-name {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .nanayasurabhi-privacy-hero-title {
        font-size: 2rem;
    }

    .nanayasurabhi-company-name {
        font-size: 1.25rem;
    }

    .nanayasurabhi-footer .nanayasurabhi-company-name {
        font-size: 1rem;
    }

    .nanayasurabhi-privacy-section {
        padding: 1.5rem;
    }
}
