<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Reset &amp; Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: #333333;
            line-height: 1.5;
            background-color: #ffffff;
        }
        
        /* Layout */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            background: linear-gradient(to right, #1a2030, #1e2a3e);
            padding: 20px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }
        
        .logo {
            display: flex;
            align-items: center;
            color: white;
            font-weight: 600;
            font-size: 18px;
            text-decoration: none;
        }
        
        .logo i {
            margin-right: 8px;
            font-size: 24px;
        }
        
        .language-selector {
            display: flex;
            align-items: center;
            background-color: rgba(0, 0, 0, 0.2);
            border-radius: 6px;
            padding: 5px 12px;
            color: white;
            cursor: pointer;
        }
        
        .language-selector img {
            width: 20px;
            margin-right: 6px;
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(to right, #1a2030, #1e2a3e);
            padding: 60px 0;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
            background-size: 20px 20px;
            z-index: 1;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .domain-name {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 10px;
            letter-spacing: 1px;
        }
        
        .domain-status {
            font-size: 18px;
            opacity: 0.9;
            margin-bottom: 20px;
        }
        
        .seller-info {
            display: flex;
            align-items: center;
            margin-top: 20px;
        }
        
        .seller-avatar {
            width: 40px;
            height: 40px;
            background-color: #5e6a7e;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-weight: 500;
        }
        
        .seller-details {
            text-align: left;
        }
        
        /* Main Content */
        .main-content {
            display: flex;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
            gap: 30px;
        }
        
        .content-left {
            flex: 1;
        }
        
        .content-right {
            width: 320px;
        }
		
		.main-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: #00b874;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 16px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    text-decoration: none;
    margin-bottom: 30px;
    gap: 10px;
}

.main-cta-btn:hover {
    background-color: #009a61;
    transform: translateY(-2px);
}

.main-cta-btn i {
    font-size: 20px;
}
        
        /* Trust Badge */
        .trust-badge {
            background-color: #f5f9fd;
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 30px;
            /* border: 1px solid #e8f0f9; */
        }
        
        .trust-badge-content {
            display: flex;
            align-items: center;
            font-weight: 500;
        }
        
        .trust-badge i {
            margin-right: 15px;
            font-size: 22px;
            color: #0056b3;
        }
        
        /* Domain Status Indicators */
        .domain-indicators {
            display: flex;
            margin-bottom: 30px;
            gap: 20px;
        }
        
        .indicator {
            display: flex;
            align-items: center;
            background-color: #f5f9fd;
            padding: 15px;
            border-radius: 10px;
            font-size: 14px;
        }
        
        .indicator i {
            margin-right: 10px;
            color: #0056b3;
        }
        
        /* Price Options */
        .price-options {
            justify-content: space-between;
        }
        
        .price-box {
            flex: 1;
            padding: 20px;
            text-align: center;
            transition: transform 0.2s, box-shadow 0.2s;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        
        .price-box:hover {
            transform: translateY(-5px);
        }
        
        .price-box i {
            font-size: 24px;
            margin-right: 0;
            margin-bottom: 10px;
            display: block;
            color: #333;
        }
        
        .price-box:nth-child(1) i {
            color: #00b874;
        }
        
        .price-box:nth-child(2) i {
            color: #627eea;
        }
        
        .price-box:nth-child(3) i {
            color: #f7931a;
        }
        
        .price-box div {
            text-align: center;
            width: 100%;
        }
        
        .price-amount {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 5px;
            text-align: center;
        }
        
        .price-description {
            font-size: 12px;
            color: #666;
            line-height: 1.3;
            text-align: center;
        }
        
        /* Additional Content Section */
        .additional-content {
            margin-bottom: 40px;
        }
        
        /* Blockquote */
        .content-blockquote {
            padding: 25px;
            margin: 20px 0;
            background-color: #f9f9f9;
            border-left: 5px solid #0056b3;
            font-style: italic;
            color: #444;
            border-radius: 0 10px 10px 0;
        }
        
        .content-blockquote p {
            margin-bottom: 10px;
            font-size: 17px;
            line-height: 1.6;
        }
        
        .content-blockquote cite {
            display: block;
            font-size: 15px;
            color: #666;
            text-align: right;
        }
        
        /* List Section */
        .content-list-section {
            margin: 30px 0;
        }
        
        .content-list-section h3 {
            margin-bottom: 15px;
            font-size: 18px;
            color: #333;
        }
        
        .content-list {
            list-style-type: none;
            padding-left: 5px;
        }
        
        .content-list li {
            padding: 8px 0;
            margin-bottom: 5px;
            position: relative;
            padding-left: 25px;
        }
        
        .content-list li:before {
            content: '\f00c';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: #00b874;
        }
        
        /* Table Section */
        .content-table-section {
            margin: 30px 0;
        }
        
        .content-table-section h3 {
            margin-bottom: 15px;
            font-size: 18px;
            color: #333;
        }
        
        .content-table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 20px;
            border-radius: 8px;
            overflow: hidden;
        }
        
        .content-table th, 
        .content-table td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid #e9ecef;
        }
        
        .content-table th {
            background-color: #f8f9fa;
            font-weight: 600;
        }
        
        .content-table tr:last-child td {
            border-bottom: none;
        }
        
        .content-table tbody tr:hover {
            background-color: #f5f9fd;
        }
        
        /* Content Boxes */
        .content-box {
            padding: 20px;
            background-color: #f5f9fd;
            border-radius: 10px;
            margin-bottom: 20px;
        }
        
        .content-box h3 {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
            color: #0056b3;
            font-size: 18px;
        }
        
        .content-box h3 i {
            margin-right: 10px;
        }
        
        .content-box p {
            line-height: 1.6;
            color: #555;
        }
        
        .content-box.full-width {
            width: 100%;
        }
        
        .half-width-boxes {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
        }
        
        .content-box.half-width {
            flex: 1;
        }
        
        @media (max-width: 768px) {
            .half-width-boxes {
                flex-direction: column;
                gap: 20px;
            }
            
            .content-table {
                display: block;
                overflow-x: auto;
            }
        }
        
        /* Domain Sales Info */
        .domain-sales-info {
            margin-bottom: 40px;
        }
        
        .domain-sales-info h2 {
            font-size: 22px;
            margin-bottom: 20px;
        }
        
        .benefits {
            margin-top: 30px;
        }
        
        .benefit {
            background-color: #f5f9fd;
            padding: 25px;
            margin-bottom: 20px;
            border-radius: 12px;
            display: flex;
        }
        
        .benefit-icon {
            min-width: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
        }
        
        .sicher .benefit-icon {
            color: #00b874;
        }
        
        .schnell .benefit-icon {
            color: #0056b3;
        }
        
        .keine-gebuhr .benefit-icon {
            color: #dc3545;
        }
        
        .benefit-content {
            flex: 1;
        }
        
        .benefit-title {
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        /* FAQ Section */
        .faq-section {
            margin-bottom: 40px;
        }
        
        .faq-section h2 {
            font-size: 22px;
            margin-bottom: 20px;
        }
        
        .faq-item {
            border-bottom: 1px solid #e9ecef;
            padding: 20px 0;
        }
        
        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 500;
        }
        
        .faq-question i {
            color: #0056b3;
            transition: transform 0.3s;
        }
        
        .faq-answer {
            margin-top: 15px;
            display: none;
            color: #666666;
        }
        
        .faq-item.active .faq-question i {
            transform: rotate(45deg);
        }
        
        .faq-item.active .faq-answer {
            display: block;
        }
        
        /* Offer Box */
        .offer-box {
            background-color: #f6f6f6;
            border-radius: 12px;
            padding: 25px;
            position: sticky;
            top: 20px;
        }
		
		/* Offer Box Divider */
		.offer-box hr {
    		border: 0;
    		height: 1px;
    		background-image: linear-gradient(to right, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.05));
        	margin: 20px 0;
		}
		
		.submit-btn {
    width: 100%;
    background-color: #00b874;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none; /* Add this to remove the underline from links */
}

