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

body {
    font-family: Georgia, 'Times New Roman', Times, serif;
    line-height: 1.8;
    color: #333;
    background: #f5f5dc;
    min-height: 100vh;
    overflow-x: hidden;
    font-size: 18px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 10;
}

.hero {
    text-align: center;
    padding: 40px 0;
    background: #fff;
    border: 3px solid #8B4513;
    margin-bottom: 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.hero-content {
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.logo i {
    font-size: 3rem;
    color: #8B4513;
}

.logo h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
}

.status-badge {
    display: inline-block;
    background: #8B0000;
    color: white;
    padding: 12px 30px;
    border: 2px solid #654321;
    font-weight: 600;
    font-size: 1.2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.main-content {
    display: grid;
    gap: 30px;
}

.message-section,
.contact-section,
.newsletter-section {
    background: white;
    border: 2px solid #8B4513;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.message-section:hover,
.contact-section:hover,
.newsletter-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.message-card {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: #8B4513;
    border: 3px solid #654321;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.icon-wrapper i {
    font-size: 2rem;
    color: white;
}

.message-card h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
}

.main-message {
    font-size: 1.4rem;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.9;
    font-weight: 500;
}

.sub-message {
    font-size: 1.3rem;
    color: #666;
    line-height: 1.8;
    font-weight: 500;
}

.contact-card,
.newsletter-card {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.contact-card h3,
.newsletter-card h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-card p,
.newsletter-card p {
    color: #555;
    margin-bottom: 30px;
    font-size: 1.3rem;
    font-weight: 500;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    transition: background 0.3s ease;
    min-height: 60px;
}

.contact-item:hover {
    background: #e9ecef;
}

.contact-item i {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #8B4513;
    color: white;
    border: 2px solid #654321;
    font-size: 1.3rem;
}

.contact-item div {
    text-align: left;
    flex: 1;
}

.contact-item strong {
    display: block;
    color: #333;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-item span {
    color: #666;
    font-size: 0.95rem;
}

.newsletter-form {
    max-width: 400px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.form-group input {
    flex: 1;
    padding: 15px;
    border: 2px solid #ccc;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: Georgia, serif;
}

.form-group input:focus {
    outline: none;
    border-color: #667eea;
}

.form-group button {
    padding: 15px 25px;
    background: #8B4513;
    color: white;
    border: 2px solid #654321;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s ease;
}

.form-group button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.form-message {
    text-align: center;
    padding: 10px;
    border-radius: 8px;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    opacity: 1;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    opacity: 1;
}

.footer {
    margin-top: 60px;
    text-align: center;
    padding: 30px 0;
}

.footer-content {
    background: #fff;
    border: 2px solid #8B4513;
    padding: 30px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.dog-illustration {
    margin-bottom: 15px;
}

.dog-illustration i {
    font-size: 3rem;
    color: #8B4513;
}

.footer p {
    color: #333;
    font-size: 1.1rem;
}

.floating-paws {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-paws i {
    position: absolute;
    color: rgba(139, 69, 19, 0.08);
    font-size: 1.5rem;
    animation: float 8s infinite linear;
}

.paw-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.paw-2 {
    top: 20%;
    right: 10%;
    animation-delay: 1.2s;
}

.paw-3 {
    top: 60%;
    left: 5%;
    animation-delay: 2.4s;
}

.paw-4 {
    top: 70%;
    right: 15%;
    animation-delay: 3.6s;
}

.paw-5 {
    top: 40%;
    left: 50%;
    animation-delay: 4.8s;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes wag {
    0%, 100% {
        transform: rotate(-10deg);
    }
    50% {
        transform: rotate(10deg);
    }
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    15%, 85% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) rotate(180deg);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .hero {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    .logo {
        flex-direction: column;
        gap: 10px;
    }
    
    .logo h1 {
        font-size: 2rem;
    }
    
    .logo i {
        font-size: 2.5rem;
    }
    
    .status-badge {
        font-size: 1rem;
        padding: 8px 20px;
    }
    
    .message-section,
    .contact-section,
    .newsletter-section {
        padding: 30px 20px;
    }
    
    .message-card h2 {
        font-size: 1.8rem;
    }
    
    .main-message {
        font-size: 1.1rem;
    }
    
    .contact-methods {
        gap: 15px;
    }
    
    .contact-item {
        padding: 12px;
    }
    
    .contact-item i {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .form-group {
        flex-direction: column;
        gap: 15px;
    }
    
    .form-group button {
        justify-content: center;
    }
    
    .floating-paws i {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 10px;
    }
    
    .hero {
        padding: 25px 15px;
    }
    
    .logo h1 {
        font-size: 1.8rem;
    }
    
    .message-section,
    .contact-section,
    .newsletter-section {
        padding: 25px 15px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .contact-item div {
        text-align: center;
    }
}
