* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Georgia, 'Times New Roman', serif;
    background: #f5f5f5;
    color: #222;
    line-height: 1.6;
}

.page {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    min-height: 100vh;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

header {
    background: #1a1a1a;
    color: white;
    padding: 60px 40px;
    text-align: center;
    border-bottom: 4px solid #333;
}

.header-content h1 {
    font-size: 4rem;
    font-weight: normal;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
}

.status {
    display: inline-block;
    background: #d4af37;
    color: #1a1a1a;
    padding: 8px 24px;
    font-size: 0.9rem;
    font-family: Arial, sans-serif;
    font-weight: bold;
    letter-spacing: 0.15em;
}

main {
    padding: 60px 40px;
}

section {
    margin-bottom: 60px;
}

.intro {
    text-align: center;
    border-bottom: 1px solid #ddd;
    padding-bottom: 40px;
}

.lead {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.intro p {
    font-size: 1.1rem;
    color: #666;
}

.mobile-break {
    display: none;
}

h2 {
    font-size: 1.8rem;
    font-weight: normal;
    margin-bottom: 25px;
    color: #1a1a1a;
    border-bottom: 2px solid #1a1a1a;
    padding-bottom: 10px;
}

.details table {
    width: 100%;
    border-collapse: collapse;
}

.details td {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    font-size: 1.1rem;
}

.details td:first-child {
    color: #666;
    width: 40%;
}

.details td:last-child {
    font-family: Arial, sans-serif;
}

.benefits ul {
    list-style: none;
}

.benefits li {
    padding: 12px 0;
    padding-left: 25px;
    position: relative;
    font-size: 1.1rem;
}

.benefits li:before {
    content: "•";
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    color: #1a1a1a;
}

.contact {
    text-align: center;
    background: #fafafa;
    padding: 50px 40px;
    border: 3px solid #1a1a1a;
}

.domain-highlight {
    font-size: 3.5rem;
    font-weight: bold;
    color: #1a1a1a;
    letter-spacing: 0.05em;
    margin-bottom: 25px;
    font-family: Arial, sans-serif;
    text-transform: uppercase;
}

.contact h2 {
    border: none;
    margin-bottom: 15px;
    font-size: 1.6rem;
}

.contact p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #666;
}

.email-button {
    display: inline-block;
    background: #1a1a1a;
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 1rem;
    border: 2px solid #1a1a1a;
    transition: all 0.3s ease;
}

.email-button:hover {
    background: white;
    color: #1a1a1a;
}

footer {
    background: #1a1a1a;
    color: #999;
    text-align: center;
    padding: 30px;
    font-family: Arial, sans-serif;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    header {
        padding: 40px 25px;
    }
    
    .header-content h1 {
        font-size: 2.5rem;
    }
    
    main {
        padding: 40px 25px;
    }
    
    .details td:first-child {
        width: 35%;
    }
    
    .contact {
        padding: 30px 20px;
    }
    
    .mobile-break {
        display: inline;
    }
}

@media (max-width: 480px) {
    .header-content h1 {
        font-size: 2rem;
        letter-spacing: 0.05em;
    }
    
    .domain-highlight {
        font-size: 2rem;
    }
    
    .lead {
        font-size: 1.2rem;
    }
    
    h2 {
        font-size: 1.4rem;
    }
    
    .details td {
        font-size: 1rem;
    }
    
    .email-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}