.submit-btn:hover {
    background-color: #009a61;
}
        
        .offer-box h2 {
            font-size: 22px;
            margin-bottom: 20px;
        }
        
        .offer-text {
            font-size: 15px;
            margin-bottom: 25px;
            color: #555;
        }
        
        .offer-form label {
            display: block;
            font-weight: 500;
            margin-bottom: 10px;
            font-size: 16px;
        }
        
        .price-input {
            display: flex;
            margin-bottom: 20px;
            position: relative;
        }
        
        .price-input input {
            flex: 1;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 6px 0 0 6px;
            font-size: 16px;
            font-family: 'Poppins', sans-serif;
        }
        
        .price-input .currency {
            background-color: #e9ecef;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-left: none;
            border-radius: 0 6px 6px 0;
            color: #666;
        }
        
        .no-fees {
            text-align: right;
            font-size: 12px;
            color: #777;
            margin-bottom: 20px;
        }
        
        .submit-btn {
            width: 100%;
            background-color: #00b874;
            color: white;
            border: none;
            border-radius: 8px;
            padding: 12px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        
        .submit-btn:hover {
            background-color: #009a61;
        }
        
        .benefits-points {
            margin-top: 25px;
        }
        
        .benefit-point {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
            font-size: 14px;
        }
        
        .benefit-point i {
            color: #00b874;
            margin-right: 8px;
        }
        
        .payment-methods {
            margin-top: 25px;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        
        .payment-method {
            background-color: #e9ecef;
            border-radius: 6px;
            padding: 6px 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .payment-method.more {
            background-color: transparent;
            color: #666;
            font-size: 14px;
        }
        
        /* Footer */
        footer {
            background-color: #1a2030;
            color: #ffffff;
            padding: 20px 0;
            font-size: 14px;
        }
        
        .footer-content {
            text-align: center;
            opacity: 0.8;
        }
		
		footer a {
    color: #00b874;
    text-decoration: underline;
}

footer a:hover {
    color: #009a61;
    text-decoration: none;
}
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .main-content {
                flex-direction: column;
            }
            
            .content-right {
                width: 100%;
            }
            
            .domain-name {
                font-size: 36px;
            }
            
            .offer-box {
                position: static;
                margin-bottom: 30px;
            }
            
            .domain-indicators {
                flex-direction: column;
                gap: 10px;
            }
        }</pre></body></html>